diff options
author | pgollucci <pgollucci@FreeBSD.org> | 2015-07-08 05:31:39 +0800 |
---|---|---|
committer | pgollucci <pgollucci@FreeBSD.org> | 2015-07-08 05:31:39 +0800 |
commit | 7b2750990d71dee39591ab9c6b9d8ab776ef0ed5 (patch) | |
tree | 32b11e1cf9f930e81f2bf11a2027d2dbbad981c4 /Mk/Uses | |
parent | f6f1f9ef2138df8ab3f916221a95e38a35167676 (diff) | |
download | freebsd-ports-gnome-7b2750990d71dee39591ab9c6b9d8ab776ef0ed5.tar.gz freebsd-ports-gnome-7b2750990d71dee39591ab9c6b9d8ab776ef0ed5.tar.zst freebsd-ports-gnome-7b2750990d71dee39591ab9c6b9d8ab776ef0ed5.zip |
- 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)
Diffstat (limited to 'Mk/Uses')
-rw-r--r-- | Mk/Uses/pgsql.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mk/Uses/pgsql.mk b/Mk/Uses/pgsql.mk index 7601866888a9..fdc85055656c 100644 --- a/Mk/Uses/pgsql.mk +++ b/Mk/Uses/pgsql.mk @@ -128,10 +128,10 @@ LIB_DEPENDS+= libpq.so.${PGSQL${PGSQL_VER_NODOT}_LIBVER}:${PORTSDIR}/databases/p _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} |