diff options
author | 2011-12-13 16:28:27 +0000 | |
---|---|---|
committer | 2011-12-13 16:28:27 +0000 | |
commit | a0cfc1a4389e4e38f23258db5cdfb9163a3c5737 (patch) | |
tree | 4aedf4fa5e911893fd49d4aaec93652d131e4511 /media-sound/darkice | |
parent | Stable for AMD64, wrt bug #393265 (diff) | |
download | gentoo-2-a0cfc1a4389e4e38f23258db5cdfb9163a3c5737.tar.gz gentoo-2-a0cfc1a4389e4e38f23258db5cdfb9163a3c5737.tar.bz2 gentoo-2-a0cfc1a4389e4e38f23258db5cdfb9163a3c5737.zip |
Version bump, bug 394165
(Portage version: 2.1.10.11/cvs/Linux i686)
Diffstat (limited to 'media-sound/darkice')
-rw-r--r-- | media-sound/darkice/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/darkice/darkice-1.1.ebuild | 54 |
2 files changed, 61 insertions, 2 deletions
diff --git a/media-sound/darkice/ChangeLog b/media-sound/darkice/ChangeLog index c8c2d0f86ca4..2377f69e4070 100644 --- a/media-sound/darkice/ChangeLog +++ b/media-sound/darkice/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/darkice -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/darkice/ChangeLog,v 1.56 2010/07/29 23:37:18 ssuominen Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/darkice/ChangeLog,v 1.57 2011/12/13 16:28:27 beandog Exp $ + +*darkice-1.1 (13 Dec 2011) + + 13 Dec 2011; Steve Dibb <beandog@gentoo.org> +darkice-1.1.ebuild: + Version bump, bug 394165 *darkice-1.0 (29 Jul 2010) diff --git a/media-sound/darkice/darkice-1.1.ebuild b/media-sound/darkice/darkice-1.1.ebuild new file mode 100644 index 000000000000..a7f998665ebc --- /dev/null +++ b/media-sound/darkice/darkice-1.1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/darkice/darkice-1.1.ebuild,v 1.1 2011/12/13 16:28:27 beandog Exp $ + +EAPI=2 +inherit eutils + +DESCRIPTION="A live audio streamer" +HOMEPAGE="http://code.google.com/p/darkice/" +SRC_URI="http://darkice.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86" +IUSE="aac alsa jack libsamplerate mp3 twolame vorbis" + +RDEPEND="aac? ( media-libs/faac ) + alsa? ( media-libs/alsa-lib ) + jack? ( media-sound/jack-audio-connection-kit ) + mp3? ( media-sound/lame ) + twolame? ( media-sound/twolame ) + vorbis? ( media-libs/libvorbis ) + libsamplerate? ( media-libs/libsamplerate ) + !mp3? ( !vorbis? ( !aac? ( !twolame? ( media-sound/lame ) ) ) )" +DEPEND="${RDEPEND}" + +#src_prepare() { +# epatch "${FILESDIR}"/${P}-gcc44.patch +#} + +src_configure() { + local myconf + + if ! use mp3 && ! use vorbis && ! use aac && ! use twolame; then + myconf="--with-lame" + fi + + econf \ + --disable-dependency-tracking \ + $(use_with mp3 lame) \ + $(use_with vorbis) \ + $(use_with aac faac) \ + --without-aacplus \ + $(use_with twolame) \ + $(use_with alsa) \ + $(use_with jack) \ + $(use_with libsamplerate samplerate) \ + ${myconf} +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog FAQ NEWS README TODO +} |