diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-10-27 21:46:18 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-10-27 21:46:18 +0000 |
commit | eb8781f7c03336e66afd0f22df3f07408ceb07bc (patch) | |
tree | daae90fdbb24b83e21ee13f75c494f6f3ac20779 /media-plugins/streamtuner-local | |
parent | Added pkgconfig dep for bug #153039. (diff) | |
download | gentoo-2-eb8781f7c03336e66afd0f22df3f07408ceb07bc.tar.gz gentoo-2-eb8781f7c03336e66afd0f22df3f07408ceb07bc.tar.bz2 gentoo-2-eb8781f7c03336e66afd0f22df3f07408ceb07bc.zip |
Fix quoting. Make dependency over libvorbis/libogg mandatory, thanks to Patrick Lauer for reporting in bug #153046.
(Portage version: 2.1.2_pre3-r9)
Diffstat (limited to 'media-plugins/streamtuner-local')
3 files changed, 16 insertions, 8 deletions
diff --git a/media-plugins/streamtuner-local/ChangeLog b/media-plugins/streamtuner-local/ChangeLog index 1f5465114c2c..e6f0d1fd376f 100644 --- a/media-plugins/streamtuner-local/ChangeLog +++ b/media-plugins/streamtuner-local/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-plugins/streamtuner-local -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/streamtuner-local/ChangeLog,v 1.14 2005/09/04 10:27:59 flameeyes Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/streamtuner-local/ChangeLog,v 1.15 2006/10/27 21:46:18 flameeyes Exp $ + + 27 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> + streamtuner-local-0.4.0.ebuild: + Fix quoting. Make dependency over libvorbis/libogg mandatory, thanks to + Patrick Lauer for reporting in bug #153046. 04 Sep 2005; Diego Pettenò <flameeyes@gentoo.org> streamtuner-local-0.4.0.ebuild: diff --git a/media-plugins/streamtuner-local/files/digest-streamtuner-local-0.4.0 b/media-plugins/streamtuner-local/files/digest-streamtuner-local-0.4.0 index cfdf0423624f..8db3a9cc4076 100644 --- a/media-plugins/streamtuner-local/files/digest-streamtuner-local-0.4.0 +++ b/media-plugins/streamtuner-local/files/digest-streamtuner-local-0.4.0 @@ -1 +1,3 @@ MD5 b400e40b6e4e0f603ea0d706dcf0f90a streamtuner-local-0.4.0.tar.gz 320955 +RMD160 fcdc9153b2443a5f2e7545436aaec90c6d39164a streamtuner-local-0.4.0.tar.gz 320955 +SHA256 37dc305a6295f7e90856fe63cd3d6a1a378a5e7921c48513e3090bafed06fde3 streamtuner-local-0.4.0.tar.gz 320955 diff --git a/media-plugins/streamtuner-local/streamtuner-local-0.4.0.ebuild b/media-plugins/streamtuner-local/streamtuner-local-0.4.0.ebuild index 2fce1ec638c3..49286e9644e3 100644 --- a/media-plugins/streamtuner-local/streamtuner-local-0.4.0.ebuild +++ b/media-plugins/streamtuner-local/streamtuner-local-0.4.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/streamtuner-local/streamtuner-local-0.4.0.ebuild,v 1.12 2005/09/04 10:27:59 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/streamtuner-local/streamtuner-local-0.4.0.ebuild,v 1.13 2006/10/27 21:46:18 flameeyes Exp $ inherit eutils @@ -15,15 +15,16 @@ IUSE="vorbis" DEPEND=">=net-misc/streamtuner-0.12.0 >=media-libs/libid3tag-0.15 - vorbis? ( >=media-libs/libvorbis-1.0 >=media-libs/libogg-1.1 )" + >=media-libs/libvorbis-1.0 + >=media-libs/libogg-1.1" src_unpack() { unpack ${A} - cd ${S} - epatch ${FILESDIR}/${PV}-gcc34.patch + cd "${S}" + epatch "${FILESDIR}/${PV}-gcc34.patch" } src_install() { - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die dodoc AUTHORS ChangeLog NEWS README } |