svn commit: r391531 - head/Mk/Uses

Philip M. Gollucci pgollucci at FreeBSD.org
Tue Jul 7 21:31:41 UTC 2015


Author: pgollucci
Date: Tue Jul  7 21:31:39 2015
New Revision: 391531
URL: https://svnweb.freebsd.org/changeset/ports/391531

Log:
  - Fix dependencies on docs, plperl, pltcl
  
  postgresql93-$dep not postgresql9.3-$dep
  Note, nothing uses doc, plperl, or pltcl yet
  
  Required for PR: 201124
  Approved by:     portmgr (bapt)

Modified:
  head/Mk/Uses/pgsql.mk

Modified: head/Mk/Uses/pgsql.mk
==============================================================================
--- head/Mk/Uses/pgsql.mk	Tue Jul  7 21:00:05 2015	(r391530)
+++ head/Mk/Uses/pgsql.mk	Tue Jul  7 21:31:39 2015	(r391531)
@@ -128,10 +128,10 @@ LIB_DEPENDS+=	libpq.so.${PGSQL${PGSQL_VE
 _USE_PGSQL_DEP=		client contrib docs pgtcl pltcl plperl server
 _USE_PGSQL_DEP_client=	psql
 _USE_PGSQL_DEP_contrib=	pgbench
-_USE_PGSQL_DEP_docs=	postgresql${PGSQL_VER}-docs>0
+_USE_PGSQL_DEP_docs=	postgresql${PGSQL_VER_NODOT}-docs>0
 _USE_PGSQL_DEP_pgtcl=	${LOCALBASE}/lib/pgtcl/pkgIndex.tcl
-_USE_PGSQL_DEP_plperl=	postgresql${PGSQL_VER}-plperl>0
-_USE_PGSQL_DEP_pltcl=	postgresql${PGSQL_VER}-pltcl>0
+_USE_PGSQL_DEP_plperl=	postgresql${PGSQL_VER_NODOT}-plperl>0
+_USE_PGSQL_DEP_pltcl=	postgresql${PGSQL_VER_NODOT}-pltcl>0
 _USE_PGSQL_DEP_server=	postgres
 .    if defined(WANT_PGSQL)
 .      for depend in ${_USE_PGSQL_DEP}


More information about the svn-ports-all mailing list