From 804d58013aa303b9fb016227ba0844abd29e1d66 Mon Sep 17 00:00:00 2001 From: John Marino Date: Sun, 3 Nov 2013 12:43:45 +0000 Subject: [PATCH] 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 --- Mk/bsd.database.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mk/bsd.database.mk b/Mk/bsd.database.mk index 3ed4000f9efb..e8c731566f6a 100644 --- a/Mk/bsd.database.mk +++ b/Mk/bsd.database.mk @@ -260,10 +260,10 @@ LIB_DEPENDS+= pq.${PGSQL${PGSQL_VER}_LIBVER}:${PORTSDIR}/databases/postgresql${P _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}}