From 9e5f4f0dc657e2590d5f006766cc6f16ec76ff03 Mon Sep 17 00:00:00 2001 From: darkeye Date: Mon, 7 Jul 2008 14:40:45 +0000 Subject: [PATCH] for 0.19 release, re #39 --- darkice/trunk/ChangeLog | 2 +- darkice/trunk/NEWS | 4 ++ darkice/trunk/configure.in | 2 +- darkice/trunk/etc/ebuild/darkice-0.19.ebuild | 43 ++++++++++++++++++++ 4 files changed, 49 insertions(+), 2 deletions(-) create mode 100644 darkice/trunk/etc/ebuild/darkice-0.19.ebuild diff --git a/darkice/trunk/ChangeLog b/darkice/trunk/ChangeLog index 2c6ccd8..0063cb9 100644 --- a/darkice/trunk/ChangeLog +++ b/darkice/trunk/ChangeLog @@ -1,4 +1,4 @@ -Darkice 0.19 to be released +07-07-2008 Darkice 0.19 released o added mount point option for Darwin Streaming Server thanks to Pierre Souchay diff --git a/darkice/trunk/NEWS b/darkice/trunk/NEWS index 0bd8b32..1b9ee3f 100644 --- a/darkice/trunk/NEWS +++ b/darkice/trunk/NEWS @@ -1,3 +1,7 @@ +07-07-2008, Akos Maroy, darkeye@tyrell.hu + + Released version 0.19. See ChangeLog for changes. + 26-04-2007, Akos Maroy, darkeye@tyrell.hu Released version 0.18.1. See ChangeLog for changes. diff --git a/darkice/trunk/configure.in b/darkice/trunk/configure.in index 4856e57..78f78c4 100644 --- a/darkice/trunk/configure.in +++ b/darkice/trunk/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(darkice, 0.18.1) +AC_INIT(darkice, 0.19) AC_CONFIG_SRCDIR(src/DarkIce.cpp) AM_CONFIG_HEADER(src/config.h) diff --git a/darkice/trunk/etc/ebuild/darkice-0.19.ebuild b/darkice/trunk/etc/ebuild/darkice-0.19.ebuild new file mode 100644 index 0000000..04500eb --- /dev/null +++ b/darkice/trunk/etc/ebuild/darkice-0.19.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header$ + +DESCRIPTION="IceCast live streamer, delivering ogg and mp3 streams simultaneously to multiple hosts." +HOMEPAGE="http://darkice.tyrell.hu/" +SRC_URI="http://darkice.tyrell.hu/dist/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86" +IUSE="alsa encode jack vorbis" + +DEPEND="encode? ( >=media-sound/lame-1.89 ) + vorbis? ( >=media-libs/libvorbis-1.0 ) + alsa? ( >=media-libs/alsa-lib-1.0.0 ) + jack? ( media-sound/jack-audio-connection-kit )" + +src_compile() { + if ! use encode && ! use vorbis + then + + eerror "You need support for mp3 or Ogg Vorbis enconding for this" + eerror "package. Please merge again with at least one of the " + eerror "\`encode' and \`vorbis' USE flags enabled:" + eerror + eerror " # USE=\"encode\" emerge darkice" + eerror " # USE=\"vorbis\" emerge darkice" + die "Won't build without support for lame nor vorbis" + fi + + econf $(use_with alsa) \ + $(use_with encode lame) \ + $(use_with jack) \ + $(use_with vorbis) || die "configuration failed" + emake || die "Compilation failed" +} + +src_install() { + einstall darkicedocdir=${D}/usr/share/doc/${PF} || die "make install failed" + + dodoc AUTHORS ChangeLog NEWS README TODO +}