summaryrefslogtreecommitdiff
path: root/devel/gettext-lib
diff options
context:
space:
mode:
authorjlam <jlam>2001-06-10 00:09:29 +0000
committerjlam <jlam>2001-06-10 00:09:29 +0000
commit9c34f756d124725a34859e96693fbe2ead3a30ef (patch)
tree7a6bfc07ceedb0e0b8ac1235a0168afecaf37111 /devel/gettext-lib
parent0abea0e33d08a7fc9cc2a0b91ea73222313aba96 (diff)
downloadpkgsrc-9c34f756d124725a34859e96693fbe2ead3a30ef.tar.gz
Use cookies (.*_done) to determine whether headers and libs have been
linked from a particular package, and add a pre-configure target to the buildlink.mk file to more painlessly use buildlink.mk files. A ${BUILDLINK_TARGETS} variable still exists in case a package _must_ define NO_CONFIGURE.
Diffstat (limited to 'devel/gettext-lib')
-rw-r--r--devel/gettext-lib/buildlink.mk18
1 files changed, 12 insertions, 6 deletions
diff --git a/devel/gettext-lib/buildlink.mk b/devel/gettext-lib/buildlink.mk
index 08f0b33a7a9..8afeb4b9476 100644
--- a/devel/gettext-lib/buildlink.mk
+++ b/devel/gettext-lib/buildlink.mk
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink.mk,v 1.4 2001/06/09 15:25:18 wiz Exp $
+# $NetBSD: buildlink.mk,v 1.5 2001/06/10 00:09:29 jlam Exp $
#
# This Makefile fragment is included by packages that use gettext.
#
@@ -7,10 +7,9 @@
# (1) Optionally define GETTEXT_REQD to the version of gettext desired.
# (2) Include this Makefile fragment in the package Makefile,
# (3) Optionally define BUILDLINK_INCDIR and BUILDLINK_LIBDIR,
-# (4) Add ${BUILDLINK_TARGETS} to the prerequisite targets for pre-configure,
-# (5) Add ${BUILDLINK_INCDIR} to the front of the C preprocessor's header
+# (4) Add ${BUILDLINK_INCDIR} to the front of the C preprocessor's header
# search path, and
-# (6) Add ${BUILDLINK_LIBDIR} to the front of the linker's library search
+# (5) Add ${BUILDLINK_LIBDIR} to the front of the linker's library search
# path.
.if !defined(GETTEXT_BUILDLINK_MK)
@@ -53,8 +52,15 @@ LDFLAGS+= -L${BUILDLINK_LIBDIR}
LIBS+= -lintl
.endif
-BUILDLINK_TARGETS+= link-gettext-headers
-BUILDLINK_TARGETS+= link-gettext-libs
+GETTEXT_BUILDLINK_COOKIE= ${WRKDIR}/.gettext_buildlink_done
+GETTEXT_BUILDLINK_TARGETS= link-gettext-headers
+GETTEXT_BUILDLINK_TARGETS+= link-gettext-libs
+BUILDLINK_TARGETS+= ${GETTEXT_BUILDLINK_COOKIE}
+
+pre-configure: ${GETTEXT_BUILDLINK_COOKIE}
+
+${GETTEXT_BUILDLINK_COOKIE}: ${GETTEXT_BUILDLINK_TARGETS}
+ @${TOUCH} ${TOUCH_FLAGS} ${GETTEXT_BUILDLINK_COOKIE}
# This target links the headers into ${BUILDLINK_INCDIR}, which should
# be searched first by the C preprocessor.