openbsd-ports/audio/libao/Makefile
naddy 9263fb4321 Update Ogg Vorbis to 1.0rc2.
Adds channel coupling.
Miscellaneous changes to libao and vorbis-tools.
2001-08-20 21:53:56 +00:00

67 lines
1.4 KiB
Makefile

# $OpenBSD: Makefile,v 1.13 2001/08/20 21:53:56 naddy Exp $
COMMENT= "portable audio output library"
COMMENT-arts= "aRts module for portable audio output library"
COMMENT-esd= "ESounD module for portable audio output library"
FULLPKGNAME= libao-${VERSION}
FULLPKGNAME-arts= libao-arts-${VERSION}
FULLPKGNAME-esd= libao-esd-${VERSION}
VERSION= 0.8.0
DISTNAME= libao-${VERSION}
CATEGORIES= audio
NEED_VERSION= 1.435
HOMEPAGE= http://www.vorbis.com/
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${HOMEPAGE}files/rc2/unix/
FLAVORS= no_arts no_esd
FLAVOR?= no_arts
MULTI_PACKAGES=
.if !${FLAVOR:L:Mno_arts}
MULTI_PACKAGES+= -arts
.endif
.if !${FLAVOR:L:Mno_esd}
MULTI_PACKAGES+= -esd
.endif
SUBPACKAGE?=
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= ${CONFIGURE_SHARED} --enable-static
.if ${FLAVOR:L:Mno_arts}
CONFIGURE_ARGS+= --disable-arts
.endif
.if ${FLAVOR:L:Mno_esd}
CONFIGURE_ARGS+= --disable-esd
.endif
.if defined(PACKAGING)
. if ${SUBPACKAGE} == "-arts"
LIB_DEPENDS= ao.2::audio/libao \
artsc.0::x11/kde/libs2
. elif ${SUBPACKAGE} == "-esd"
LIB_DEPENDS= ao.2::audio/libao \
esd.2::audio/esound
. endif
.else
. if ${MULTI_PACKAGES:M-arts}
LIB_DEPENDS+= artsc.0::x11/kde/libs2
. endif
. if ${MULTI_PACKAGES:M-esd}
LIB_DEPENDS+= esd.2::audio/esound
. endif
.endif
.include <bsd.port.mk>