diff options
author | shannonjr <shannonjr@pkgsrc.org> | 2005-04-23 12:44:58 +0000 |
---|---|---|
committer | shannonjr <shannonjr@pkgsrc.org> | 2005-04-23 12:44:58 +0000 |
commit | 9ea89880c09f13d810faa8d9294a914c97be2348 (patch) | |
tree | 3c21dac6a0f0a7dbef95f3c1438e6df7df263f20 /security/gpgme | |
parent | ebdfc38fef0629ae70ced7388b7872bd4e7e724a (diff) | |
download | pkgsrc-9ea89880c09f13d810faa8d9294a914c97be2348.tar.gz |
Revised to use gpg instead of gpg2 for OPENPGP when building gpgsm
following GNUPG recomendations: "Note that GnuPG 1.4 and 1.9 are not yet
in sync and thus features and bug fixes done in 1.4 are not available
in 1.9. *Please keep on using 1.4.x for OpenPGP*; 1.9.x and 1.4.x may
be installed simultaneously."
Diffstat (limited to 'security/gpgme')
-rw-r--r-- | security/gpgme/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/security/gpgme/Makefile b/security/gpgme/Makefile index e781bc409a6..fbf44ec7cab 100644 --- a/security/gpgme/Makefile +++ b/security/gpgme/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.32 2005/04/11 21:47:12 tv Exp $ +# $NetBSD: Makefile,v 1.33 2005/04/23 12:44:58 shannonjr Exp $ # DISTNAME= gpgme-1.0.2 +PKGREVISION= 1 CATEGORIES= security MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/gpgme/ \ ftp://ftp.gnupg.org/gcrypt/alpha/gpgme/ @@ -10,6 +11,8 @@ MAINTAINER= oishi@ims.ac.jp HOMEPAGE= http://www.gnupg.org/gpgme.html COMMENT= GnuPG Made Easy +DEPENDS+= gnupg>=1.2.2:../../security/gnupg + USE_LIBTOOL= YES GNU_CONFIGURE= YES PTHREAD_OPTS+= require @@ -46,9 +49,7 @@ INFO_FILES= gpgme.info .if !empty(PKG_OPTIONS:Mgpgsm) . include "../../security/gnupg-devel/buildlink3.mk" CONFIGURE_ARGS+= --with-gpgsm=${BUILDLINK_PREFIX.gnupg-devel}/bin/gpgsm -CONFIGURE_ARGS+= --with-gpg=${BUILDLINK_PREFIX.gnupg-devel}/bin/gpg2 .else -DEPENDS+= gnupg>=1.2.2:../../security/gnupg CONFIGURE_ARGS+= --without-gpgsm .endif |