openbsd-ports/audio/sox/Makefile
pvalchev a0c356d1c5 mark bad/incomplete/missing licenses as such.
most work by nikolay, comments from naddy

the ports tree is now open for commits
2003-09-22 22:53:36 +00:00

43 lines
1018 B
Makefile

# $OpenBSD: Makefile,v 1.24 2003/09/22 22:53:36 pvalchev Exp $
COMMENT= "SOund eXchange - universal sound sample translator"
DISTNAME= sox-12.17.4
CATEGORIES= audio
HOMEPAGE= http://sox.sourceforge.net/
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
# gsm library has bad license
PERMIT_PACKAGE_CDROM= "no redistribution"
PERMIT_PACKAGE_FTP= "no redistribution"
PERMIT_DISTFILES_CDROM= "no redistribution"
PERMIT_DISTFILES_FTP= "no redistribution"
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=sox/}
CONFIGURE_STYLE=autoconf
AUTOCONF_VERSION=2.54
CONFIGURE_ARGS= --disable-sun-audio
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
FLAVORS= mp3 vorbis
FLAVOR?=
.if ${FLAVOR:L:Mvorbis}
LIB_DEPENDS+= vorbis.1,vorbisenc.1,vorbisfile.2::audio/libvorbis
.else
CONFIGURE_ARGS+= --disable-ogg-vorbis
.endif
.if ${FLAVOR:L:Mmp3}
LIB_DEPENDS+= mad.1::audio/mad mp3lame.0::audio/lame
.else
CONFIGURE_ARGS+= --disable-mad --disable-lame
.endif
NO_REGRESS= Yes
.include <bsd.port.mk>