diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-06-22 16:14:17 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-06-22 16:14:17 +0000 |
commit | 8b094bef33ea21358522d9d6ad355ffa5a674932 (patch) | |
tree | f93e9fa600a2bb96ffd32388db4d6f407cd0ed92 | |
parent | Marking inkscape-0.48.3.1 ppc64 for bug 417089 (diff) | |
download | historical-8b094bef33ea21358522d9d6ad355ffa5a674932.tar.gz historical-8b094bef33ea21358522d9d6ad355ffa5a674932.tar.bz2 historical-8b094bef33ea21358522d9d6ad355ffa5a674932.zip |
version bump
Package-Manager: portage-2.2.0_alpha110/cvs/Linux x86_64
-rw-r--r-- | media-libs/libshout/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libshout/libshout-2.3.1.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/media-libs/libshout/ChangeLog b/media-libs/libshout/ChangeLog index 9ef5f1b743f7..ea8fbdb04d56 100644 --- a/media-libs/libshout/ChangeLog +++ b/media-libs/libshout/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libshout # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libshout/ChangeLog,v 1.35 2012/06/07 22:21:11 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libshout/ChangeLog,v 1.36 2012/06/22 16:14:17 aballier Exp $ + +*libshout-2.3.1 (22 Jun 2012) + + 22 Jun 2012; Alexis Ballier <aballier@gentoo.org> +libshout-2.3.1.ebuild: + version bump 07 Jun 2012; Brent Baude <ranger@gentoo.org> libshout-2.3.0.ebuild: Marking libshout-2.3.0 ppc for bug 419097 diff --git a/media-libs/libshout/libshout-2.3.1.ebuild b/media-libs/libshout/libshout-2.3.1.ebuild new file mode 100644 index 000000000000..31e22ef3cc3d --- /dev/null +++ b/media-libs/libshout/libshout-2.3.1.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.1.ebuild,v 1.1 2012/06/22 16:14:17 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} + virtual/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 +} |