summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2006-10-27 21:46:18 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2006-10-27 21:46:18 +0000
commiteb8781f7c03336e66afd0f22df3f07408ceb07bc (patch)
treedaae90fdbb24b83e21ee13f75c494f6f3ac20779 /media-plugins/streamtuner-local/streamtuner-local-0.4.0.ebuild
parentAdded pkgconfig dep for bug #153039. (diff)
downloadgentoo-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/streamtuner-local-0.4.0.ebuild')
-rw-r--r--media-plugins/streamtuner-local/streamtuner-local-0.4.0.ebuild13
1 files changed, 7 insertions, 6 deletions
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
}