89578d2faf
+ add user _icecast (home directory in /var/icecast) + enable chroot by default + populate chroot with all the necessary files ok okan@ sthen@ ajacoutot@
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.37 2008/11/18 21:22:02 pea Exp $
|
|
|
|
COMMENT= server for streaming various media formats
|
|
|
|
DISTNAME= icecast-2.3.2
|
|
CATEGORIES= net audio
|
|
|
|
HOMEPAGE= http://www.icecast.org/
|
|
|
|
MAINTAINER= Moritz Grimm <mdgrimm@gmx.net>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c crypto idn m ogg pthread ssl xml2 z
|
|
|
|
MASTER_SITES= http://downloads.xiph.org/releases/icecast/
|
|
|
|
MODULES= devel/gettext
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --localstatedir=/var --with-theora=${LOCALBASE}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
USE_LIBTOOL= Yes
|
|
LIB_DEPENDS= curl.>=2::net/curl \
|
|
xslt.>=3::textproc/libxslt \
|
|
vorbis.>=3::audio/libvorbis \
|
|
speex.>=3::audio/speex \
|
|
theora.>=1::multimedia/libtheora
|
|
|
|
SEPARATE_BUILD= simple
|
|
|
|
post-install:
|
|
${SUBST_CMD} -c ${FILESDIR}/README.OpenBSD ${WRKBUILD}/README.OpenBSD
|
|
${INSTALL_DATA} ${WRKBUILD}/README.OpenBSD \
|
|
${PREFIX}/share/doc/icecast/README.OpenBSD
|
|
|
|
.include <bsd.port.mk>
|