diff options
author | joerg <joerg@pkgsrc.org> | 2006-02-11 14:11:07 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-02-11 14:11:07 +0000 |
commit | 3d8b53f8564b492439658808f39a38dae6ad5c24 (patch) | |
tree | c17d5a64a716fbe60d28c7c66e2aefc01edaaa6b /security/gpgme | |
parent | 7face5cc6642128f0d5bbf6b482b2429b4dea270 (diff) | |
download | pkgsrc-3d8b53f8564b492439658808f39a38dae6ad5c24.tar.gz |
Don't hard-wire -lpthread into gpgme-config, it breaks e.g. mail/balsa2
on DragonFly. Bump revision.
Diffstat (limited to 'security/gpgme')
-rw-r--r-- | security/gpgme/Makefile | 10 | ||||
-rw-r--r-- | security/gpgme/distinfo | 4 | ||||
-rw-r--r-- | security/gpgme/patches/patch-aa | 15 |
3 files changed, 23 insertions, 6 deletions
diff --git a/security/gpgme/Makefile b/security/gpgme/Makefile index 3ad53e8fdbb..f0ee4c4f601 100644 --- a/security/gpgme/Makefile +++ b/security/gpgme/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.38 2006/02/05 23:10:44 joerg Exp $ +# $NetBSD: Makefile,v 1.39 2006/02/11 14:11:07 joerg Exp $ # DISTNAME= gpgme-1.0.3 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= security MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/gpgme/ \ ftp://ftp.gnupg.org/gcrypt/alpha/gpgme/ @@ -17,6 +17,12 @@ USE_LIBTOOL= YES GNU_CONFIGURE= YES PTHREAD_OPTS+= require +SUBST_CLASSES+= pthread +SUBST_FILES.pthread= gpgme/gpgme-config.in +SUBST_SED.pthread+= -e 's,@PTHREAD_LIBS@,${PTHREAD_LDFLAGS} ${PTHREAD_LIBS},g' +SUBST_SED.pthread+= -e 's,@PTHREAD_CFLAGS@,${PTHREAD_CFLAGS},g' +SUBST_STAGE.pthread= post-patch + PKG_OPTIONS_VAR= PKG_OPTIONS.gpgme PKG_SUPPORTED_OPTIONS= gpgsm .include "../../mk/bsd.options.mk" diff --git a/security/gpgme/distinfo b/security/gpgme/distinfo index ed9cd5c0c5f..4d7340f4cd8 100644 --- a/security/gpgme/distinfo +++ b/security/gpgme/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.20 2005/11/04 17:16:34 joerg Exp $ +$NetBSD: distinfo,v 1.21 2006/02/11 14:11:07 joerg Exp $ SHA1 (gpgme-1.0.3.tar.gz) = 632436ff5c66405d9704983411aa031f29006dce RMD160 (gpgme-1.0.3.tar.gz) = cc8dc465c733eea8d7f0297127f9f97dd0876a53 Size (gpgme-1.0.3.tar.gz) = 837866 bytes -SHA1 (patch-aa) = 27f98c23d89a0a030398e1e5cfefff84b23d2658 +SHA1 (patch-aa) = 3a9d2d9de847b2c763ab23d0af32064dee9d20c5 SHA1 (patch-ab) = c47b732622deaa2eb3269d7ae753ab553c4fa54e SHA1 (patch-ac) = 1f27efa0a5c109c7a8b4f4e346487a5d2f8b26f2 SHA1 (patch-ae) = 88d215ad657730349ffa19462799b64238a30426 diff --git a/security/gpgme/patches/patch-aa b/security/gpgme/patches/patch-aa index 5256a30eb58..32e0b976f5e 100644 --- a/security/gpgme/patches/patch-aa +++ b/security/gpgme/patches/patch-aa @@ -1,8 +1,19 @@ -$NetBSD: patch-aa,v 1.5 2004/08/22 17:52:26 recht Exp $ +$NetBSD: patch-aa,v 1.6 2006/02/11 14:11:07 joerg Exp $ --- gpgme/gpgme-config.in.orig 2004-05-21 21:49:29.000000000 +0200 +++ gpgme/gpgme-config.in 2004-08-22 17:25:14.000000000 +0200 -@@ -98,7 +98,7 @@ +@@ -26,8 +26,8 @@ libs_pth="@PTH_LDFLAGS@ @PTH_LIBS@" + cflags_pth="@PTH_CFLAGS@" + + @HAVE_PTHREAD_TRUE@thread_modules="$thread_modules pthread" +-libs_pthread="-lpthread" +-cflags_pthread="" ++libs_pthread="@PTHREAD_LIBS@" ++cflags_pthread="@PTHREAD_CFLAGS@" + + output="" + +@@ -98,7 +98,7 @@ while test $# -gt 0; do ;; --libs) if test "x$libdir" != "x/usr/lib" -a "x$libdir" != "x/lib"; then |