summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2012-02-19 14:20:45 +0000
committerAlexis Ballier <aballier@gentoo.org>2012-02-19 14:20:45 +0000
commit8129141054bd8dcc40641e6f0571805501e8bc35 (patch)
tree4288730726f147cf7e8fdbdf442e03d688b2c94e
parentalpha/ia64/sh/sparc stable wrt #394393 (diff)
downloadhistorical-8129141054bd8dcc40641e6f0571805501e8bc35.tar.gz
historical-8129141054bd8dcc40641e6f0571805501e8bc35.tar.bz2
historical-8129141054bd8dcc40641e6f0571805501e8bc35.zip
version bump
Package-Manager: portage-2.2.0_alpha87/cvs/Linux x86_64
-rw-r--r--media-libs/libshout/ChangeLog9
-rw-r--r--media-libs/libshout/libshout-2.3.0.ebuild32
2 files changed, 39 insertions, 2 deletions
diff --git a/media-libs/libshout/ChangeLog b/media-libs/libshout/ChangeLog
index 6f4332f3d078..c553c8851757 100644
--- a/media-libs/libshout/ChangeLog
+++ b/media-libs/libshout/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-libs/libshout
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libshout/ChangeLog,v 1.26 2007/03/31 13:50:03 aballier Exp $
+# Copyright 2002-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libshout/ChangeLog,v 1.27 2012/02/19 14:20:45 aballier Exp $
+
+*libshout-2.3.0 (19 Feb 2012)
+
+ 19 Feb 2012; Alexis Ballier <aballier@gentoo.org> +libshout-2.3.0.ebuild:
+ version bump
*libshout-2.2.2 (31 Mar 2007)
diff --git a/media-libs/libshout/libshout-2.3.0.ebuild b/media-libs/libshout/libshout-2.3.0.ebuild
new file mode 100644
index 000000000000..30dc6ea76a47
--- /dev/null
+++ b/media-libs/libshout/libshout-2.3.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libshout/libshout-2.3.0.ebuild,v 1.1 2012/02/19 14:20:45 aballier Exp $
+
+EAPI=4
+
+DESCRIPTION="library for connecting and sending data to icecast servers"
+HOMEPAGE="http://www.icecast.org/"
+SRC_URI="http://downloads.xiph.org/releases/libshout/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
+IUSE="speex theora"
+
+RDEPEND="media-libs/libogg
+ media-libs/libvorbis
+ theora? ( media-libs/libtheora )
+ speex? ( media-libs/speex )"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig"
+
+src_configure() {
+ econf $(use_enable theora)\
+ $(use_enable speex)
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "make install failed"
+ dodoc README examples/example.c
+ rm -rf "${D}"/usr/share/doc/libshout || die
+}