Date: Sat, 1 Oct 2016 13:05:02 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423057 - in head/databases: postgresql92-pltcl postgresql93-pltcl postgresql94-pltcl postgresql95-pltcl postgresql96-pltcl Message-ID: <201610011305.u91D52Jf003872@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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@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"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610011305.u91D52Jf003872>