openbsd-ports/audio/sox/Makefile

44 lines
1.0 KiB
Makefile
Raw Normal View History

# $OpenBSD: Makefile,v 1.26 2004/07/31 14:18:14 naddy Exp $
1998-05-16 21:05:56 -04:00
COMMENT= "SOund eXchange - universal sound sample translator"
DISTNAME= sox-12.17.4
PKGNAME= ${DISTNAME}p1
1998-05-16 21:05:56 -04:00
CATEGORIES= audio
HOMEPAGE= http://sox.sourceforge.net/
2000-09-10 12:05:01 -04:00
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
1999-06-03 16:42:39 -04:00
# 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"
2000-03-07 00:00:49 -05:00
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"
2000-09-10 12:05:01 -04:00
FLAVORS= mp3 vorbis
2000-09-10 12:05:01 -04:00
FLAVOR?=
1998-05-16 21:05:56 -04:00
.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.2::audio/libmad mp3lame.0::audio/lame
.else
CONFIGURE_ARGS+= --disable-mad --disable-lame
.endif
NO_REGRESS= Yes
1998-05-16 21:05:56 -04:00
.include <bsd.port.mk>