diff options
author | billf <billf@FreeBSD.org> | 1998-12-07 17:33:33 +0000 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 1998-12-07 17:33:33 +0000 |
commit | aeb93ecc9194d8b20ae7011a18ffa7f848527044 (patch) | |
tree | e9f3ed0fa52462243c5fe9efdda3b57d4c566cc5 /security/p5-PGP-Sign/Makefile | |
parent | 36146b3876e8f44a748c334f901219c9c459b95e (diff) | |
download | FreeBSD-ports-aeb93ecc9194d8b20ae7011a18ffa7f848527044.zip FreeBSD-ports-aeb93ecc9194d8b20ae7011a18ffa7f848527044.tar.gz |
Upgrade to v0.13
PR: ports/8933
Submitted by: Don Croyle <croyle@gelemna.ft-wayne.in.us>
Diffstat (limited to 'security/p5-PGP-Sign/Makefile')
-rw-r--r-- | security/p5-PGP-Sign/Makefile | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/security/p5-PGP-Sign/Makefile b/security/p5-PGP-Sign/Makefile index 78a1f88..4769184 100644 --- a/security/p5-PGP-Sign/Makefile +++ b/security/p5-PGP-Sign/Makefile @@ -1,27 +1,34 @@ # New ports collection makefile for: p5-PGP-Sign -# Version required: 0.09 +# Version required: 0.13 # Date created: January 2, 1998 # Whom: Don Croyle <croyle@gelemna.ft-wayne.in.us> # -# $Id: Makefile,v 1.3 1998/08/24 00:43:52 steve Exp $ +# $Id: Makefile,v 1.4 1998/09/15 21:31:53 asami Exp $ # -DISTNAME= PGP-Sign-0.09 -PKGNAME= p5-PGP-Sign-0.09 +DISTNAME= PGP-Sign-0.13 +PKGNAME= p5-PGP-Sign-0.13 CATEGORIES= security perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= PGP MAINTAINER= croyle@gelemna.ft-wayne.in.us -RUN_DEPENDS= ${PREFIX}/bin/pgp:${PORTSDIR}/security/pgp +RUN_DEPENDS= pgp:${PORTSDIR}/security/pgp USE_PERL5= yes MAN3= PGP::Sign.3 MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} +# This module only works with version 2, so you need to set this +# variable on the command line if you have something else installed as +# pgp. +.ifndef PGP +PGP!= which pgp || echo ${PREFIX}/bin/pgp +.endif + do-configure: - @ cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL + @ cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL PGP=${PGP} .include <bsd.port.mk> |