From owner-svn-ports-all@FreeBSD.ORG Fri Mar 21 08:15:29 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 046EAF04; Fri, 21 Mar 2014 08:15:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DA84094A; Fri, 21 Mar 2014 08:15:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2L8FS1j096146; Fri, 21 Mar 2014 08:15:28 GMT (envelope-from girgen@svn.freebsd.org) Received: (from girgen@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2L8FQ1m096131; Fri, 21 Mar 2014 08:15:26 GMT (envelope-from girgen@svn.freebsd.org) Message-Id: <201403210815.s2L8FQ1m096131@svn.freebsd.org> From: Palle Girgensohn Date: Fri, 21 Mar 2014 08:15:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r348732 - in head/databases: postgresql84-contrib postgresql84-server/files postgresql90-contrib postgresql90-server/files postgresql91-contrib postgresql91-server/files postgresql92-co... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Mar 2014 08:15:29 -0000 Author: girgen Date: Fri Mar 21 08:15:26 2014 New Revision: 348732 URL: http://svnweb.freebsd.org/changeset/ports/348732 QAT: https://qat.redports.org/buildarchive/r348732/ Log: Fix mistake with ossp-uuid: don't use --with-ossp-uuid, since it will need the ossp library present, and then we never use it. Modified: head/databases/postgresql84-contrib/Makefile head/databases/postgresql84-server/files/patch-contrib-uuid head/databases/postgresql90-contrib/Makefile head/databases/postgresql90-server/files/patch-contrib-uuid head/databases/postgresql91-contrib/Makefile head/databases/postgresql91-server/files/patch-contrib-uuid head/databases/postgresql92-contrib/Makefile head/databases/postgresql92-server/files/patch-contrib-uuid head/databases/postgresql93-contrib/Makefile head/databases/postgresql93-server/files/patch-contrib-uuid Modified: head/databases/postgresql84-contrib/Makefile ============================================================================== --- head/databases/postgresql84-contrib/Makefile Fri Mar 21 06:29:53 2014 (r348731) +++ head/databases/postgresql84-contrib/Makefile Fri Mar 21 08:15:26 2014 (r348732) @@ -23,7 +23,7 @@ INSTALL_DIRS= contrib SLAVE_ONLY= yes COMPONENT= -contrib -CONFIGURE_ARGS+=--with-libxslt --with-libxml --with-openssl --with-ossp-uuid +CONFIGURE_ARGS+=--with-libxslt --with-libxml --with-openssl post-install: @- ${INSTALL_DATA} ${WRKSRC}/contrib/README ${STAGEDIR}${DOCSDIR}/contrib/README Modified: head/databases/postgresql84-server/files/patch-contrib-uuid ============================================================================== --- head/databases/postgresql84-server/files/patch-contrib-uuid Fri Mar 21 06:29:53 2014 (r348731) +++ head/databases/postgresql84-server/files/patch-contrib-uuid Fri Mar 21 08:15:26 2014 (r348732) @@ -369,3 +369,13 @@ + return internal_uuid_create(5, (unsigned char *)ns, + VARDATA(name), VARSIZE(name) - VARHDRSZ); } +--- contrib/Makefile.orig 2014-03-21 09:09:12.000000000 +0100 ++++ contrib/Makefile 2014-03-21 09:09:28.000000000 +0100 +@@ -39,6 +39,7 @@ + tablefunc \ + test_parser \ + tsearch2 \ ++ uuid-ossp \ + vacuumlo + + ifeq ($(with_openssl),yes) Modified: head/databases/postgresql90-contrib/Makefile ============================================================================== --- head/databases/postgresql90-contrib/Makefile Fri Mar 21 06:29:53 2014 (r348731) +++ head/databases/postgresql90-contrib/Makefile Fri Mar 21 08:15:26 2014 (r348732) @@ -23,7 +23,7 @@ INSTALL_DIRS= contrib SLAVE_ONLY= yes COMPONENT= -contrib -CONFIGURE_ARGS+=--with-libxslt --with-libxml --with-openssl --with-ossp-uuid +CONFIGURE_ARGS+=--with-libxslt --with-libxml --with-openssl LDFLAGS+= ${PTHREAD_LIBS} -L${PREFIX}/lib post-install: Modified: head/databases/postgresql90-server/files/patch-contrib-uuid ============================================================================== --- head/databases/postgresql90-server/files/patch-contrib-uuid Fri Mar 21 06:29:53 2014 (r348731) +++ head/databases/postgresql90-server/files/patch-contrib-uuid Fri Mar 21 08:15:26 2014 (r348732) @@ -369,3 +369,13 @@ + return internal_uuid_create(5, (unsigned char *)ns, + VARDATA(name), VARSIZE(name) - VARHDRSZ); } +--- contrib/Makefile.orig 2014-03-21 08:54:03.000000000 +0100 ++++ contrib/Makefile 2014-03-21 08:54:08.000000000 +0100 +@@ -43,6 +43,7 @@ + tablefunc \ + test_parser \ + tsearch2 \ ++ uuid-ossp \ + unaccent \ + vacuumlo + Modified: head/databases/postgresql91-contrib/Makefile ============================================================================== --- head/databases/postgresql91-contrib/Makefile Fri Mar 21 06:29:53 2014 (r348731) +++ head/databases/postgresql91-contrib/Makefile Fri Mar 21 08:15:26 2014 (r348732) @@ -22,7 +22,7 @@ INSTALL_DIRS= contrib SLAVE_ONLY= yes COMPONENT= -contrib -CONFIGURE_ARGS+=--with-libxslt --with-libxml --with-openssl --with-ossp-uuid +CONFIGURE_ARGS+=--with-libxslt --with-libxml --with-openssl LDFLAGS+= ${PTHREAD_LIBS} -L${PREFIX}/lib post-install: Modified: head/databases/postgresql91-server/files/patch-contrib-uuid ============================================================================== --- head/databases/postgresql91-server/files/patch-contrib-uuid Fri Mar 21 06:29:53 2014 (r348731) +++ head/databases/postgresql91-server/files/patch-contrib-uuid Fri Mar 21 08:15:26 2014 (r348732) @@ -391,3 +391,13 @@ + return internal_uuid_create(5, (unsigned char *)ns, + VARDATA(name), VARSIZE(name) - VARHDRSZ); } +--- contrib/Makefile.orig 2014-03-21 09:05:11.000000000 +0100 ++++ contrib/Makefile 2014-03-21 09:05:29.000000000 +0100 +@@ -48,6 +48,7 @@ + test_parser \ + tsearch2 \ + unaccent \ ++ uuid-ossp \ + vacuumlo + + ifeq ($(with_openssl),yes) Modified: head/databases/postgresql92-contrib/Makefile ============================================================================== --- head/databases/postgresql92-contrib/Makefile Fri Mar 21 06:29:53 2014 (r348731) +++ head/databases/postgresql92-contrib/Makefile Fri Mar 21 08:15:26 2014 (r348732) @@ -22,7 +22,7 @@ INSTALL_DIRS= contrib SLAVE_ONLY= yes COMPONENT= -contrib -CONFIGURE_ARGS+=--with-libxslt --with-libxml --with-ossp-uuid --with-openssl +CONFIGURE_ARGS+=--with-libxslt --with-libxml --with-openssl LDFLAGS+= ${PTHREAD_LIBS} -L${PREFIX}/lib post-install: Modified: head/databases/postgresql92-server/files/patch-contrib-uuid ============================================================================== --- head/databases/postgresql92-server/files/patch-contrib-uuid Fri Mar 21 06:29:53 2014 (r348731) +++ head/databases/postgresql92-server/files/patch-contrib-uuid Fri Mar 21 08:15:26 2014 (r348732) @@ -391,3 +391,13 @@ + return internal_uuid_create(5, (unsigned char *)ns, + VARDATA(name), VARSIZE(name) - VARHDRSZ); } +--- contrib/Makefile.orig 2014-03-21 09:01:58.000000000 +0100 ++++ contrib/Makefile 2014-03-21 09:02:16.000000000 +0100 +@@ -50,6 +50,7 @@ + test_parser \ + tsearch2 \ + unaccent \ ++ uuid-ossp \ + vacuumlo + + ifeq ($(with_openssl),yes) Modified: head/databases/postgresql93-contrib/Makefile ============================================================================== --- head/databases/postgresql93-contrib/Makefile Fri Mar 21 06:29:53 2014 (r348731) +++ head/databases/postgresql93-contrib/Makefile Fri Mar 21 08:15:26 2014 (r348732) @@ -23,7 +23,7 @@ INSTALL_DIRS= contrib SLAVE_ONLY= yes COMPONENT= -contrib -CONFIGURE_ARGS+=--with-libxslt --with-libxml --with-openssl --with-ossp-uuid --disable-nls +CONFIGURE_ARGS+=--with-libxslt --with-libxml --with-openssl --disable-nls LDFLAGS+= ${PTHREAD_LIBS} -L${PREFIX}/lib post-install: Modified: head/databases/postgresql93-server/files/patch-contrib-uuid ============================================================================== --- head/databases/postgresql93-server/files/patch-contrib-uuid Fri Mar 21 06:29:53 2014 (r348731) +++ head/databases/postgresql93-server/files/patch-contrib-uuid Fri Mar 21 08:15:26 2014 (r348732) @@ -397,3 +397,13 @@ + return internal_uuid_create(5, (unsigned char *)ns, + VARDATA(name), VARSIZE(name) - VARHDRSZ); } +--- contrib/Makefile.orig 2014-03-21 08:58:32.000000000 +0100 ++++ contrib/Makefile 2014-03-21 08:59:13.000000000 +0100 +@@ -52,6 +52,7 @@ + test_parser \ + tsearch2 \ + unaccent \ ++ uuid-ossp \ + vacuumlo \ + worker_spi +