f708b4a252
From Moritz Grimm <gtgbr@gmx.net> (MAINTAINER)
59 lines
1.4 KiB
Makefile
59 lines
1.4 KiB
Makefile
# $OpenBSD: Makefile,v 1.6 2005/05/21 13:46:44 alek Exp $
|
|
|
|
COMMENT= "icecast source for streaming MP3"
|
|
|
|
DISTNAME= ices-0.4
|
|
CATEGORIES= net audio
|
|
|
|
HOMEPAGE= http://www.icecast.org/
|
|
|
|
MAINTAINER= Moritz Grimm <gtgbr@gmx.net>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c m ogg perl pthread util vorbis vorbisfile z
|
|
|
|
MASTER_SITES= http://downloads.xiph.org/releases/ices/
|
|
|
|
AUTOCONF_VERSION=2.59
|
|
CONFIGURE_STYLE=gnu autoconf
|
|
CONFIGURE_ARGS= --with-docdir=${LOCALBASE}/share/doc/ices \
|
|
--with-moddir=${LOCALBASE}/share/examples/ices \
|
|
--with-lame=${LOCALBASE} --with-vorbis=${LOCALBASE} \
|
|
--with-flac=${LOCALBASE}
|
|
|
|
MODULES= converters/libiconv
|
|
LIB_DEPENDS= mp3lame.0:lame-*:audio/lame,no_x11 \
|
|
shout.3::net/libshout \
|
|
FLAC.5::audio/flac \
|
|
xml2.7::textproc/libxml
|
|
|
|
FLAVORS= python mp4
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Mpython}
|
|
PYTHON_VER= 2.3
|
|
CONFIGURE_ARGS+=--with-python=${LOCALBASE}/bin/python${PYTHON_VER}
|
|
LIB_DEPENDS+= python${PYTHON_VER}.0.0:python-${PYTHON_VER}*:lang/python/${PYTHON_VER}
|
|
.else
|
|
CONFIGURE_ARGS+=--without-python
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Mmp4}
|
|
CONFIGURE_ARGS+=--with-faad=${LOCALBASE}
|
|
LIB_DEPENDS+= faad,mp4v2::audio/faad
|
|
.else
|
|
CONFIGURE_ARGS+=--without-faad
|
|
.endif
|
|
|
|
SEPARATE_BUILD= simple
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKINST}/${SYSCONFDIR}/ices.conf.dist \
|
|
${PREFIX}/share/examples/ices/
|
|
|
|
.include <bsd.port.mk>
|