diff options
author | edwin <edwin@FreeBSD.org> | 2003-04-13 19:10:17 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-04-13 19:10:17 +0800 |
commit | 70dcaa2bf3323fcd2f9d36f1b98bd0b073b65206 (patch) | |
tree | 6a348620e42298b4813675acad307cf3481f6bcb /security | |
parent | 76c0d614e2cc8fa4a0fc7666b812fd504dc8a8a0 (diff) | |
download | freebsd-ports-gnome-70dcaa2bf3323fcd2f9d36f1b98bd0b073b65206.tar.gz freebsd-ports-gnome-70dcaa2bf3323fcd2f9d36f1b98bd0b073b65206.tar.zst freebsd-ports-gnome-70dcaa2bf3323fcd2f9d36f1b98bd0b073b65206.zip |
bento fix security/p5-Crypt-OpenPGP
Totally remove dependency checking for Makefile.PL as we
handle this in our port Makefile. Somehow bento got confused
and get's into a neverending loop. This should fix this
while not affecting normal install.
PR: ports/50711
Submitted by: Erwin Lansing <erwin@lansing.dk>
Diffstat (limited to 'security')
-rw-r--r-- | security/p5-Crypt-OpenPGP/files/patch-makefile | 48 |
1 files changed, 41 insertions, 7 deletions
diff --git a/security/p5-Crypt-OpenPGP/files/patch-makefile b/security/p5-Crypt-OpenPGP/files/patch-makefile index 047d459ac5bc..db58f8ffab8c 100644 --- a/security/p5-Crypt-OpenPGP/files/patch-makefile +++ b/security/p5-Crypt-OpenPGP/files/patch-makefile @@ -1,9 +1,41 @@ ---- Makefile.PL.orig Mon Mar 31 17:57:10 2003 -+++ Makefile.PL Mon Mar 31 17:58:26 2003 -@@ -43,22 +43,6 @@ - 'Crypt::RIPEMD160' => 0, - ], +--- Makefile.PL.orig Tue Dec 10 02:48:09 2002 ++++ Makefile.PL Tue Apr 8 10:33:08 2003 +@@ -11,56 +11,6 @@ + use File::Basename qw/dirname/; + use lib File::Spec->catdir(dirname($0), 'inc'); +-use ExtUtils::AutoInstall ( +- -core => [ +- 'Data::Buffer' => '0.04', +- 'MIME::Base64' => 0, +- 'Math::Pari' => 0, +- 'Compress::Zlib' => 0, +- 'LWP::UserAgent' => 0, +- 'URI::Escape' => 0, +- +- 'Crypt::DSA' => 0, +- 'Crypt::RSA' => 0, +- ], +- +- 'PGP2 Compatibility (Minimum)' => [ +- -default => $is_sdk, +- 'Crypt::IDEA' => 0, +- 'Digest::MD5' => 0, +- ], +- +- 'PGP5 Compatibility (Minimum)' => [ +- -default => $is_sdk, +- 'Crypt::DES_EDE3' => 0, +- 'Digest::SHA1' => 0, +- ], +- +- 'GnuPG Compatibility (Minimum)' => [ +- -default => $is_sdk, +- 'Crypt::Rijndael' => 0, +- 'Crypt::CAST5_PP' => 0, +- 'Crypt::RIPEMD160' => 0, +- ], +- - 'Support for all ciphers' => [ - -default => $is_sdk, - 'Crypt::IDEA' => 0, @@ -20,6 +52,8 @@ - 'Digest::SHA1' => 0, - 'Crypt::RIPEMD160' => 0, - ], - ); - +-); +- WriteMakefile( + AUTHOR => 'Benjamin Trott <cpan@stupidfool.org>', + ABSTRACT => 'Pure-Perl OpenPGP-compatible PGP implementation', |