svn commit: r423057 - in head/databases: postgresql92-pltcl postgresql93-pltcl postgresql94-pltcl postgresql95-pltcl postgresql96-pltcl
Antoine Brodin
antoine at FreeBSD.org
Sat Oct 1 13:05:03 UTC 2016
Author: antoine
Date: Sat Oct 1 13:05:01 2016
New Revision: 423057
URL: https://svnweb.freebsd.org/changeset/ports/423057
Log:
Modify postgresql9[2-5]-pltcl to include postgresql96-pltcl/Makefile
instead of expired postgresql91-pltcl/Makefile
Modified:
head/databases/postgresql92-pltcl/Makefile
head/databases/postgresql93-pltcl/Makefile
head/databases/postgresql94-pltcl/Makefile
head/databases/postgresql95-pltcl/Makefile
head/databases/postgresql96-pltcl/Makefile
Modified: head/databases/postgresql92-pltcl/Makefile
==============================================================================
--- head/databases/postgresql92-pltcl/Makefile Sat Oct 1 12:49:22 2016 (r423056)
+++ head/databases/postgresql92-pltcl/Makefile Sat Oct 1 13:05:01 2016 (r423057)
@@ -3,4 +3,4 @@
WANT_PGSQL_VER= 9.2
-.include "${.CURDIR}/../postgresql91-pltcl/Makefile"
+.include "${.CURDIR}/../postgresql96-pltcl/Makefile"
Modified: head/databases/postgresql93-pltcl/Makefile
==============================================================================
--- head/databases/postgresql93-pltcl/Makefile Sat Oct 1 12:49:22 2016 (r423056)
+++ head/databases/postgresql93-pltcl/Makefile Sat Oct 1 13:05:01 2016 (r423057)
@@ -3,4 +3,4 @@
WANT_PGSQL_VER= 9.3
-.include "${.CURDIR}/../postgresql91-pltcl/Makefile"
+.include "${.CURDIR}/../postgresql96-pltcl/Makefile"
Modified: head/databases/postgresql94-pltcl/Makefile
==============================================================================
--- head/databases/postgresql94-pltcl/Makefile Sat Oct 1 12:49:22 2016 (r423056)
+++ head/databases/postgresql94-pltcl/Makefile Sat Oct 1 13:05:01 2016 (r423057)
@@ -3,4 +3,4 @@
WANT_PGSQL_VER= 9.4
-.include "${.CURDIR}/../postgresql91-pltcl/Makefile"
+.include "${.CURDIR}/../postgresql96-pltcl/Makefile"
Modified: head/databases/postgresql95-pltcl/Makefile
==============================================================================
--- head/databases/postgresql95-pltcl/Makefile Sat Oct 1 12:49:22 2016 (r423056)
+++ head/databases/postgresql95-pltcl/Makefile Sat Oct 1 13:05:01 2016 (r423057)
@@ -3,4 +3,4 @@
WANT_PGSQL_VER= 9.5
-.include "${.CURDIR}/../postgresql91-pltcl/Makefile"
+.include "${.CURDIR}/../postgresql96-pltcl/Makefile"
Modified: head/databases/postgresql96-pltcl/Makefile
==============================================================================
--- head/databases/postgresql96-pltcl/Makefile Sat Oct 1 12:49:22 2016 (r423056)
+++ head/databases/postgresql96-pltcl/Makefile Sat Oct 1 13:05:01 2016 (r423057)
@@ -1,6 +1,30 @@
# Created by: Palle Girgensohn <girgen at partitur.se>
# $FreeBSD$
-WANT_PGSQL_VER= 9.6
+PORTNAME= postgresql
+CATEGORIES= databases tcl
+PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT}
-.include "${.CURDIR}/../postgresql91-pltcl/Makefile"
+MAINTAINER= pgsql at FreeBSD.org
+COMMENT= Module for using Tcl to write SQL functions
+
+MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER:S/.//}-server
+
+WANT_PGSQL_VER?=9.6
+
+USES+= tcl pgsql:${WANT_PGSQL_VER}
+WANT_PGSQL= server
+
+CONFIGURE_ARGS= --with-tcl --without-tk \
+ --with-tclconfig="${TCL_LIBDIR}" \
+ --with-includes="${TCL_INCLUDEDIR}"
+
+CONFIGURE_ENV+= TCLSH="${TCLSH}"
+MAKE_ENV+= TCL_INCDIR="${TCL_INCLUDEDIR}"
+
+BUILD_DIRS= src/backend src/pl/tcl
+INSTALL_DIRS= src/pl/tcl
+SLAVE_ONLY= yes
+COMPONENT= -pltcl
+
+.include "${MASTERDIR}/Makefile"
More information about the svn-ports-all
mailing list