summaryrefslogtreecommitdiff
path: root/devel/libgetopt
diff options
context:
space:
mode:
authorjlam <jlam>2002-08-25 19:21:43 +0000
committerjlam <jlam>2002-08-25 19:21:43 +0000
commit3d80364aa7d569b8fa9e6f1069f1c94550179218 (patch)
treec69c41be2f3b44bedceeee7e348c2ae58c476c6a /devel/libgetopt
parent3bff324aa681cfea59a4a20f4bdd9520a4707593 (diff)
downloadpkgsrc-3d80364aa7d569b8fa9e6f1069f1c94550179218.tar.gz
Merge changes in packages from the buildlink2 branch that have
buildlink2.mk files back into the main trunk.
Diffstat (limited to 'devel/libgetopt')
-rw-r--r--devel/libgetopt/buildlink2.mk36
1 files changed, 36 insertions, 0 deletions
diff --git a/devel/libgetopt/buildlink2.mk b/devel/libgetopt/buildlink2.mk
new file mode 100644
index 00000000000..c7e19d5c9f3
--- /dev/null
+++ b/devel/libgetopt/buildlink2.mk
@@ -0,0 +1,36 @@
+# $NetBSD: buildlink2.mk,v 1.2 2002/08/25 19:22:30 jlam Exp $
+
+.if !defined(GETOPT_BUILDLINK2_MK)
+GETOPT_BUILDLINK2_MK= # defined
+
+BUILDLINK_DEPENDS.getopt?= libgetopt>=1.3
+BUILDLINK_PKGSRCDIR.getopt?= ../../devel/libgetopt
+
+.if exists(/usr/include/getopt.h)
+_NEED_GETOPT= NO
+.else
+_NEED_GETOPT= YES
+.endif
+
+.if ${_NEED_GETOPT} == "NO"
+BUILDLINK_PREFIX.getopt= /usr
+BUILDLINK_FILES.getopt= include/getopt.h
+LIBGETOPT= # empty
+.else
+BUILDLINK_PACKAGES+= getopt
+EVAL_PREFIX+= BUILDLINK_PREFIX.getopt=libgetopt
+BUILDLINK_PREFIX.getopt_DEFAULT= ${LOCALBASE}
+BUILDLINK_FILES.getopt= include/getopt.h
+BUILDLINK_FILES.getopt+= lib/libgetopt.*
+BUILDLINK_FILES.getopt+= lib/libgetopt_pic.a
+LIBGETOPT= -lgetopt
+.endif
+
+CONFIGURE_ENV+= LIBGETOPT="${LIBGETOPT}"
+MAKE_ENV+= LIBGETOPT="${LIBGETOPT}"
+
+BUILDLINK_TARGETS+= getopt-buildlink
+
+getopt-buildlink: _BUILDLINK_USE
+
+.endif # GETOPT_BUILDLINK2_MK