pkgsrc/audio/oss/buildlink3.mk
jlam 8d572feba3 Use the new BUILDLINK_TRANSFORM commands to more precisely state the
intended transformation: use "rm" to remove an option, "rmdir" to remove
all options containing a path starting with a given directory name, and
"rename" to rename options to something else.
2004-08-28 06:05:31 +00:00

48 lines
1.6 KiB
Makefile

# $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/+$//}