diff options
Diffstat (limited to 'audio/icecast/Makefile')
-rw-r--r-- | audio/icecast/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/audio/icecast/Makefile b/audio/icecast/Makefile new file mode 100644 index 00000000000..34feeb72187 --- /dev/null +++ b/audio/icecast/Makefile @@ -0,0 +1,25 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/11/21 06:02:28 hubertf Exp $ +# + +DISTNAME= icecast-1.3.7 +CATEGORIES= audio +MASTER_SITES= http://www.icecast.org/releases/ + +MAINTAINER= hubertf@netbsd.org +HOMEPAGE= http://www.icecast.org/ + +DEPENDS+= unproven-pthreads>=0.17:../../devel/unproven-pthreads +DEPENDS+= readline-4.*:../../devel/readline + +GNU_CONFIGURE= YES +CONFIGURE_ARGS+=--with-readline \ + --with-libwrap \ + --with-python \ + --with-python-includes=${LOCALBASE}/include \ + --with-python-libraries=${LOCALBASE}/lib +R= ${LOCALBASE}/include/readline +P= ${LOCALBASE}/pthreads +CONFIGURE_ENV+= CC='$P/bin/pgcc -I$P/include -I$R -L$P/lib' \ + CXX='$P/bin/pg++ -I$P/include -I$R -L$P/lib' + +.include "../../mk/bsd.pkg.mk" |