diff options
author | jlam <jlam> | 2001-07-24 11:17:46 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-07-24 11:17:46 +0000 |
commit | 3ee06e831133e54372de78e8f95d835b5d3e15f4 (patch) | |
tree | 5b1f89171ced5f07a27cb608d2b9f1c9b3692335 /devel/libusb | |
parent | 9fe5fd99102e8cc21d83c4491ae7738c623c2ce0 (diff) | |
download | pkgsrc-3ee06e831133e54372de78e8f95d835b5d3e15f4.tar.gz |
Mark as USE_BUILDLINK_ONLY and add a buildlink.mk file for use by other
package Makefiles.
Diffstat (limited to 'devel/libusb')
-rw-r--r-- | devel/libusb/Makefile | 7 | ||||
-rw-r--r-- | devel/libusb/buildlink.mk | 46 |
2 files changed, 50 insertions, 3 deletions
diff --git a/devel/libusb/Makefile b/devel/libusb/Makefile index 47086db9f70..038a7ca7d83 100644 --- a/devel/libusb/Makefile +++ b/devel/libusb/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2001/03/28 10:11:41 drochner Exp $ +# $NetBSD: Makefile,v 1.2 2001/07/24 11:17:46 jlam Exp $ # DISTNAME= libusb-0.1.3b @@ -9,8 +9,9 @@ MAINTAINER= drochner@netbsd.org HOMEPAGE= http://libusb.sourceforge.net/ COMMENT= USB access library -GNU_CONFIGURE= YES -USE_LIBTOOL= yes +USE_BUILDLINK_ONLY= YES +GNU_CONFIGURE= YES +USE_LIBTOOL= YES LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig .include "../../mk/bsd.pkg.mk" diff --git a/devel/libusb/buildlink.mk b/devel/libusb/buildlink.mk new file mode 100644 index 00000000000..a78dfcf77a4 --- /dev/null +++ b/devel/libusb/buildlink.mk @@ -0,0 +1,46 @@ +# $NetBSD: buildlink.mk,v 1.1 2001/07/24 11:17:46 jlam Exp $ +# +# This Makefile fragment is included by packages that use libusb. +# +# To use this Makefile fragment, simply: +# +# (1) Optionally define BUILDLINK_DEPENDS.libusb to the dependency pattern +# for the version of libusb 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(LIBUSB_BUILDLINK_MK) +LIBUSB_BUILDLINK_MK= # defined + +.include "../../mk/bsd.buildlink.mk" + +BUILDLINK_DEPENDS.libusb?= libusb-* +DEPENDS+= ${BUILDLINK_DEPENDS.libusb}:../../devel/libusb + +EVAL_PREFIX+= BUILDLINK_PREFIX.libusb=libusb +BUILDLINK_FILES.libusb= include/usb.h +BUILDLINK_FILES.libusb+= lib/libusb-*.* +BUILDLINK_FILES.libusb+= lib/libusb.* + +BUILDLINK_TARGETS.libusb= libusb-buildlink +BUILDLINK_TARGETS.libusb+= libusb-buildlink-config-wrapper +BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.libusb} + +BUILDLINK_CONFIG.libusb= \ + ${BUILDLINK_PREFIX.libusb}/bin/libusb-config +BUILDLINK_CONFIG_WRAPPER.libusb= \ + ${BUILDLINK_DIR}/bin/libusb-config + +.if defined(USE_CONFIG_WRAPPER) && defined(GNU_CONFIGURE) +LIBUSB_CONFIG?= ${BUILDLINK_CONFIG_WRAPPER.libusb} +CONFIGURE_ENV+= LIBUSB_CONFIG="${LIBUSB_CONFIG}" +.endif + +pre-configure: ${BUILDLINK_TARGETS.libusb} +libusb-buildlink: _BUILDLINK_USE +libusb-buildlink-config-wrapper: _BUILDLINK_CONFIG_WRAPPER_USE + +.endif # LIBUSB_BUILDLINK_MK |