diff options
author | pgollucci <pgollucci@FreeBSD.org> | 2010-08-31 04:42:23 +0800 |
---|---|---|
committer | pgollucci <pgollucci@FreeBSD.org> | 2010-08-31 04:42:23 +0800 |
commit | 4207552786caaa25f167076e7a8321dff7a83e77 (patch) | |
tree | c39c7aefa6fdcec15ba513cfed9dbd8556b3ace1 /databases | |
parent | a6a3032f75882e7d0da96b5d0af0701fd6fdbde7 (diff) | |
download | freebsd-ports-gnome-4207552786caaa25f167076e7a8321dff7a83e77.tar.gz freebsd-ports-gnome-4207552786caaa25f167076e7a8321dff7a83e77.tar.zst freebsd-ports-gnome-4207552786caaa25f167076e7a8321dff7a83e77.zip |
- Fix RUN_DEPENDS for slave postgresql ports
- Change default pgsql version to 82 matching Mk/ defaults
- Bump PORTREVISIONs
PR: ports/148055
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
Approved by: maintainer timeout (grigen ; > 2.5 months)
Diffstat (limited to 'databases')
-rw-r--r-- | databases/p5-postgresql-plperl/Makefile | 8 | ||||
-rw-r--r-- | databases/postgresql-pltcl/Makefile | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/databases/p5-postgresql-plperl/Makefile b/databases/p5-postgresql-plperl/Makefile index 6f4e50cfc358..8d24e40f7af1 100644 --- a/databases/p5-postgresql-plperl/Makefile +++ b/databases/p5-postgresql-plperl/Makefile @@ -6,18 +6,18 @@ # PORTNAME= postgresql -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases perl5 PKGNAMESUFFIX= -plperl MAINTAINER= girgen@FreeBSD.org COMMENT= Write SQL functions for PostgreSQL using Perl5 -MASTERDIR= ${.CURDIR}/../postgresql${PGSQL_VER}-server +MASTERDIR= ${.CURDIR}/../../databases/postgresql${PGSQL_VER}-server -RUN_DEPENDS= postgres:${.CURDIR}/../postgresql${PGSQL_VER}-server +RUN_DEPENDS= postgres:${PORTSDIR}/databases/postgresql${PGSQL_VER}-server -DEFAULT_PGSQL_VER?=74 +DEFAULT_PGSQL_VER?=82 # can't include <bsd.port.pre.mk> in a slave port # so set these instead: diff --git a/databases/postgresql-pltcl/Makefile b/databases/postgresql-pltcl/Makefile index e8adabdcc7d2..19bb27b4c3f7 100644 --- a/databases/postgresql-pltcl/Makefile +++ b/databases/postgresql-pltcl/Makefile @@ -6,14 +6,14 @@ # PORTNAME= postgresql -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= databases tcl PKGNAMESUFFIX= -pltcl MAINTAINER= girgen@FreeBSD.org COMMENT= A module for using Tcl to write SQL functions -MASTERDIR= ${.CURDIR}/../postgresql${PGSQL_VER}-server +MASTERDIR= ${.CURDIR}/../../databases/postgresql${PGSQL_VER}-server RUN_DEPENDS= postgres:${MASTERDIR} |