From owner-svn-ports-all@FreeBSD.ORG Wed Jun 11 20:58:13 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A8CE0FA8; Wed, 11 Jun 2014 20:58:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7BFA62537; Wed, 11 Jun 2014 20:58:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5BKwDw0094249; Wed, 11 Jun 2014 20:58:13 GMT (envelope-from pi@svn.freebsd.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5BKwDIS094244; Wed, 11 Jun 2014 20:58:13 GMT (envelope-from pi@svn.freebsd.org) Message-Id: <201406112058.s5BKwDIS094244@svn.freebsd.org> From: Kurt Jaeger Date: Wed, 11 Jun 2014 20:58:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357537 - in head/security/p5-PGP: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2014 20:58:13 -0000 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@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@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" )