summaryrefslogtreecommitdiff
path: root/audio/oss/buildlink3.mk
blob: a3cc741996cd0493b6cc178ecfdb2dd4d9dd2e9b (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
44
45
46
47
48
# $NetBSD: buildlink3.mk,v 1.7 2004/08/28 06:05:31 jlam Exp $

BUILDLINK_DEPTH:=	${BUILDLINK_DEPTH}+
OSS_BUILDLINK3_MK:=	${OSS_BUILDLINK3_MK}+

.if !empty(BUILDLINK_DEPTH:M+)
BUILDLINK_DEPENDS+=	oss
.endif

BUILDLINK_PACKAGES:=	${BUILDLINK_PACKAGES:Noss}
BUILDLINK_PACKAGES+=	oss

.if !empty(OSS_BUILDLINK3_MK:M+)
BUILDLINK_DEPENDS.oss+=		oss-[0-9]*
BUILDLINK_PKGSRCDIR.oss?=	../../audio/oss
BUILDLINK_INCDIRS.oss=		include lib/oss/include

# If we are using audio/oss, then we don't need the NetBSD OSS
# compatibility library.
#
BUILDLINK_TRANSFORM+=	rm:-lossaudio

BUILDLINK_TARGETS+=	buildlink-oss-soundcard-h

LIBOSSAUDIO=	# empty
DEVOSSAUDIO=	/dev/dsp
DEVOSSSOUND=	${DEVOSSAUDIO}

# Many source files mistakenly include both <sys/soundcard.h> and
# <soundcard.h>, which causes errors since the definitions in the OSS
# sys/soundcard.h conflict with the definitions in the system soundcard.h.
# We fix this by making <sys/soundcard.h> and <soundcard.h> point to the
# same file and rely on multiple inclusion protection to prevent conflicts.
#
.PHONY: buildlink-oss-soundcard-h
buildlink-oss-soundcard-h:
	${_PKG_SILENT}${_PKG_DEBUG}					\
	soundcard_h=${BUILDLINK_DIR}/include/soundcard.h;		\
	sys_soundcard_h=${BUILDLINK_PREFIX.oss}/lib/oss/include/sys/soundcard.h; \
	if [ ! -f $${soundcard_h} -a -f $${sys_soundcard_h} ]; then	\
		${ECHO_BUILDLINK_MSG}					\
			"Linking $${sys_soundcard_h} to $${soundcard_h}."; \
		${MKDIR} `${DIRNAME} $${soundcard_h}`;			\
		${LN} -s $${sys_soundcard_h} $${soundcard_h};		\
        fi
.endif	# OSS_BUILDLINK3_MK

BUILDLINK_DEPTH:=	${BUILDLINK_DEPTH:S/+$//}