diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-01-13 18:49:03 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-01-13 18:49:03 +0000 |
commit | 47878803772072b5ee14fa07824382378325009a (patch) | |
tree | aa7b50bea9ae83f26404fb6fd162099a56e13ba1 /media-sound | |
parent | Masked qca-2.0 and dependencies for further testing, bug #129536 (diff) | |
download | gentoo-2-47878803772072b5ee14fa07824382378325009a.tar.gz gentoo-2-47878803772072b5ee14fa07824382378325009a.tar.bz2 gentoo-2-47878803772072b5ee14fa07824382378325009a.zip |
add missing pkconfig dep, bug #205665
(Portage version: 2.1.4)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/ezstream/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/ezstream/ezstream-0.5.3.ebuild | 10 |
2 files changed, 11 insertions, 6 deletions
diff --git a/media-sound/ezstream/ChangeLog b/media-sound/ezstream/ChangeLog index 5ccf8c9a1a50..ff18f6967214 100644 --- a/media-sound/ezstream/ChangeLog +++ b/media-sound/ezstream/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/ezstream -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ezstream/ChangeLog,v 1.7 2007/12/04 18:04:46 drac Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ezstream/ChangeLog,v 1.8 2008/01/13 18:49:03 aballier Exp $ + + 13 Jan 2008; Alexis Ballier <aballier@gentoo.org> ezstream-0.5.3.ebuild: + add missing pkconfig dep, bug #205665 *ezstream-0.5.3 (04 Dec 2007) diff --git a/media-sound/ezstream/ezstream-0.5.3.ebuild b/media-sound/ezstream/ezstream-0.5.3.ebuild index 5c9e85b6097b..af1bf41d55d7 100644 --- a/media-sound/ezstream/ezstream-0.5.3.ebuild +++ b/media-sound/ezstream/ezstream-0.5.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ezstream/ezstream-0.5.3.ebuild,v 1.1 2007/12/04 18:04:46 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/ezstream/ezstream-0.5.3.ebuild,v 1.2 2008/01/13 18:49:03 aballier Exp $ DESCRIPTION="Enables you to stream mp3 or vorbis files to an icecast server without reencoding" HOMEPAGE="http://www.icecast.org/ezstream.php" @@ -11,14 +11,16 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="taglib" -DEPEND="media-libs/libvorbis +COMMON_DEPEND="media-libs/libvorbis media-libs/libogg >=media-libs/libshout-2.2 media-libs/libtheora dev-libs/libxml2 taglib? ( media-libs/taglib )" -RDEPEND="${DEPEND} +RDEPEND="${COMMON_DEPEND} net-misc/icecast" +DEPEND="${COMMON_DEPEND} + dev-util/pkgconfig" src_compile() { econf --enable-examplesdir="/usr/share/doc/${PF}/examples" \ |