svn commit: r438854 - head/graphics/proj

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Wed Apr 19 14:39:22 UTC 2017


Author: sunpoet
Date: Wed Apr 19 14:39:21 2017
New Revision: 438854
URL: https://svnweb.freebsd.org/changeset/ports/438854

Log:
  Use tar rather than unzip (extra dependency)
  
  PR:		218369
  Submitted by:	sunpoet (myself)
  Approved by:	maintainer (timeout, 15 days)

Modified:
  head/graphics/proj/Makefile

Modified: head/graphics/proj/Makefile
==============================================================================
--- head/graphics/proj/Makefile	Wed Apr 19 14:39:16 2017	(r438853)
+++ head/graphics/proj/Makefile	Wed Apr 19 14:39:21 2017	(r438854)
@@ -14,8 +14,6 @@ COMMENT=	Cartographic Projections librar
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-EXTRACT_DEPENDS=	${UNZIP_CMD}:archivers/unzip
-
 DATUM_GRID_FILES=	proj-datumgrid-1.6.zip
 
 GNU_CONFIGURE=	yes
@@ -28,7 +26,7 @@ FMAN3=	geodesic.3 pj_init.3
 INSTALL_TARGET=	install-strip
 
 post-extract:
-	@${UNZIP_CMD} -q ${DISTDIR}/${DATUM_GRID_FILES} -d ${WRKSRC}/nad
+	@${TAR} -xf ${DISTDIR}/${DATUM_GRID_FILES} -C ${WRKSRC}/nad
 
 pre-configure:
 	@${REINPLACE_CMD} -e 's|gcc|${COMPILER_TYPE}|' \


More information about the svn-ports-head mailing list