diff options
author | Jon Hood <squinky86@gentoo.org> | 2004-08-27 18:11:15 +0000 |
---|---|---|
committer | Jon Hood <squinky86@gentoo.org> | 2004-08-27 18:11:15 +0000 |
commit | 55ea950a5f5ff6b21341233e5e34412008972241 (patch) | |
tree | 6f1cce3064025a53efb884835bc889e1417dad00 /media-plugins/streamtuner-local/streamtuner-local-0.4.0.ebuild | |
parent | x86 stable (Manifest recommit) (diff) | |
download | gentoo-2-55ea950a5f5ff6b21341233e5e34412008972241.tar.gz gentoo-2-55ea950a5f5ff6b21341233e5e34412008972241.tar.bz2 gentoo-2-55ea950a5f5ff6b21341233e5e34412008972241.zip |
gcc-3.4 patching
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.ebuild | 12 |
1 files changed, 10 insertions, 2 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 680b5edbba6a..0d0b616409e1 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,8 @@ # Copyright 1999-2004 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.7 2004/06/24 23:35:07 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/streamtuner-local/streamtuner-local-0.4.0.ebuild,v 1.8 2004/08/27 18:11:15 squinky86 Exp $ + +inherit eutils DESCRIPTION="A plugin for Streamtuner to browse and play local files." SRC_URI="http://savannah.nongnu.org/download/streamtuner/${P}.tar.gz" @@ -15,7 +17,13 @@ DEPEND=">=net-misc/streamtuner-0.12.0 >=media-libs/libid3tag-0.15 oggvorbis? ( >=media-libs/libvorbis-1.0 >=media-libs/libogg-1.1 )" -src_install () { +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${PV}-gcc34.patch +} + +src_install() { make DESTDIR=${D} install || die dodoc AUTHORS COPYING ChangeLog NEWS README INSTALL } |