diff options
author | jlam <jlam> | 2001-05-26 16:30:18 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-05-26 16:30:18 +0000 |
commit | 216dfcb8d1bd9bab8734f175982f8e8ac287f028 (patch) | |
tree | a28c86ee97ddd4a18eebd7a39bc7afcc44c8837b /graphics/tiff | |
parent | 44d84f3cec5abc0aba91d00ee5a314127d2a7eb8 (diff) | |
download | pkgsrc-216dfcb8d1bd9bab8734f175982f8e8ac287f028.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 'graphics/tiff')
-rw-r--r-- | graphics/tiff/buildlink.mk | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/graphics/tiff/buildlink.mk b/graphics/tiff/buildlink.mk new file mode 100644 index 00000000000..414b8785eec --- /dev/null +++ b/graphics/tiff/buildlink.mk @@ -0,0 +1,61 @@ +# $NetBSD: buildlink.mk,v 1.1 2001/05/26 16:30:19 jlam Exp $ +# +# This Makefile fragment is included by packages that use libtiff. +# +# To use this Makefile fragment, simply: +# +# (1) Optionally define TIFF_REQD to the version of libtiff 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(TIFF_BUILDLINK_MK) +TIFF_BUILDLINK_MK= # defined + +TIFF_REQD?= 3.5.4 +DEPENDS+= tiff>=${TIFF_REQD}:../../graphics/tiff + +TIFF_HEADERS= ${LOCALBASE}/include/tiff.h +TIFF_HEADERS+= ${LOCALBASE}/include/tiffconf.h +TIFF_HEADERS+= ${LOCALBASE}/include/tiffio.h +TIFF_LIBS= ${LOCALBASE}/lib/libtiff.* + +BUILDLINK_INCDIR?= ${WRKDIR}/include +BUILDLINK_LIBDIR?= ${WRKDIR}/lib + +BUILDLINK_TARGETS+= link-tiff-headers +BUILDLINK_TARGETS+= link-tiff-libs + +# This target links the headers into ${BUILDLINK_INCDIR}, which should +# be searched first by the C preprocessor. +# +link-tiff-headers: + @${ECHO} "Linking tiff headers into ${BUILDLINK_INCDIR}." + @${MKDIR} ${BUILDLINK_INCDIR} + @for inc in ${TIFF_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-tiff-libs: + @${ECHO} "Linking tiff libraries into ${BUILDLINK_LIBDIR}." + @${MKDIR} ${BUILDLINK_LIBDIR} + @for lib in ${TIFF_LIBS}; do \ + dest=${BUILDLINK_LIBDIR}/`${BASENAME} $${lib}`; \ + if [ -f $${lib} ]; then \ + ${RM} -f $${dest}; \ + ${LN} -sf $${lib} $${dest}; \ + fi; \ + done + +.endif # TIFF_BUILDLINK_MK |