diff options
-rw-r--r-- | databases/gdbm/buildlink.mk | 59 | ||||
-rw-r--r-- | devel/gmp/buildlink.mk | 59 |
2 files changed, 118 insertions, 0 deletions
diff --git a/databases/gdbm/buildlink.mk b/databases/gdbm/buildlink.mk new file mode 100644 index 00000000000..0500b558898 --- /dev/null +++ b/databases/gdbm/buildlink.mk @@ -0,0 +1,59 @@ +# $NetBSD: buildlink.mk,v 1.1 2001/05/28 05:38:04 jlam Exp $ +# +# This Makefile fragment is included by packages that use gdbm. +# +# To use this Makefile fragment, simply: +# +# (1) Optionally define GDBM_REQD to the version of gdbm 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(GDBM_BUILDLINK_MK) +GDBM_BUILDLINK_MK= # defined + +GDBM_REQD?= 1.7.3 +DEPENDS+= gdbm>=${GDBM_REQD}:../../databases/gdbm + +GDBM_HEADERS= ${LOCALBASE}/include/gdbm.h +GDBM_LIBS= ${LOCALBASE}/lib/libgdbm.* + +BUILDLINK_INCDIR?= ${WRKDIR}/include +BUILDLINK_LIBDIR?= ${WRKDIR}/lib + +BUILDLINK_TARGETS+= link-gdbm-headers +BUILDLINK_TARGETS+= link-gdbm-libs + +# This target links the headers into ${BUILDLINK_INCDIR}, which should +# be searched first by the C preprocessor. +# +link-gdbm-headers: + @${ECHO} "Linking gdbm headers into ${BUILDLINK_INCDIR}." + @${MKDIR} ${BUILDLINK_INCDIR} + @for inc in ${GDBM_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-gdbm-libs: + @${ECHO} "Linking gdbm libraries into ${BUILDLINK_LIBDIR}." + @${MKDIR} ${BUILDLINK_LIBDIR} + @for lib in ${GDBM_LIBS}; do \ + dest=${BUILDLINK_LIBDIR}/`${BASENAME} $${lib}`; \ + if [ -f $${lib} ]; then \ + ${RM} -f $${dest}; \ + ${LN} -sf $${lib} $${dest}; \ + fi; \ + done + +.endif # GDBM_BUILDLINK_MK diff --git a/devel/gmp/buildlink.mk b/devel/gmp/buildlink.mk new file mode 100644 index 00000000000..83a7a0085cf --- /dev/null +++ b/devel/gmp/buildlink.mk @@ -0,0 +1,59 @@ +# $NetBSD: buildlink.mk,v 1.1 2001/05/28 05:47:28 jlam Exp $ +# +# This Makefile fragment is included by packages that use gmp. +# +# To use this Makefile fragment, simply: +# +# (1) Optionally define GMP_REQD to the version of gmp 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(GMP_BUILDLINK_MK) +GMP_BUILDLINK_MK= # defined + +GMP_REQD?= 3.0 +DEPENDS+= gmp>=${GMP_REQD}:../../devel/gmp + +GMP_HEADERS= ${LOCALBASE}/include/gmp.h +GMP_LIBS= ${LOCALBASE}/lib/libgmp.* + +BUILDLINK_INCDIR?= ${WRKDIR}/include +BUILDLINK_LIBDIR?= ${WRKDIR}/lib + +BUILDLINK_TARGETS+= link-gmp-headers +BUILDLINK_TARGETS+= link-gmp-libs + +# This target links the headers into ${BUILDLINK_INCDIR}, which should +# be searched first by the C preprocessor. +# +link-gmp-headers: + @${ECHO} "Linking gmp headers into ${BUILDLINK_INCDIR}." + @${MKDIR} ${BUILDLINK_INCDIR} + @for inc in ${GMP_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-gmp-libs: + @${ECHO} "Linking gmp libraries into ${BUILDLINK_LIBDIR}." + @${MKDIR} ${BUILDLINK_LIBDIR} + @for lib in ${GMP_LIBS}; do \ + dest=${BUILDLINK_LIBDIR}/`${BASENAME} $${lib}`; \ + if [ -f $${lib} ]; then \ + ${RM} -f $${dest}; \ + ${LN} -sf $${lib} $${dest}; \ + fi; \ + done + +.endif # GMP_BUILDLINK_MK |