pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/databases



Module Name:    pkgsrc
Committed By:   fhajny
Date:           Mon Jun  5 12:30:56 UTC 2017

Modified Files:
        pkgsrc/databases/postgresql95-client: Makefile
        pkgsrc/databases/postgresql96-client: Makefile

Log Message:
Extend last year fix to PostgreSQL 9.5 and 9.6.

Override INSTALL script to make sure owner/group args do not leak
into the binary packages. Fixes problems with building software
manually against binary postgresql*-client packages built under an
unprivileged setup. Bump respective PKGREVISION.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/databases/postgresql95-client/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/databases/postgresql96-client/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/databases/postgresql95-client/Makefile
diff -u pkgsrc/databases/postgresql95-client/Makefile:1.3 pkgsrc/databases/postgresql95-client/Makefile:1.4
--- pkgsrc/databases/postgresql95-client/Makefile:1.3   Sat Apr  9 12:51:49 2016
+++ pkgsrc/databases/postgresql95-client/Makefile       Mon Jun  5 12:30:56 2017
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.3 2016/04/09 12:51:49 adam Exp $
+# $NetBSD: Makefile,v 1.4 2017/06/05 12:30:56 fhajny Exp $
 
 PKGNAME=       ${DISTNAME:C/-/95-client-/}
+PKGREVISION=   1
 COMMENT=       PostgreSQL database client programs
 
 .include "../../databases/postgresql95/Makefile.common"
@@ -9,6 +10,10 @@ USE_TOOLS+=           gzip tar
 CONFIGURE_ARGS+=       --with-openssl
 CONFIGURE_ARGS+=       --with-zlib
 
+# Override INSTALL script to avoid unprivileged user/group
+# leaking into the binary package
+CONFIGURE_ARGS+=       INSTALL=${INSTALL:Q}\ -c
+
 .include "../../mk/bsd.prefs.mk"
 
 .if ${OPSYS} == "Cygwin"

Index: pkgsrc/databases/postgresql96-client/Makefile
diff -u pkgsrc/databases/postgresql96-client/Makefile:1.1 pkgsrc/databases/postgresql96-client/Makefile:1.2
--- pkgsrc/databases/postgresql96-client/Makefile:1.1   Sat Oct 29 19:41:55 2016
+++ pkgsrc/databases/postgresql96-client/Makefile       Mon Jun  5 12:30:56 2017
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2016/10/29 19:41:55 adam Exp $
+# $NetBSD: Makefile,v 1.2 2017/06/05 12:30:56 fhajny Exp $
 
 PKGNAME=       ${DISTNAME:C/-/96-client-/}
+PKGREVISION=   1
 COMMENT=       PostgreSQL database client programs
 
 .include "../../databases/postgresql96/Makefile.common"
@@ -9,6 +10,10 @@ USE_TOOLS+=           gzip tar
 CONFIGURE_ARGS+=       --with-openssl
 CONFIGURE_ARGS+=       --with-zlib
 
+# Override INSTALL script to avoid unprivileged user/group
+# leaking into the binary package
+CONFIGURE_ARGS+=       INSTALL=${INSTALL:Q}\ -c
+
 .include "../../mk/bsd.prefs.mk"
 
 .if ${OPSYS} == "Cygwin"



Home | Main Index | Thread Index | Old Index