diff options
author | jlam <jlam@pkgsrc.org> | 2001-06-23 19:26:48 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-06-23 19:26:48 +0000 |
commit | 34d11d8a0f59e1c62bc5b1cc1046d3275e061062 (patch) | |
tree | ca311365ad4be7fa955c6e626140f094e60c3647 /databases/postgresql-plperl/Makefile | |
parent | 8ca42bcf7c09eef6cbb13b534ad4d0a51c780fb1 (diff) | |
download | pkgsrc-34d11d8a0f59e1c62bc5b1cc1046d3275e061062.tar.gz |
Generalize how the dependency pattern may be specified. Instead of just
FOO_REQD=1.0 being converted to foo>=1.0, one can now directly specify
the dependency pattern as FOO_DEPENDS=foo>=1.0. This allows things like
JPEG_DEPENDS=jpeg-6b, or fancier expressions like for postgresql-lib.
Change existing FOO_REQD definitions in Makefiles to FOO_DEPENDS.
Diffstat (limited to 'databases/postgresql-plperl/Makefile')
-rw-r--r-- | databases/postgresql-plperl/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/databases/postgresql-plperl/Makefile b/databases/postgresql-plperl/Makefile index 06d4810c6f3..58b493ad297 100644 --- a/databases/postgresql-plperl/Makefile +++ b/databases/postgresql-plperl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2001/06/21 21:40:08 jlam Exp $ +# $NetBSD: Makefile,v 1.3 2001/06/23 19:26:51 jlam Exp $ .include "../../databases/postgresql/Makefile.common" .include "../../databases/postgresql/Makefile.ssl" @@ -7,10 +7,7 @@ PKGNAME= postgresql-plperl-${PG_VERS} PG_PKG_VERS= # empty COMMENT= PL/Perl procedural language for the PostgreSQL backend -POSTGRESQL_LIB_REQD= ${PG_BASE_VERS} - -.include "../../databases/postgresql-lib/buildlink.mk" - +BUILDLINK_DEPENDS.postgresql-lib= postgresql-lib>=${PG_BASE_VERS} DEPENDS+= postgresql-server>=${PG_BASE_VERS}:../../databases/postgresql-server DEPENDS+= libperl>=${LIBPERL5_REQD}:../../lang/libperl @@ -40,4 +37,5 @@ do-install: ${MAKE_PROGRAM} ${MAKE_FLAGS} ${INSTALL_TARGET} .endfor +.include "../../databases/postgresql-lib/buildlink.mk" .include "../../mk/bsd.pkg.mk" |