pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/security/apg
Module Name: pkgsrc
Committed By: ryoon
Date: Tue Sep 28 09:20:34 UTC 2021
Modified Files:
pkgsrc/security/apg: Makefile distinfo
pkgsrc/security/apg/patches: patch-aa
Log Message:
apg: Pass LDFLAGS to fix RELRO build. Bump PKGREVISION
To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 pkgsrc/security/apg/Makefile
cvs rdiff -u -r1.9 -r1.10 pkgsrc/security/apg/distinfo
cvs rdiff -u -r1.4 -r1.5 pkgsrc/security/apg/patches/patch-aa
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/security/apg/Makefile
diff -u pkgsrc/security/apg/Makefile:1.31 pkgsrc/security/apg/Makefile:1.32
--- pkgsrc/security/apg/Makefile:1.31 Mon May 24 19:53:51 2021
+++ pkgsrc/security/apg/Makefile Tue Sep 28 09:20:34 2021
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.31 2021/05/24 19:53:51 wiz Exp $
+# $NetBSD: Makefile,v 1.32 2021/09/28 09:20:34 ryoon Exp $
#
DISTNAME= apg-2.3.0b
-PKGREVISION= 9
+PKGREVISION= 10
CATEGORIES= security
#MASTER_SITES= http://www.adel.nursat.kz/apg/download/
Index: pkgsrc/security/apg/distinfo
diff -u pkgsrc/security/apg/distinfo:1.9 pkgsrc/security/apg/distinfo:1.10
--- pkgsrc/security/apg/distinfo:1.9 Wed Sep 26 05:04:09 2018
+++ pkgsrc/security/apg/distinfo Tue Sep 28 09:20:34 2021
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.9 2018/09/26 05:04:09 ryoon Exp $
+$NetBSD: distinfo,v 1.10 2021/09/28 09:20:34 ryoon Exp $
SHA1 (apg-2.3.0b.tar.gz) = d729c939adb659c05fd0ea3d9c03842c6fe86fed
RMD160 (apg-2.3.0b.tar.gz) = 18f9955d6fdb721bec26613860b312d7fea6fba7
SHA512 (apg-2.3.0b.tar.gz) = 3112d2267f2311f960a52fa268b55a5faf0250a4a8c5e7444f0c1326afa2844a476a54befcf79e5b8532d74c53f6f58ffc420591c8c36798dd82b43c14869e1a
Size (apg-2.3.0b.tar.gz) = 109995 bytes
-SHA1 (patch-aa) = 59d5537da45c7fb05480d12d1e73b04d19eed63f
+SHA1 (patch-aa) = 006bb43f2bb5401c5cd43f0d54f0e8a992ef2d49
SHA1 (patch-apg.c) = 212c6b8b61127243428ffa2bfbab8424bde0a7da
Index: pkgsrc/security/apg/patches/patch-aa
diff -u pkgsrc/security/apg/patches/patch-aa:1.4 pkgsrc/security/apg/patches/patch-aa:1.5
--- pkgsrc/security/apg/patches/patch-aa:1.4 Fri Feb 14 04:14:40 2014
+++ pkgsrc/security/apg/patches/patch-aa Tue Sep 28 09:20:34 2021
@@ -1,6 +1,7 @@
-$NetBSD: patch-aa,v 1.4 2014/02/14 04:14:40 rodent Exp $
+$NetBSD: patch-aa,v 1.5 2021/09/28 09:20:34 ryoon Exp $
-Don't hardcode CC, CFLAGS, PREFIX. Fix installation stage.
+* Don't hardcode CC, CFLAGS, PREFIX. Fix installation stage.
+* Add LDFLAGS to fix RELRO build.
--- Makefile.orig 2003-08-07 15:40:39.000000000 +0000
+++ Makefile
@@ -25,6 +26,23 @@ Don't hardcode CC, CFLAGS, PREFIX. Fix i
####################################################################
# If you plan to install APG daemon you should look at lines below #
+@@ -129,13 +126,13 @@ cliserv: apgd apgbfm
+ cygwin: standalone
+
+ apg:
+- ${CC} ${CFLAGS} ${STANDALONE_OPTIONS} -o ${PROGNAME} ${SOURCES} ${APG_CLIBS}
++ ${CC} ${CFLAGS} ${LDFLAGS} ${STANDALONE_OPTIONS} -o ${PROGNAME} ${SOURCES} ${APG_CLIBS}
+
+ apgd:
+- ${CC} ${CFLAGS} -DCLISERV ${CLISERV_OPTIONS} -o ${CS_PROGNAME} ${SOURCES} ${APG_CS_CLIBS}
++ ${CC} ${CFLAGS} ${LDFLAGS} -DCLISERV ${CLISERV_OPTIONS} -o ${CS_PROGNAME} ${SOURCES} ${APG_CS_CLIBS}
+
+ apgbfm:
+- ${CC} ${FLAGS} -DAPGBFM -o ${BFM_PROGNAME} ${BFM_SOURCES} ${APGBFM_CLIBS}
++ ${CC} ${CFLAGS} ${LDFLAGS} -DAPGBFM -o ${BFM_PROGNAME} ${BFM_SOURCES} ${APGBFM_CLIBS}
+
+ strip:
+ strip ${PROGNAME}
@@ -143,24 +140,12 @@ strip:
strip ${BFM_PROGNAME}
Home |
Main Index |
Thread Index |
Old Index