diff options
author | drochner <drochner@pkgsrc.org> | 2014-01-16 13:32:10 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2014-01-16 13:32:10 +0000 |
commit | b2c6702558cd0087d72e71896a4b37436c61fdfe (patch) | |
tree | e1b59f4f720f447dde77241f18ad21473a280a6f | |
parent | e966ecd4fc696dd60f2f7c397d7ef120992949bb (diff) | |
download | pkgsrc-b2c6702558cd0087d72e71896a4b37436c61fdfe.tar.gz |
fix makefile.shared so that CFLAGS from the environment are added
bump PKGREV
-rw-r--r-- | security/libtomcrypt/Makefile | 4 | ||||
-rw-r--r-- | security/libtomcrypt/distinfo | 4 | ||||
-rw-r--r-- | security/libtomcrypt/patches/patch-ab | 11 |
3 files changed, 14 insertions, 5 deletions
diff --git a/security/libtomcrypt/Makefile b/security/libtomcrypt/Makefile index cc91bf5cfda..1afe72e508c 100644 --- a/security/libtomcrypt/Makefile +++ b/security/libtomcrypt/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.3 2012/10/23 18:16:35 asau Exp $ +# $NetBSD: Makefile,v 1.4 2014/01/16 13:32:10 drochner Exp $ DISTNAME= crypt-1.17 PKGNAME= libtom${DISTNAME} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= security MASTER_SITES= http://libtom.org/files/ EXTRACT_SUFX= .tar.bz2 diff --git a/security/libtomcrypt/distinfo b/security/libtomcrypt/distinfo index f54c3caeaf2..c4d21d08a92 100644 --- a/security/libtomcrypt/distinfo +++ b/security/libtomcrypt/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.2 2011/03/10 10:02:34 drochner Exp $ +$NetBSD: distinfo,v 1.3 2014/01/16 13:32:10 drochner Exp $ SHA1 (crypt-1.17.tar.bz2) = 9c746822c84e4276e432b64964f94d1d5ddd13ad RMD160 (crypt-1.17.tar.bz2) = 742d72d82fea2e6a9865d8c682c10cbaba69ea2f Size (crypt-1.17.tar.bz2) = 1599215 bytes SHA1 (patch-aa) = a2385cf0543a19b1555d4370a10c012c5141b48a -SHA1 (patch-ab) = 364a6939c2bdec98413aab50465d5a42293af6db +SHA1 (patch-ab) = c0eb1522dd02c2811deebfa353433e81e71a8928 SHA1 (patch-ac) = 871a713512b20199b502876d2523e8bf619c5e85 diff --git a/security/libtomcrypt/patches/patch-ab b/security/libtomcrypt/patches/patch-ab index 1a77edfe3dd..4e801db16b5 100644 --- a/security/libtomcrypt/patches/patch-ab +++ b/security/libtomcrypt/patches/patch-ab @@ -1,4 +1,4 @@ -$NetBSD: patch-ab,v 1.1 2011/03/10 10:02:34 drochner Exp $ +$NetBSD: patch-ab,v 1.2 2014/01/16 13:32:10 drochner Exp $ --- makefile.shared.orig 2007-05-12 14:46:25.000000000 +0000 +++ makefile.shared @@ -11,6 +11,15 @@ $NetBSD: patch-ab,v 1.1 2011/03/10 10:02:34 drochner Exp $ # ranlib tools ifndef RANLIB +@@ -17,7 +17,7 @@ ifndef RANLIB + endif + + # Compilation flags. Note the += does not write over the user's CFLAGS! +-CFLAGS += -c -I./src/headers/ -Wall -Wsign-compare -W -Wshadow -DLTC_SOURCE ++CFLAGS += -c -I./src/headers/ -Wall -Wsign-compare -W -Wshadow -DLTC_SOURCE ${CFLAGS_OPTS} + + # additional warnings (newer GCC 3.4 and higher) + ifdef GCC_34 @@ -75,13 +75,13 @@ ifndef DESTDIR DESTDIR= endif |