diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2017-04-19 22:39:21 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2017-04-19 22:39:21 +0800 |
commit | 97037c8ef409f2409764c9741b8d0e19c29086ee (patch) | |
tree | 57b5e2eb13ba35d2f15ecfdb463373d283790f99 | |
parent | 14dfc873bd8120bde5b8fffb14c39c9de1b21ec4 (diff) | |
download | freebsd-ports-gnome-97037c8ef409f2409764c9741b8d0e19c29086ee.tar.gz freebsd-ports-gnome-97037c8ef409f2409764c9741b8d0e19c29086ee.tar.zst freebsd-ports-gnome-97037c8ef409f2409764c9741b8d0e19c29086ee.zip |
Use tar rather than unzip (extra dependency)
PR: 218369
Submitted by: sunpoet (myself)
Approved by: maintainer (timeout, 15 days)
-rw-r--r-- | graphics/proj/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/graphics/proj/Makefile b/graphics/proj/Makefile index 4528dc683253..49cede5884b4 100644 --- a/graphics/proj/Makefile +++ b/graphics/proj/Makefile @@ -14,8 +14,6 @@ COMMENT= Cartographic Projections library 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}|' \ |