8a928af72d
regarded as a major release with features with interest to those with large databases. The updates are extensive and the best source of info is in the release notes. Enjoy and direct questions to database@! Release notes: http://www.postgresql.org/docs/7.4/static/release.html#RELEASE-7-4 PR: ports/59403, ports/59404, ports/59393, ports/59394, ports/59395, ports/59397, ports/59398, ports/59402, && ports/59401 Submitted by: maintainer Approved by: marcus (portmgr@ hat)
36 lines
993 B
Makefile
36 lines
993 B
Makefile
# New ports collection makefile for: PostgreSQL PL/Tcl
|
|
# Date created: January 14, 2002
|
|
# Whom: Palle Girgensohn <girgen@partitur.se>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTREVISION= 0
|
|
CATEGORIES= databases tcl${TCLVERSION:S/.//}
|
|
PKGNAMESUFFIX= -pltcl
|
|
|
|
MAINTAINER= girgen@pingpong.net
|
|
COMMENT= A module for using Tcl to write SQL functions
|
|
|
|
POSTGRESQL_PORT?= databases/postgresql7
|
|
POSTGRESQL_SUBPORT=YES
|
|
.include "../../${POSTGRESQL_PORT}/Makefile"
|
|
|
|
LIB_DEPENDS= tcl${TCLVERSION:S/.//}:${PORTSDIR}/lang/tcl${TCLVERSION:S/.//}
|
|
RUN_DEPENDS= postgres:${PORTSDIR}/${POSTGRESQL_PORT}
|
|
|
|
# you can use "make TCLVERSION=8.4" or similar for your favourite tcl version
|
|
TCLVERSION?= 8.4
|
|
CONFIGURE_ARGS= --with-tcl --without-tk \
|
|
--with-tclconfig="${TCLCONFIG}" \
|
|
--with-includes="${TCL_INCDIR}"
|
|
|
|
TCL_INCDIR= ${LOCALBASE}/include/tcl${TCLVERSION}
|
|
TCLCONFIG= ${LOCALBASE}/lib/tcl${TCLVERSION}
|
|
MAKE_ARGS+= -C src/pl/tcl
|
|
MAKE_ENV+= TCL_INCDIR=${TCL_INCDIR}
|
|
|
|
post-install:
|
|
@ ${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|