diff options
author | jlam <jlam@pkgsrc.org> | 2001-06-21 21:41:34 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-06-21 21:41:34 +0000 |
commit | b62e28495fdbe8fe21538325312046e1e23db080 (patch) | |
tree | 73aab73b523016fdf15d6ce6898ea112f6c31bd1 /databases | |
parent | a85615f592fa5c2d217a8320b03ed67a7cb1b2dc (diff) | |
download | pkgsrc-b62e28495fdbe8fe21538325312046e1e23db080.tar.gz |
Add buildlink.mk files for use by other package Makefiles.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/postgresql-lib/buildlink.mk | 42 | ||||
-rw-r--r-- | databases/tcl-postgresql/buildlink.mk | 35 |
2 files changed, 77 insertions, 0 deletions
diff --git a/databases/postgresql-lib/buildlink.mk b/databases/postgresql-lib/buildlink.mk new file mode 100644 index 00000000000..1441d2a69ac --- /dev/null +++ b/databases/postgresql-lib/buildlink.mk @@ -0,0 +1,42 @@ +# $NetBSD: buildlink.mk,v 1.1 2001/06/21 21:41:34 jlam Exp $ +# +# This Makefile fragment is included by packages that use postgresql-lib. +# +# To use this Makefile fragment, simply: +# +# (1) Optionally define POSTGRESQL_LIB_REQD to the version of postgresql-lib +# desired. +# (2) Include this Makefile fragment in the package Makefile, +# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header +# search path, and +# (4) Add ${BUILDLINK_DIR}/lib to the front of the linker's library search +# path. + +.if !defined(POSTGRESQL_LIB_BUILDLINK_MK) +POSTGRESQL_LIB_BUILDLINK_MK= # defined + +.if defined(POSTGRESQL_LIB_REQD) +DEPENDS+= postgresql-lib>=${POSTGRESQL_LIB_REQD}:../../databases/postgresql-lib +.else +DEPENDS+= postgresql-{6.5.3*,7.0*,lib-*}:../../databases/postgresql-lib +.endif + +BUILDLINK_PREFIX.postgresql-lib= ${LOCALBASE} +BUILDLINK_FILES.postgresql-lib= include/pgsql/*/*.h +BUILDLINK_FILES.postgresql-lib+= include/pgsql/*.h +BUILDLINK_FILES.postgresql-lib+= lib/libecpg.* +BUILDLINK_FILES.postgresql-lib+= lib/libpgeasy.* +BUILDLINK_FILES.postgresql-lib+= lib/libpq++.* +BUILDLINK_FILES.postgresql-lib+= lib/libpq.* + +.include "../../security/openssl/buildlink.mk" + +BUILDLINK_TARGETS.postgresql-lib= postgresql-lib-buildlink +BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.postgresql-lib} + +pre-configure: ${BUILDLINK_TARGETS.postgresql-lib} +postgresql-lib-buildlink: _BUILDLINK_USE + +.include "../../mk/bsd.buildlink.mk" + +.endif # POSTGRESQL_LIB_BUILDLINK_MK diff --git a/databases/tcl-postgresql/buildlink.mk b/databases/tcl-postgresql/buildlink.mk new file mode 100644 index 00000000000..991804aebe5 --- /dev/null +++ b/databases/tcl-postgresql/buildlink.mk @@ -0,0 +1,35 @@ +# $NetBSD: buildlink.mk,v 1.1 2001/06/21 21:41:35 jlam Exp $ +# +# This Makefile fragment is included by packages that use tcl-postgresql. +# +# To use this Makefile fragment, simply: +# +# (1) Optionally define TCL_POSTGRESQL_REQD to the version of tcl-postgresql +# desired. +# (2) Include this Makefile fragment in the package Makefile, +# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header +# search path, and +# (4) Add ${BUILDLINK_DIR}/lib to the front of the linker's library search +# path. + +.if !defined(TCL_POSTGRESQL_BUILDLINK_MK) +TCL_POSTGRESQL_BUILDLINK_MK= # defined + +TCL_POSTGRESQL_REQD= 7.0 +DEPENDS+= tcl-postgresql>=${TCL_POSTGRESQL_REQD}:../../databases/tcl-postgresql + +BUILDLINK_PREFIX.tcl-postgresql= ${LOCALBASE} +BUILDLINK_FILES.tcl-postgresql= include/pgsql/libpgtcl.h +BUILDLINK_FILES.tcl-postgresql+= lib/libpgtcl.* + +.include "../../lang/tcl/buildlink.mk" + +BUILDLINK_TARGETS.tcl-postgresql= tcl-postgresql-buildlink +BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.tcl-postgresql} + +pre-configure: ${BUILDLINK_TARGETS.tcl-postgresql} +tcl-postgresql-buildlink: _BUILDLINK_USE + +.include "../../mk/bsd.buildlink.mk" + +.endif # TCL_POSTGRESQL_BUILDLINK_MK |