From owner-svn-ports-head@FreeBSD.ORG Thu May 29 08:12:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96F98681; Thu, 29 May 2014 08:12:53 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 829272BA6; Thu, 29 May 2014 08:12:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4T8Crx7064334; Thu, 29 May 2014 08:12:53 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4T8CqNh064327; Thu, 29 May 2014 08:12:52 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201405290812.s4T8CqNh064327@svn.freebsd.org> From: Antoine Brodin Date: Thu, 29 May 2014 08:12:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355673 - in head/databases: pgtcl postgresql90-pgtcl postgresql91-pgtcl postgresql92-pgtcl postgresql93-pgtcl postgresql94-pgtcl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2014 08:12:53 -0000 Author: antoine Date: Thu May 29 08:12:51 2014 New Revision: 355673 URL: http://svnweb.freebsd.org/changeset/ports/355673 QAT: https://qat.redports.org/buildarchive/r355673/ Log: Chase USES=pgsql in pgtcl slaves Modified: head/databases/pgtcl/Makefile head/databases/postgresql90-pgtcl/Makefile head/databases/postgresql91-pgtcl/Makefile head/databases/postgresql92-pgtcl/Makefile head/databases/postgresql93-pgtcl/Makefile head/databases/postgresql94-pgtcl/Makefile Modified: head/databases/pgtcl/Makefile ============================================================================== --- head/databases/pgtcl/Makefile Thu May 29 08:09:24 2014 (r355672) +++ head/databases/pgtcl/Makefile Thu May 29 08:12:51 2014 (r355673) @@ -17,7 +17,11 @@ LICENSE_FILE= ${WRKSRC}/COPYRIGHT OPTIONS_DEFINE= DOCS +.if defined(PGTCL_SLAVE) +USES= pgsql:${PGTCL_SLAVE} tcl +.else USES= pgsql tcl +.endif GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-tcl=${TCL_LIBDIR} --with-tclinclude=${TCL_INCLUDEDIR} LIBDIR= ${PREFIX}/lib/${PORTNAME} Modified: head/databases/postgresql90-pgtcl/Makefile ============================================================================== --- head/databases/postgresql90-pgtcl/Makefile Thu May 29 08:09:24 2014 (r355672) +++ head/databases/postgresql90-pgtcl/Makefile Thu May 29 08:12:51 2014 (r355673) @@ -1,11 +1,10 @@ # $FreeBSD$ -WANT_PGSQL_VER= 90 -PKGNAMESUFFIX= -postgresql${WANT_PGSQL_VER} +PKGNAMESUFFIX= -postgresql90 -CONFLICTS= pgtcl-[0-9]* pgtcl-postgresql9[12]-[0-9]* +CONFLICTS= pgtcl-[0-9]* pgtcl-postgresql9[1234]-[0-9]* +PGTCL_SLAVE= 9.0 MASTERDIR= ${.CURDIR}/../pgtcl -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/databases/postgresql91-pgtcl/Makefile ============================================================================== --- head/databases/postgresql91-pgtcl/Makefile Thu May 29 08:09:24 2014 (r355672) +++ head/databases/postgresql91-pgtcl/Makefile Thu May 29 08:12:51 2014 (r355673) @@ -1,11 +1,10 @@ # $FreeBSD$ -WANT_PGSQL_VER= 91 -PKGNAMESUFFIX= -postgresql${WANT_PGSQL_VER} +PKGNAMESUFFIX= -postgresql91 -CONFLICTS= pgtcl-[0-9]* pgtcl-postgresql9[02]-[0-9]* +CONFLICTS= pgtcl-[0-9]* pgtcl-postgresql9[0234]-[0-9]* +PGTCL_SLAVE= 9.1 MASTERDIR= ${.CURDIR}/../pgtcl -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/databases/postgresql92-pgtcl/Makefile ============================================================================== --- head/databases/postgresql92-pgtcl/Makefile Thu May 29 08:09:24 2014 (r355672) +++ head/databases/postgresql92-pgtcl/Makefile Thu May 29 08:12:51 2014 (r355673) @@ -1,11 +1,10 @@ # $FreeBSD$ -WANT_PGSQL_VER= 92 -PKGNAMESUFFIX= -postgresql${WANT_PGSQL_VER} +PKGNAMESUFFIX= -postgresql92 -CONFLICTS= pgtcl-[0-9]* pgtcl-postgresql9[01]-[0-9]* +CONFLICTS= pgtcl-[0-9]* pgtcl-postgresql9[0134]-[0-9]* +PGTCL_SLAVE= 9.2 MASTERDIR= ${.CURDIR}/../pgtcl -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/databases/postgresql93-pgtcl/Makefile ============================================================================== --- head/databases/postgresql93-pgtcl/Makefile Thu May 29 08:09:24 2014 (r355672) +++ head/databases/postgresql93-pgtcl/Makefile Thu May 29 08:12:51 2014 (r355673) @@ -1,11 +1,10 @@ # $FreeBSD$ -WANT_PGSQL_VER= 93 -PKGNAMESUFFIX= -postgresql${WANT_PGSQL_VER} +PKGNAMESUFFIX= -postgresql93 -CONFLICTS= pgtcl-[0-9]* pgtcl-postgresql9[012]-[0-9]* +CONFLICTS= pgtcl-[0-9]* pgtcl-postgresql9[0124]-[0-9]* +PGTCL_SLAVE= 9.3 MASTERDIR= ${.CURDIR}/../pgtcl -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/databases/postgresql94-pgtcl/Makefile ============================================================================== --- head/databases/postgresql94-pgtcl/Makefile Thu May 29 08:09:24 2014 (r355672) +++ head/databases/postgresql94-pgtcl/Makefile Thu May 29 08:12:51 2014 (r355673) @@ -1,10 +1,10 @@ # $FreeBSD$ -WANT_PGSQL_VER= 94 -PKGNAMESUFFIX= -postgresql${WANT_PGSQL_VER} +PKGNAMESUFFIX= -postgresql94 CONFLICTS= pgtcl-[0-9]* pgtcl-postgresql9[0123]-[0-9]* +PGTCL_SLAVE= 9.4 MASTERDIR= ${.CURDIR}/../pgtcl .include "${MASTERDIR}/Makefile"