summaryrefslogtreecommitdiff
path: root/audio/esound/buildlink.mk
blob: 5753a939c647366e562f9de05c3c93cf9fba677d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# $NetBSD: buildlink.mk,v 1.1 2001/06/16 19:23:18 jlam Exp $
#
# This Makefile fragment is included by packages that use esound.
#
# To use this Makefile fragment, simply:
#
# (1) Optionally define ESOUND_REQD to the version of esound 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(ESOUND_BUILDLINK_MK)
ESOUND_BUILDLINK_MK=	# defined

ESOUND_REQD?=	0.2.18
DEPENDS+=	esound>=${ESOUND_REQD}:../../audio/esound

BUILDLINK_PREFIX.esound=	${LOCALBASE}
BUILDLINK_FILES.esound=		include/esd.h
BUILDLINK_FILES.esound+=	lib/libesd.*

.include "../../audio/libaudiofile/buildlink.mk"

BUILDLINK_TARGETS.esound=	esound-buildlink
BUILDLINK_TARGETS.esound+=	esound-buildlink-config-wrapper
BUILDLINK_TARGETS+=		${BUILDLINK_TARGETS.esound}

BUILDLINK_CONFIG.esound=		${LOCALBASE}/bin/esd-config
BUILDLINK_CONFIG_WRAPPER.esound=	${BUILDLINK_DIR}/bin/esd-config

.if defined(USE_CONFIG_WRAPPER) && defined(GNU_CONFIGURE)
CONFIGURE_ENV+=		ESD_CONFIG="${BUILDLINK_CONFIG_WRAPPER.esound}"
.endif

pre-configure: ${BUILDLINK_TARGETS.esound}
esound-buildlink: _BUILDLINK_USE
esound-buildlink-config-wrapper: _BUILDLINK_CONFIG_WRAPPER_USE

.include "../../mk/bsd.buildlink.mk"

.endif	# ESOUND_BUILDLINK_MK