From owner-freebsd-ports Wed Dec 2 15:29:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA19501 for freebsd-ports-outgoing; Wed, 2 Dec 1998 15:29:22 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA19496 for ; Wed, 2 Dec 1998 15:29:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA10427; Wed, 2 Dec 1998 15:30:01 -0800 (PST) Date: Wed, 2 Dec 1998 15:30:01 -0800 (PST) Message-Id: <199812022330.PAA10427@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Don Croyle Subject: Re: ports/8933: Update security/p5-PGP-Sign port to 0.11 Reply-To: Don Croyle Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/8933; it has been noted by GNATS. From: Don Croyle To: freebsd-gnats-submit@freebsd.org, croyle@gelemna.ft-wayne.in.us Cc: Subject: Re: ports/8933: Update security/p5-PGP-Sign port to 0.11 Date: Wed, 02 Dec 1998 18:24:02 -0500 The problem with pointing out bugs is that people fix them. Please use these diffs instead of the ones in the PR. --- p5-PGP-Sign.old/Makefile Tue Sep 15 16:31:53 1998 +++ p5-PGP-Sign/Makefile Wed Dec 2 17:56:24 1998 @@ -1,25 +1,31 @@ # New ports collection makefile for: p5-PGP-Sign -# Version required: 0.09 +# Version required: 0.12 # Date created: January 2, 1998 # Whom: Don Croyle # # $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.12 +PKGNAME= p5-PGP-Sign-0.12 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} + +# Allow PATH_TO_PGP to be set elsewhere. This module only works with +# version 2, so you need to do this if you have version 5 installed as +# pgp. +PATH_TO_PGP?= `which pgp` +MAKE_ENV= PATH_TO_PGP=${PATH_TO_PGP} do-configure: @ cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL diff -ruN p5-PGP-Sign.old/files/md5 p5-PGP-Sign/files/md5 --- p5-PGP-Sign.old/files/md5 Sun Aug 23 19:43:56 1998 +++ p5-PGP-Sign/files/md5 Wed Dec 2 17:56:53 1998 @@ -1 +1 @@ -MD5 (PGP-Sign-0.09.tar.gz) = cde30e2a7092992a252e224394c8ce5e +MD5 (PGP-Sign-0.12.tar.gz) = 006c2d17534b03756131c2dcb96ac292 diff -ruN p5-PGP-Sign.old/files/md5.orig p5-PGP-Sign/files/md5.orig --- p5-PGP-Sign.old/files/md5.orig Wed Dec 31 19:00:00 1969 +++ p5-PGP-Sign/files/md5.orig Sun Aug 23 19:43:56 1998 @@ -0,0 +1 @@ +MD5 (PGP-Sign-0.09.tar.gz) = cde30e2a7092992a252e224394c8ce5e diff -ruN p5-PGP-Sign.old/patches/patch-aa p5-PGP-Sign/patches/patch-aa --- p5-PGP-Sign.old/patches/patch-aa Wed Dec 31 19:00:00 1969 +++ p5-PGP-Sign/patches/patch-aa Wed Dec 2 18:08:15 1998 @@ -0,0 +1,27 @@ +--- makepm.PL.orig Wed Dec 2 17:59:02 1998 ++++ makepm.PL Wed Dec 2 18:05:49 1998 +@@ -41,18 +41,14 @@ + my $pgp = find_pgp; + print unquote (<<"EOM"); + : +-: PGP::Sign needs to know the path to PGP; this path will be encoded +-: in the installed module as the default path to PGP (it can be +-: overridden at runtime). Please enter the full path to the PGP +-: binary (version 2, preferrably 2.6.2 or 2.6.3, not version 5) below +-: or just press Enter if the guess is correct. ++: PGP::Sign needs to know the path to PGP (version 2, preferrably ++: 2.6.2 or 2.6.3, not version 5); this path will be encoded in ++: the installed module as the default path to PGP (it can be ++: overridden at runtime). + : + EOM +-print 'Path to PGP [' . ($pgp || '/usr/local/bin/pgp') . ']: '; +-my $input = ; +-chomp $input; +-$pgp = $input || $pgp || '/usr/local/bin/pgp'; +-print "\n"; ++$pgp = $ENV{PATH_TO_PGP} || $pgp || '/usr/local/bin/pgp'; ++print 'Path to PGP: ' . "$pgp\n\n"; + + # Now, open our input file and create our output file, and then do the + # necessary substitutions. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message