Mon Nov 21 01:42:54 2016 UTC ()
postgresql95-contrib: Drop uuid-ossp dependency on BSD.
(Use --with-uuid=bsd as per documentation section F.43.2)

Also probably fix the UUID extension on Solaris and Linux, but untested.


(tnn)
diff -r1.5 -r1.6 pkgsrc/databases/postgresql95/distinfo
diff -r1.1 -r1.2 pkgsrc/databases/postgresql95-contrib/Makefile
diff -r1.1 -r0 pkgsrc/databases/postgresql95/patches/patch-contrib_uuid-ossp_uuid-ossp.c

cvs diff -r1.5 -r1.6 pkgsrc/databases/postgresql95/Attic/distinfo (expand / switch to context diff)
--- pkgsrc/databases/postgresql95/Attic/distinfo 2016/10/29 19:41:54 1.5
+++ pkgsrc/databases/postgresql95/Attic/distinfo 2016/11/21 01:42:54 1.6
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.5 2016/10/29 19:41:54 adam Exp $
+$NetBSD: distinfo,v 1.6 2016/11/21 01:42:54 tnn Exp $
 
 SHA1 (postgresql-9.5.5.tar.bz2) = daf67622692f066d78150a2c4ffae1ec6568ced8
 RMD160 (postgresql-9.5.5.tar.bz2) = 87a90023bdae604f1356e9f0e5a9b7f4c333c847
@@ -8,7 +8,6 @@
 SHA1 (patch-config_perl.m4) = e035132b1c281a75752d570ac5e29a11176c25c5
 SHA1 (patch-configure) = 59fe9a768caf8a5d308acac60c28bc6bb2c40632
 SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921
-SHA1 (patch-contrib_uuid-ossp_uuid-ossp.c) = efaffec2f51de70823430ca162d499b2886a9190
 SHA1 (patch-src_Makefile.global.in) = 2ab3affedc77b202f6749964287438d6179ca23a
 SHA1 (patch-src_Makefile.shlib) = 46b3a8591678f92892d3837cd31fa44e8a7e21b3
 SHA1 (patch-src_backend_Makefile) = b70b38ea23af6cdde9d2349f2441a429078cfaca

cvs diff -r1.1 -r1.2 pkgsrc/databases/postgresql95-contrib/Attic/Makefile (expand / switch to context diff)
--- pkgsrc/databases/postgresql95-contrib/Attic/Makefile 2016/06/19 20:48:29 1.1
+++ pkgsrc/databases/postgresql95-contrib/Attic/Makefile 2016/11/21 01:42:54 1.2
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2016/06/19 20:48:29 fhajny Exp $
+# $NetBSD: Makefile,v 1.2 2016/11/21 01:42:54 tnn Exp $
 
 PKGNAME=	${DISTNAME:C/-/95-contrib-/}
+PKGREVISION=	1
 COMMENT=	Contrib subtree of tools and plug-ins
 
 .include "../../databases/postgresql95/Makefile.common"
@@ -57,13 +58,21 @@
 CONFIGURE_ARGS+=	--with-openssl
 
 PLIST_VARS+=		uuid
-.if ${OPSYS} != "Darwin"
+.if ${OPSYS:M*BSD} || ${OPSYS} == "Linux" || ${OPSYS} == "SunOS"
 PLIST.uuid=		yes
-CONFIGURE_ARGS+=	--with-uuid=ossp
 BUILD_DIRS+=		contrib/uuid-ossp
-# because global pg_config.h is included, we have to define this
-BUILD_MAKE_FLAGS+=	PG_CPPFLAGS=-DHAVE_UUID_H
-.include "../../devel/ossp-uuid/buildlink3.mk"
+.  if ${OPSYS:M*BSD}
+BUILD_MAKE_FLAGS+=	PG_CPPFLAGS="-DHAVE_UUID_H -DHAVE_UUID_BSD -DSHA1_RESULTLEN=20"
+CONFIGURE_ARGS+=	--with-uuid=bsd
+.  elif ${OPSYS} == "Linux"
+BUILD_MAKE_FLAGS+=	PG_CPPFLAGS="-DHAVE_UUID_UUID_H -DHAVE_UUID_E2FS"
+CONFIGURE_ARGS+=	--with-uuid=e2fs
+.  elif ${OPSYS} == "SunOS"
+BUILD_MAKE_FLAGS+=	PG_CPPFLAGS="-DHAVE_UUID_H -DHAVE_UUID_OSSP"
+CONFIGURE_ARGS+=	--with-uuid=ossp
+BUILD_MAKE_FLAGS+=	UUID_LIBS=-lossp-uuid
+.  include "../../devel/ossp-uuid/buildlink3.mk"
+.  endif
 .endif
 
 PRINT_PLIST_AWK+=	{if ($$0 ~ /uuid-ossp/) {$$0 = "$${PLIST.uuid}" $$0;}}

File Deleted: pkgsrc/databases/postgresql95/patches/Attic/patch-contrib_uuid-ossp_uuid-ossp.c