blob: 442dee61e0096d711bd6a645bfa002a6d91f55a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $NetBSD: Makefile,v 1.1 2010/08/04 06:04:41 mbalmer Exp $
PKGNAME= postgresql84-dblink-${BASE_VERS}
COMMENT= dblink module for remote database connections
PKG_DESTDIR_SUPPORT= user-destdir
DEPENDS+= postgresql84-server>=${BASE_VERS}:../../databases/postgresql84-server
.include "../../databases/postgresql84/Makefile.common"
BUILD_DIRS= src/interfaces/libpq \
contrib/dblink
INSTALL_DIRS= contrib/dblink
USE_LIBTOOL= yes
PKG_LIBTOOL= ${PKG_SHLIBTOOL}
REQD_DIRS+= ${PG_SUBPREFIX}share/doc/postgresql/contrib
REQD_DIRS+= ${PG_SUBPREFIX}share/postgresql/contrib
.include "../../databases/postgresql84-client/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|