diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2004-02-16 09:51:47 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2004-02-16 09:51:47 +0000 |
commit | 2c96e0fdaaadebb10100f1f7d5e461bdacc08547 (patch) | |
tree | e29dca9c15e069f6c0a8bc49f09802d500ab3508 /audio/darkice/Makefile | |
parent | 5074fe769159f7494d3864db18fb2f707ddb206b (diff) | |
download | pkgsrc-2c96e0fdaaadebb10100f1f7d5e461bdacc08547.tar.gz |
bl3ify and upgrade darkice to 0.14.
This release adds ALSA support and support for downsampling streams from
stereo to mono when streaming in MP3 to an icecast 2 server. There is a
bugfix for conflicting symbols _X and _Y on Solaris, and a bugfix for a
segfault caused when saving an Ogg Vorbis stream to a file.
Diffstat (limited to 'audio/darkice/Makefile')
-rw-r--r-- | audio/darkice/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/audio/darkice/Makefile b/audio/darkice/Makefile index e60eb6858a8..1fee5c04b64 100644 --- a/audio/darkice/Makefile +++ b/audio/darkice/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2004/01/22 07:15:00 grant Exp $ +# $NetBSD: Makefile,v 1.3 2004/02/16 09:51:47 xtraeme Exp $ # -DISTNAME= darkice-0.13.2 +DISTNAME= darkice-0.14 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=darkice/} @@ -9,13 +9,14 @@ MAINTAINER= xtraeme@NetBSD.org HOMEPAGE= http://darkice.sourceforge.net/ COMMENT= IceCast, IceCast2 and ShoutCast live audio streamer -USE_BUILDLINK2= yes +USE_BUILDLINK3= yes GNU_CONFIGURE= yes USE_GNU_TOOLS+= make USE_PKGINSTALL= yes CONFIGURE_ARGS+= --with-vorbis-prefix=${BUILDLINK_PREFIX.libvorbis} CONFIGURE_ARGS+= --with-lame-prefix=${BUILDLINK_PREFIX.lame} +LIBS+= ${LIBOSSAUDIO} EGDIR= ${PREFIX}/share/examples/darkice HTMLDIR= ${PREFIX}/share/doc/html/darkice @@ -33,9 +34,9 @@ do-install: ${INSTALL_DATA} $$f ${HTMLDIR}; \ done -.include "../../audio/lame/buildlink2.mk" -.include "../../audio/libvorbis/buildlink2.mk" +.include "../../audio/lame/buildlink3.mk" +.include "../../audio/libvorbis/buildlink3.mk" -.include "../../mk/pthread.buildlink2.mk" -.include "../../mk/ossaudio.buildlink2.mk" +.include "../../mk/pthread.buildlink3.mk" +.include "../../mk/ossaudio.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |