svn commit: r357537 - in head/security/p5-PGP: . files
Kurt Jaeger
pi at FreeBSD.org
Wed Jun 11 20:58:13 UTC 2014
Author: pi
Date: Wed Jun 11 20:58:12 2014
New Revision: 357537
URL: http://svnweb.freebsd.org/changeset/ports/357537
QAT: https://qat.redports.org/buildarchive/r357537/
Log:
security/p5-PGP: fix run dependency on security/pgpin
- fix path to pgpin binary
PR: ports/190841
Approved by: Muhammad Moinur Rahman <5u623l20 at gmail.com> (maintainer)
Approved by: mentors (implicit)
Added:
head/security/p5-PGP/files/
head/security/p5-PGP/files/patch-Pipe.pm (contents, props changed)
Modified:
head/security/p5-PGP/Makefile
Modified: head/security/p5-PGP/Makefile
==============================================================================
--- head/security/p5-PGP/Makefile Wed Jun 11 20:44:57 2014 (r357536)
+++ head/security/p5-PGP/Makefile Wed Jun 11 20:58:12 2014 (r357537)
@@ -3,6 +3,7 @@
PORTNAME= PGP
PORTVERSION= 0.3a
+PORTREVISION= 1
CATEGORIES= security perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@@ -10,7 +11,7 @@ PKGNAMEPREFIX= p5-
MAINTAINER= 5u623l20 at gmail.com
COMMENT= Perl5 module to work with PGP messages
-BUILD_DEPENDS= pgp:${PORTSDIR}/security/pgpin
+RUN_DEPENDS= pgpin:${PORTSDIR}/security/pgpin
PORTSCOUT= skipv:1.0
Added: head/security/p5-PGP/files/patch-Pipe.pm
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/p5-PGP/files/patch-Pipe.pm Wed Jun 11 20:58:12 2014 (r357537)
@@ -0,0 +1,20 @@
+--- PGP/Pipe.pm.orig 2014-06-10 19:55:03.000000000 +0200
++++ PGP/Pipe.pm 2014-06-10 19:55:17.000000000 +0200
+@@ -55,7 +55,7 @@
+ $pgp = new PGP [$pgppath], [$pgpexec];
+
+ Create the PGP encapsulation object. The standard location for the
+-PGP executable is /usr/local/bin/pgp.
++PGP executable is /usr/local/bin/pgpin.
+
+ =cut
+
+@@ -63,7 +63,7 @@
+ {
+ my $class = shift;
+ my $pgppath = shift || "$ENV{HOME}/.pgp";
+- my $pgpexec = shift || "/usr/local/bin/pgp";
++ my $pgpexec = shift || "/usr/local/bin/pgpin";
+
+ if (! -e "$pgppath/config.txt" &&
+ ! -e "/usr/local/lib/pgp/config.txt" )
More information about the svn-ports-all
mailing list