example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
23 lines
691 B
Makefile
23 lines
691 B
Makefile
# $NetBSD: Makefile,v 1.2 2005/12/05 20:50:00 rillig Exp $
|
|
|
|
PKGNAME= postgresql80-pltcl-${BASE_VERS}
|
|
COMMENT= PL/Tcl procedural language for the PostgreSQL backend
|
|
|
|
DEPENDS+= postgresql80-server>=${BASE_VERS}:../../databases/postgresql80-server
|
|
|
|
.include "../../databases/postgresql80/Makefile.common"
|
|
|
|
CONFIGURE_ARGS+= --with-tcl
|
|
CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib"
|
|
CONFIGURE_ENV+= TCLSH=${TCLSH:Q}
|
|
TCLSH= ${BUILDLINK_PREFIX.tcl}/bin/tclsh
|
|
|
|
BUILD_DIRS= ${WRKSRC}/src/pl/tcl
|
|
|
|
USE_LIBTOOL= yes
|
|
PKG_LIBTOOL= ${PKG_SHLIBTOOL}
|
|
|
|
.include "../../databases/postgresql80-client/buildlink3.mk"
|
|
.include "../../lang/tcl/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|