Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Nov 2013 12:43:45 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r332609 - head/Mk
Message-ID:  <201311031243.rA3ChjYb066665@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Sun Nov  3 12:43:45 2013
New Revision: 332609
URL: http://svnweb.freebsd.org/changeset/ports/332609

Log:
  Mk/bsd.database.mk: Fix postgresql component specifications
  
  Due to the RUN_DEPENDS and BUILD_DEPENDS specification of postgresql
  components in bsd.database.mk not matching their package names,
  net-mgmt/netmagis-database was failing during the RUN_DEPENDS stage
  because it couldn't detect that a component was already installed.
  
  Updating the pltcl line allowed that port to successfully built.  The
  other lines weren't tested but the problem would be the same.
  
  Suggested by:	wg

Modified:
  head/Mk/bsd.database.mk

Modified: head/Mk/bsd.database.mk
==============================================================================
--- head/Mk/bsd.database.mk	Sun Nov  3 12:40:14 2013	(r332608)
+++ head/Mk/bsd.database.mk	Sun Nov  3 12:43:45 2013	(r332609)
@@ -260,10 +260,10 @@ LIB_DEPENDS+=	pq.${PGSQL${PGSQL_VER}_LIB
 
 _USE_PGSQL_DEP=			contrib docs pgtcl pltcl plperl server
 _USE_PGSQL_DEP_contrib=	pgbench
-_USE_PGSQL_DEP_docs=	postgresql-docs>0
+_USE_PGSQL_DEP_docs=	postgresql${PGSQL_VER}-docs>0
 _USE_PGSQL_DEP_pgtcl=	${LOCALBASE}/lib/pgtcl/pkgIndex.tcl
-_USE_PGSQL_DEP_plperl=	postgresql-plperl>0
-_USE_PGSQL_DEP_pltcl=	postgresql-pltcl>0
+_USE_PGSQL_DEP_plperl=	postgresql${PGSQL_VER}-plperl>0
+_USE_PGSQL_DEP_pltcl=	postgresql${PGSQL_VER}-pltcl>0
 _USE_PGSQL_DEP_server=	postgres
 .  for depend in ${_USE_PGSQL_DEP}
 .    if ${USE_PGSQL:M${depend}}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311031243.rA3ChjYb066665>