diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
commit | b4455771cced2fe9f134e751fe88dbba7226e694 (patch) | |
tree | 39733bef5e1d466d30938b5a47f0b46a7b6890b4 /security/p5-PGP-Sign | |
parent | 877b8a533b44bb6324ebbaf65cd80a60d1572003 (diff) | |
download | ports-b4455771cced2fe9f134e751fe88dbba7226e694.tar.gz ports-b4455771cced2fe9f134e751fe88dbba7226e694.zip |
Notes
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 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 |