summaryrefslogtreecommitdiff
path: root/converters/libiconv
diff options
context:
space:
mode:
authorjlam <jlam>2001-05-26 08:10:42 +0000
committerjlam <jlam>2001-05-26 08:10:42 +0000
commit732f073b903aa9994c2eb19a553c84c23edbd688 (patch)
tree29170491b2a3e50365967601a0ff9b21a21d98d3 /converters/libiconv
parentf034c80d1f96daf97308c24aec6ff18657469c6f (diff)
downloadpkgsrc-732f073b903aa9994c2eb19a553c84c23edbd688.tar.gz
Add buildlink.mk files that can link headers and libraries into
${BUILDLINK_INCDIR} and ${BUILDLINK_LIBDIR}, for use by other packages during build.
Diffstat (limited to 'converters/libiconv')
-rw-r--r--converters/libiconv/buildlink.mk61
1 files changed, 61 insertions, 0 deletions
diff --git a/converters/libiconv/buildlink.mk b/converters/libiconv/buildlink.mk
new file mode 100644
index 00000000000..d57c487a110
--- /dev/null
+++ b/converters/libiconv/buildlink.mk
@@ -0,0 +1,61 @@
+# $NetBSD: buildlink.mk,v 1.1 2001/05/26 08:10:43 jlam Exp $
+#
+# This Makefile fragment is included by packages that use libiconv.
+#
+# To use this Makefile fragment, simply:
+#
+# (1) Optionally define ICONV_REQD to the version of libiconv 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
+# search path, and
+# (6) Add ${BUILDLINK_LIBDIR} to the front of the linker's library search
+# path.
+
+.if !defined(ICONV_BUILDLINK_MK)
+ICONV_BUILDLINK_MK= # defined
+
+ICONV_REQD?= 1.5
+DEPENDS+= libiconv>=${ICONV_REQD}:../../converters/libiconv
+
+ICONV_HEADERS= ${LOCALBASE}/include/iconv.h
+ICONV_HEADERS+= ${LOCALBASE}/include/libcharset.h
+ICONV_LIBS= ${LOCALBASE}/lib/libcharset.*
+ICONV_LIBS+= ${LOCALBASE}/lib/libiconv.*
+
+BUILDLINK_INCDIR?= ${WRKDIR}/include
+BUILDLINK_LIBDIR?= ${WRKDIR}/lib
+
+BUILDLINK_TARGETS+= link-iconv-headers
+BUILDLINK_TARGETS+= link-iconv-libs
+
+# This target links the headers into ${BUILDLINK_INCDIR}, which should
+# be searched first by the C preprocessor.
+#
+link-iconv-headers:
+ @${ECHO} "Linking iconv headers into ${BUILDLINK_INCDIR}."
+ @${MKDIR} ${BUILDLINK_INCDIR}
+ @for inc in ${ICONV_HEADERS}; do \
+ dest=${BUILDLINK_INCDIR}/`${BASENAME} $${inc}`; \
+ if [ -f $${inc} ]; then \
+ ${RM} -f $${dest}; \
+ ${LN} -sf $${inc} $${dest}; \
+ fi; \
+ done
+
+# This target links the libraries into ${BUILDLINK_LIBDIR}, which should
+# be searched first by the linker.
+#
+link-iconv-libs:
+ @${ECHO} "Linking iconv libraries into ${BUILDLINK_LIBDIR}."
+ @${MKDIR} ${BUILDLINK_LIBDIR}
+ @for lib in ${ICONV_LIBS}; do \
+ dest=${BUILDLINK_LIBDIR}/`${BASENAME} $${lib}`; \
+ if [ -f $${lib} ]; then \
+ ${RM} -f $${dest}; \
+ ${LN} -sf $${lib} $${dest}; \
+ fi; \
+ done
+
+.endif # ICONV_BUILDLINK_MK