diff options
author | fhajny <fhajny@pkgsrc.org> | 2014-05-07 15:41:08 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2014-05-07 15:41:08 +0000 |
commit | aec89cbe0e66e24899957f5fe48cd326f7d386e9 (patch) | |
tree | 54523b3bca4ed389a360d380c6da54035c1adbcb | |
parent | bd01daff092ba6d4cb2ec4e6083478699dcb9c83 (diff) | |
download | pkgsrc-aec89cbe0e66e24899957f5fe48cd326f7d386e9.tar.gz |
Fix the pkg-config file provided (exec_prefix was undefined).
Bump PKGREVISION.
-rw-r--r-- | security/cyrus-sasl/Makefile | 4 | ||||
-rw-r--r-- | security/cyrus-sasl/distinfo | 3 | ||||
-rw-r--r-- | security/cyrus-sasl/patches/patch-libsasl2.pc.in | 10 |
3 files changed, 14 insertions, 3 deletions
diff --git a/security/cyrus-sasl/Makefile b/security/cyrus-sasl/Makefile index a9195d47b43..9c4e2a07821 100644 --- a/security/cyrus-sasl/Makefile +++ b/security/cyrus-sasl/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.68 2013/07/12 10:45:02 jperkin Exp $ +# $NetBSD: Makefile,v 1.69 2014/05/07 15:41:08 fhajny Exp $ -PKGREVISION= 3 +PKGREVISION= 4 SVR4_PKGNAME= csasl COMMENT= Simple Authentication and Security Layer diff --git a/security/cyrus-sasl/distinfo b/security/cyrus-sasl/distinfo index 94937214339..a968ea142c2 100644 --- a/security/cyrus-sasl/distinfo +++ b/security/cyrus-sasl/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.28 2013/10/20 17:56:02 joerg Exp $ +$NetBSD: distinfo,v 1.29 2014/05/07 15:41:08 fhajny Exp $ SHA1 (cyrus-sasl-2.1.26.tar.gz) = d6669fb91434192529bd13ee95737a8a5040241c RMD160 (cyrus-sasl-2.1.26.tar.gz) = 861a06d663cf3da37a198d0f971d99b249b5f4b8 @@ -9,6 +9,7 @@ Size (cyrus-sasl-dedad73e5e7a75d01a5f3d5a6702ab8ccd2ff40d.patch) = 3836 bytes SHA1 (patch-configure) = 473e4bb41d6e5c6ac136288b673880bd123853cf SHA1 (patch-configure.in) = c1bc731ea44e13943dc3952c46a0e588364c1dc7 SHA1 (patch-include_sasl.h) = 315e9e8236108b49955dbf304a56b17cd028a8d6 +SHA1 (patch-libsasl2.pc.in) = ef5679feef7afb12429071020892d88ecd7c43e6 SHA1 (patch-saslauthd_Makefile.in) = b7962486aef16ec1e5b27a05a3405d79540f8e20 SHA1 (patch-saslauthd_auth__rimap.c) = cc3e04ae0cf049eeb507df3226a2098528afaaab SHA1 (patch-saslauthd_md5global.h) = fc200c6aee12bf58877c7a755c121441ebaa1bde diff --git a/security/cyrus-sasl/patches/patch-libsasl2.pc.in b/security/cyrus-sasl/patches/patch-libsasl2.pc.in new file mode 100644 index 00000000000..f5a95cb3fda --- /dev/null +++ b/security/cyrus-sasl/patches/patch-libsasl2.pc.in @@ -0,0 +1,10 @@ +$NetBSD: patch-libsasl2.pc.in,v 1.1 2014/05/07 15:41:08 fhajny Exp $ + +Make the pkg-config file useful at all. +--- libsasl2.pc.in.orig 2012-10-12 14:05:48.000000000 +0000 ++++ libsasl2.pc.in +@@ -1,3 +1,4 @@ ++exec_prefix = @prefix@ + libdir = @libdir@ + + Name: Cyrus SASL |