diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1999-02-03 11:12:01 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1999-02-03 11:12:01 +0000 |
commit | 5114e2637e2224ea9b0e0ea4b315bc38370ccf04 (patch) | |
tree | 414dd9b31f0192eb7d0054b2463c2eed8afd25b4 /security/pgp | |
parent | fd5131ad95770d2ae6bee7059204950dfa6402d1 (diff) | |
download | ports-5114e2637e2224ea9b0e0ea4b315bc38370ccf04.tar.gz ports-5114e2637e2224ea9b0e0ea4b315bc38370ccf04.zip |
Adjust port Makefiles to new EXTRACT_* variable defaults. See log of
bsd.port.mk rev. 1.304 for details on the change.
The fix here is one of the following.
(1) Define USE_BZIP2 instead of BUILD_DEPENDS on bzip2 and redefining
EXTRACT_* commands.
(2) Change ${EXTRACT_CMD} to ${TAR} when the command is obviously
calling the "tar" command (i.e., arguments like "-xzf" are spelled
out).
(3) If ${EXTRACT_CMD} is called directly with ${EXTRACT_BEFORE_ARGS},
add ${EXTRACT_AFTER_ARGS} to the command line as well.
(4) If any of EXTRACT_CMD, EXTRACT_BEFORE_ARGS or EXTRACT_AFTER_ARGS
is set, define the other two too.
Notes
Notes:
svn path=/head/; revision=16518
Diffstat (limited to 'security/pgp')
-rw-r--r-- | security/pgp/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/security/pgp/Makefile b/security/pgp/Makefile index 3390e2c9c289..70a49a884442 100644 --- a/security/pgp/Makefile +++ b/security/pgp/Makefile @@ -5,7 +5,7 @@ # Date created: 8 Jul 1995 # Whom: ache # -# $Id: Makefile,v 1.20 1997/08/27 13:06:01 ache Exp $ +# $Id: Makefile,v 1.21 1998/09/25 10:20:21 asami Exp $ # # Pick an initial default, else it doesn't get set in the INDEX. @@ -56,12 +56,14 @@ BUILD_DEPENDS+= gmake:${PORTSDIR}/devel/gmake BUILD_DEPENDS+= unzip:${PORTSDIR}/archivers/unzip LIB_DEPENDS+= rsaref.2:${PORTSDIR}/security/rsaref EXTRACT_CMD= unzip -EXTRACT_ARGS= -q +EXTRACT_BEFORE_ARGS= -q +EXTRACT_AFTER_ARGS= # empty FILESDIR= ${.CURDIR}/files.usa PATCHDIR= ${.CURDIR}/patches.usa post-extract: - cd ${WRKDIR}; $(EXTRACT_CMD) $(EXTRACT_ARGS) -aa $(DISTNAME)i + cd ${WRKDIR}; $(EXTRACT_CMD) $(EXTRACT_BEFORE_ARGS) -aa $(DISTNAME)i \ + $(EXTRACT_AFTER_ARGS) cd ${WRKDIR}; rm -f *.zip .else |