diff options
author | vs <vs@FreeBSD.org> | 2005-10-19 23:47:50 +0800 |
---|---|---|
committer | vs <vs@FreeBSD.org> | 2005-10-19 23:47:50 +0800 |
commit | a017510d65c23a6ef20ba1d66849136a791d8c12 (patch) | |
tree | 8c9c99624c255cd5179113203c4323eaed8034cc /databases/slony1v2 | |
parent | 969904ffb900c84937da341fbae90afc12b13e04 (diff) | |
download | freebsd-ports-gnome-a017510d65c23a6ef20ba1d66849136a791d8c12.tar.gz freebsd-ports-gnome-a017510d65c23a6ef20ba1d66849136a791d8c12.tar.zst freebsd-ports-gnome-a017510d65c23a6ef20ba1d66849136a791d8c12.zip |
Make $LOCALBASE-aware
PR: ports/87624
Submitted by: maintainer
Diffstat (limited to 'databases/slony1v2')
-rw-r--r-- | databases/slony1v2/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/databases/slony1v2/Makefile b/databases/slony1v2/Makefile index d702a0db8070..3c6ee324ad05 100644 --- a/databases/slony1v2/Makefile +++ b/databases/slony1v2/Makefile @@ -39,6 +39,16 @@ PLIST_SUB+= PERLTOOLS="@comment " SUB_LIST+= PERLTOOLS="@comment " .endif +# let configure find postgres stuff in non-standard places +CONFIGURE_ARGS+=--with-pgconfigdir=${LOCALBASE}/bin \ + --with-pgbindir=${LOCALBASE}/bin \ + --with-pgincludedir=${LOCALBASE}/include \ + --with-pgincludeserverdir=${LOCALBASE}/include/postgresql/server \ + --with-pglibdir=${LOCALBASE}/lib \ + --with-pgpkglibdir=${LOCALBASE}/lib/postgresql \ + --with-pgsharedir=${LOCALBASE}/share/postgresql + + DEFAULT_PGSQL_VER?=80 # Setting/finding PostgreSQL version we want. |