From owner-svn-ports-all@FreeBSD.ORG Thu Oct 25 19:21:29 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4F21BED4; Thu, 25 Oct 2012 19:21:29 +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 3482B8FC0A; Thu, 25 Oct 2012 19:21:29 +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 q9PJLTf9028144; Thu, 25 Oct 2012 19:21:29 GMT (envelope-from crees@svn.freebsd.org) Received: (from crees@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9PJLSrP028138; Thu, 25 Oct 2012 19:21:28 GMT (envelope-from crees@svn.freebsd.org) Message-Id: <201210251921.q9PJLSrP028138@svn.freebsd.org> From: Chris Rees Date: Thu, 25 Oct 2012 19:21:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306392 - 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-all@freebsd.org X-Mailman-Version: 2.1.14 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: Thu, 25 Oct 2012 19:21:29 -0000 Author: crees Date: Thu Oct 25 19:21:28 2012 New Revision: 306392 URL: http://svn.freebsd.org/changeset/ports/306392 Log: Stop creating duplicate packages, and add CONFLICTS Thanks to erwin for limiting the damage I caused in the meantime Feature safe: yes Modified: head/Mk/bsd.database.mk head/databases/Makefile head/databases/postgresql90-pgtcl/Makefile head/databases/postgresql91-pgtcl/Makefile head/databases/postgresql92-pgtcl/Makefile Modified: head/Mk/bsd.database.mk ============================================================================== --- head/Mk/bsd.database.mk Thu Oct 25 18:02:31 2012 (r306391) +++ head/Mk/bsd.database.mk Thu Oct 25 19:21:28 2012 (r306392) @@ -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 pltcl plperl server _USE_PGSQL_DEP_contrib= pgbench _USE_PGSQL_DEP_docs= postgresql-docs>0 _USE_PGSQL_DEP_pgtcl= ${LOCALBASE}/lib/pgtcl/pkgIndex.tcl Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Thu Oct 25 18:02:31 2012 (r306391) +++ head/databases/Makefile Thu Oct 25 19:21:28 2012 (r306392) @@ -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 Modified: head/databases/postgresql90-pgtcl/Makefile ============================================================================== --- head/databases/postgresql90-pgtcl/Makefile Thu Oct 25 18:02:31 2012 (r306391) +++ head/databases/postgresql90-pgtcl/Makefile Thu Oct 25 19:21:28 2012 (r306392) @@ -1,6 +1,9 @@ # $FreeBSD$ WANT_PGSQL_VER= 90 +PKGNAMESUFFIX= -postgresql${WANT_PGSQL_VER} + +CONFLICTS= pgtcl-[0-9]* pgtcl-postgresql9[12]-[0-9]* MASTERDIR= ${.CURDIR}/../pgtcl Modified: head/databases/postgresql91-pgtcl/Makefile ============================================================================== --- head/databases/postgresql91-pgtcl/Makefile Thu Oct 25 18:02:31 2012 (r306391) +++ head/databases/postgresql91-pgtcl/Makefile Thu Oct 25 19:21:28 2012 (r306392) @@ -1,6 +1,9 @@ # $FreeBSD$ WANT_PGSQL_VER= 91 +PKGNAMESUFFIX= -postgresql${WANT_PGSQL_VER} + +CONFLICTS= pgtcl-[0-9]* pgtcl-postgresql9[02]-[0-9]* MASTERDIR= ${.CURDIR}/../pgtcl Modified: head/databases/postgresql92-pgtcl/Makefile ============================================================================== --- head/databases/postgresql92-pgtcl/Makefile Thu Oct 25 18:02:31 2012 (r306391) +++ head/databases/postgresql92-pgtcl/Makefile Thu Oct 25 19:21:28 2012 (r306392) @@ -1,6 +1,9 @@ # $FreeBSD$ WANT_PGSQL_VER= 92 +PKGNAMESUFFIX= -postgresql${WANT_PGSQL_VER} + +CONFLICTS= pgtcl-[0-9]* pgtcl-postgresql9[01]-[0-9]* MASTERDIR= ${.CURDIR}/../pgtcl