d46e5d2c7b
9.0 includes more major features than any release before it, including: * Hot standby * Streaming replication * In-place upgrades * 64-bit Windows builds * Easy mass permissions management * Anonymous blocks and named parameter calls for stored procedures * New windowing functions and ordered aggregates ... and many more. For details on the over 200 additions and improvements in this version, developed by over a hundred contributors, please see the release notes.
23 lines
632 B
Makefile
23 lines
632 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2010/09/21 07:53:31 adam Exp $
|
|
|
|
PKGNAME= postgresql90-plpython-${BASE_VERS}
|
|
COMMENT= PL/Python procedural language for the PostgreSQL backend
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DEPENDS+= postgresql90-server>=${BASE_VERS}:../../databases/postgresql90-server
|
|
|
|
.include "../../databases/postgresql90/Makefile.common"
|
|
|
|
CONFIGURE_ARGS+= --with-python
|
|
CONFIGURE_ENV+= PYTHON="${PYTHONBIN}"
|
|
|
|
BUILD_DIRS= src/pl/plpython
|
|
|
|
USE_LIBTOOL= yes
|
|
PKG_LIBTOOL= ${PKG_SHLIBTOOL}
|
|
|
|
.include "../../databases/postgresql90-client/buildlink3.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|