From owner-svn-ports-head@FreeBSD.ORG Wed Oct 24 20:46:48 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BE5EC52F; Wed, 24 Oct 2012 20:46:48 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A52928FC17; Wed, 24 Oct 2012 20:46:48 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9OKkmO1093759; Wed, 24 Oct 2012 20:46:48 GMT (envelope-from crees@svn.freebsd.org) Received: (from crees@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9OKkmm3093753; Wed, 24 Oct 2012 20:46:48 GMT (envelope-from crees@svn.freebsd.org) Message-Id: <201210242046.q9OKkmm3093753@svn.freebsd.org> From: Chris Rees Date: Wed, 24 Oct 2012 20:46:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306353 - in head: Mk databases databases/postgresql90-pgtcl databases/postgresql91-pgtcl databases/postgresql92-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.14 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: Wed, 24 Oct 2012 20:46:49 -0000 Author: crees Date: Wed Oct 24 20:46:48 2012 New Revision: 306353 URL: http://svn.freebsd.org/changeset/ports/306353 Log: Add versioned slaves for databases/pgtcl; there are now packages built for all postgresql9 versions. Feature safe: yes Added: head/databases/postgresql90-pgtcl/ head/databases/postgresql90-pgtcl/Makefile (contents, props changed) head/databases/postgresql91-pgtcl/ head/databases/postgresql91-pgtcl/Makefile (contents, props changed) head/databases/postgresql92-pgtcl/ head/databases/postgresql92-pgtcl/Makefile (contents, props changed) Modified: head/Mk/bsd.database.mk head/databases/Makefile Modified: head/Mk/bsd.database.mk ============================================================================== --- head/Mk/bsd.database.mk Wed Oct 24 19:57:17 2012 (r306352) +++ head/Mk/bsd.database.mk Wed Oct 24 20:46:48 2012 (r306353) @@ -240,7 +240,7 @@ IGNORE?= cannot install: does not work LIB_DEPENDS+= pq.${PGSQL${PGSQL_VER}_LIBVER}:${PORTSDIR}/databases/postgresql${PGSQL_VER}-client -_USE_PGSQL_DEP= contrib docs pltcl plperl server +_USE_PGSQL_DEP= contrib docs pgtcl plperl pltcl server _USE_PGSQL_DEP_contrib= pgbench _USE_PGSQL_DEP_docs= postgresql-docs>0 _USE_PGSQL_DEP_pltcl= postgresql-pltcl>0 Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Wed Oct 24 19:57:17 2012 (r306352) +++ head/databases/Makefile Wed Oct 24 20:46:48 2012 (r306353) @@ -649,18 +649,21 @@ SUBDIR += postgresql90-client SUBDIR += postgresql90-contrib SUBDIR += postgresql90-docs + SUBDIR += postgresql90-pgtcl SUBDIR += postgresql90-plperl SUBDIR += postgresql90-pltcl SUBDIR += postgresql90-server SUBDIR += postgresql91-client SUBDIR += postgresql91-contrib SUBDIR += postgresql91-docs + SUBDIR += postgresql91-pgtcl SUBDIR += postgresql91-plperl SUBDIR += postgresql91-pltcl SUBDIR += postgresql91-server SUBDIR += postgresql92-client SUBDIR += postgresql92-contrib SUBDIR += postgresql92-docs + SUBDIR += postgresql92-pgtcl SUBDIR += postgresql92-plperl SUBDIR += postgresql92-pltcl SUBDIR += postgresql92-server Added: head/databases/postgresql90-pgtcl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/postgresql90-pgtcl/Makefile Wed Oct 24 20:46:48 2012 (r306353) @@ -0,0 +1,7 @@ +# $FreeBSD$ + +WANT_PGSQL_VER= 90 + +MASTERDIR= ${.CURDIR}/../pgtcl + +.include "${MASTERDIR}/Makefile" Added: head/databases/postgresql91-pgtcl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/postgresql91-pgtcl/Makefile Wed Oct 24 20:46:48 2012 (r306353) @@ -0,0 +1,7 @@ +# $FreeBSD$ + +WANT_PGSQL_VER= 91 + +MASTERDIR= ${.CURDIR}/../pgtcl + +.include "${MASTERDIR}/Makefile" Added: head/databases/postgresql92-pgtcl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/postgresql92-pgtcl/Makefile Wed Oct 24 20:46:48 2012 (r306353) @@ -0,0 +1,7 @@ +# $FreeBSD$ + +WANT_PGSQL_VER= 92 + +MASTERDIR= ${.CURDIR}/../pgtcl + +.include "${MASTERDIR}/Makefile"