summaryrefslogtreecommitdiff
path: root/security/p5-PGP-Sign
diff options
context:
space:
mode:
authorJeremy Lea <reg@FreeBSD.org>2000-04-17 00:19:02 +0000
committerJeremy Lea <reg@FreeBSD.org>2000-04-17 00:19:02 +0000
commitb4455771cced2fe9f134e751fe88dbba7226e694 (patch)
tree39733bef5e1d466d30938b5a47f0b46a7b6890b4 /security/p5-PGP-Sign
parentStandardize all user defined options to the booleans WITH_FOO and (diff)
Standardize all user defined options to the booleans WITH_FOO and
WITHOUT_FOO. Begin the process of reserving these prefixes for user defined options. No comment by: ports
Notes
Notes: svn path=/head/; revision=27680
Diffstat (limited to 'security/p5-PGP-Sign')
-rw-r--r--security/p5-PGP-Sign/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/security/p5-PGP-Sign/Makefile b/security/p5-PGP-Sign/Makefile
index a633181f45f0..3c2c1e5ab61d 100644
--- a/security/p5-PGP-Sign/Makefile
+++ b/security/p5-PGP-Sign/Makefile
@@ -20,22 +20,22 @@ MAN3= PGP::Sign.3
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
# You can either define one of these on the command line or accept the
-# default (USE_PGP2). You can also predefine the values for PGP (or
+# default (WITH_PGP2). You can also predefine the values for PGP (or
# PGPS and PGPV) and PGPSTYLE if you don't like what this makefile
# would assign.
-# USE_PGP2 - use PGP 2.6.* or a reasonable facsimile thereof
-# USE_PGP5 - use PGP 5 or a work-alike
-# USE_GPG - use Gnu Privacy Guard
+# WITH_PGP2 - use PGP 2.6.* or a reasonable facsimile thereof
+# WITH_PGP5 - use PGP 5 or a work-alike
+# WITH_GPG - use Gnu Privacy Guard
-.if !defined(USE_PGP5) && !defined(USE_GPG)
-USE_PGP2?= yes
+.if !defined(WITH_PGP5) && !defined(WITH_GPG)
+WITH_PGP2?= yes
RUN_DEPENDS= pgp:${PORTSDIR}/security/pgp
.ifndef PGP
PGP!= which pgp || ${ECHO} ${PREFIX}/bin/pgp
.endif
PGPSTYLE?= PGP2
.else
-.ifdef USE_PGP5
+.ifdef WITH_PGP5
RUN_DEPENDS= pgps:${PORTSDIR}/security/pgp5
.ifndef PGPS
PGPS!= which pgps || ${ECHO} ${PREFIX}/bin/pgps
@@ -45,7 +45,7 @@ PGPV!= which pgpv || ${ECHO} ${PREFIX}/bin/pgpv
.endif
PGPSTYLE?= PGP5
.endif
-.ifdef USE_GPG
+.ifdef WITH_GPG
RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg
.ifndef PGP
PGP!= which gpg || ${ECHO} ${PREFIX}/bin/gpg