summaryrefslogtreecommitdiff
path: root/x11/lesstif
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2001-06-30 21:09:29 +0000
committerjlam <jlam@pkgsrc.org>2001-06-30 21:09:29 +0000
commitb7872529b6a1692d76cd34ff5c949a383ce6f64f (patch)
tree447955eda58be393d8054ee76e8425798e3a6776 /x11/lesstif
parente5bae2d5801fc2d6c49ccee9ca16e0dde402f16c (diff)
downloadpkgsrc-b7872529b6a1692d76cd34ff5c949a383ce6f64f.tar.gz
Add buildlink.mk files for use by other package Makefiles.
Diffstat (limited to 'x11/lesstif')
-rw-r--r--x11/lesstif/buildlink.mk72
1 files changed, 72 insertions, 0 deletions
diff --git a/x11/lesstif/buildlink.mk b/x11/lesstif/buildlink.mk
new file mode 100644
index 00000000000..147193a6b71
--- /dev/null
+++ b/x11/lesstif/buildlink.mk
@@ -0,0 +1,72 @@
+# $NetBSD: buildlink.mk,v 1.1 2001/06/30 21:09:29 jlam Exp $
+#
+# This Makefile fragment is included by packages that use lesstif.
+#
+# To use this Makefile fragment, simply:
+#
+# (1) Optionally define BUILDLINK_DEPENDS.lesstif to the dependency pattern
+# for the version of lesstif 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(LESSTIF_BUILDLINK_MK)
+LESSTIF_BUILDLINK_MK= # defined
+
+BUILDLINK_DEPENDS.lesstif?= lesstif>=0.91.4
+
+.include "../../mk/bsd.prefs.mk"
+
+# On Solaris, assume that /usr/dt contains a valid Motif 2.0-compatible
+# installation.
+#
+.if ${OPSYS} == "SunOS"
+_NEED_LESSTIF= NO
+.else
+.if exists(${X11BASE}/include/Xm/Xm.h)
+_IS_LESSTIF!= ${EGREP} -c LESSTIF ${X11BASE}/include/Xm/Xm.h || ${TRUE}
+.if ${_IS_LESSTIF} == "0"
+_NEED_LESSTIF= NO
+.else
+_NEED_LESSTIF= YES
+.endif
+.else
+_NEED_LESSTIF= YES
+.endif
+.endif
+
+.if ${_NEED_LESSTIF} == "YES"
+MOTIFBASE?= ${X11PREFIX}
+DEPENDS+= ${BUILDLINK_DEPENDS.lesstif}:../../x11/lesstif
+.else
+.if ${OPSYS} == "SunOS"
+MOTIFBASE?= /usr/dt
+.else
+MOTIFBASE?= ${X11BASE}
+.endif
+.endif
+
+BUILDLINK_PREFIX.lesstif= ${X11PREFIX}
+BUILDLINK_FILES.lesstif= include/Mrm/*
+BUILDLINK_FILES.lesstif+= include/Xm/*
+BUILDLINK_FILES.lesstif+= include/uil/*
+BUILDLINK_FILES.lesstif+= lib/libMrm.*
+BUILDLINK_FILES.lesstif+= lib/libUil.*
+BUILDLINK_FILES.lesstif+= lib/libXm.*
+
+BUILDLINK_TARGETS.lesstif= lesstif-buildlink
+BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.lesstif}
+
+USE_X11= # defined
+MAKE_ENV+= MOTIFLIB="${MOTIFILIB}"
+LDFLAGS+= -Wl,-R${MOTIFBASE}/lib
+MOTIFLIB?= -Wl,-R${MOTIFBASE}/lib -Wl,-R${X11BASE}/lib -L${BUILDLINK_DIR}/lib -L${X11BASE}/lib -lXm -lXp
+
+pre-configure: ${BUILDLINK_TARGETS.lesstif}
+lesstif-buildlink: _BUILDLINK_USE
+
+.include "../../mk/bsd.buildlink.mk"
+
+.endif # LESSTIF_BUILDLINK_MK