diff options
author | reg <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
commit | d22cbcc0186bfcde72d3058c3d06d1032bb7157e (patch) | |
tree | efb5227e2fc359da16edf2ca8a5ca4744a25bc3e /security/p5-PGP-Sign | |
parent | 8b766534122d71052c9f8e5a0752944edf0450f8 (diff) | |
download | FreeBSD-ports-d22cbcc0186bfcde72d3058c3d06d1032bb7157e.zip FreeBSD-ports-d22cbcc0186bfcde72d3058c3d06d1032bb7157e.tar.gz |
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
Diffstat (limited to 'security/p5-PGP-Sign')
-rw-r--r-- | security/p5-PGP-Sign/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/security/p5-PGP-Sign/Makefile b/security/p5-PGP-Sign/Makefile index a633181..3c2c1e5 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 |