diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2006-08-22 08:11:40 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2006-08-22 08:11:40 +0000 |
commit | 7d8ca44ed20a4c418dd837e96887e266f1515e98 (patch) | |
tree | 071549b1b219d79aa6f32b1c68e6f2e061b99941 /games-emulation | |
parent | update HOMEPAGE and SRC_URI (bug #144598); touchups (diff) | |
download | gentoo-2-7d8ca44ed20a4c418dd837e96887e266f1515e98.tar.gz gentoo-2-7d8ca44ed20a4c418dd837e96887e266f1515e98.tar.bz2 gentoo-2-7d8ca44ed20a4c418dd837e96887e266f1515e98.zip |
avoid pre-stripping files; some touchups - patch submitted by Tristan Heaven via bug #137825
(Portage version: 2.1.1_pre5-r3)
Diffstat (limited to 'games-emulation')
3 files changed, 23 insertions, 20 deletions
diff --git a/games-emulation/mupen64-jttl_sound/ChangeLog b/games-emulation/mupen64-jttl_sound/ChangeLog index bb1c6a3bcd9c..e2c9037f40d7 100644 --- a/games-emulation/mupen64-jttl_sound/ChangeLog +++ b/games-emulation/mupen64-jttl_sound/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-emulation/mupen64-jttl_sound -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64-jttl_sound/ChangeLog,v 1.7 2005/09/26 17:48:22 wolf31o2 Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64-jttl_sound/ChangeLog,v 1.8 2006/08/22 08:11:40 mr_bones_ Exp $ + + 22 Aug 2006; Michael Sterrett <mr_bones_@gentoo.org> + mupen64-jttl_sound-1.2.ebuild: + avoid pre-stripping files; some touchups - patch submitted by Tristan + Heaven via bug #137825 26 Sep 2005; Chris Gianelloni <wolf31o2@gentoo.org> mupen64-jttl_sound-1.2.ebuild: diff --git a/games-emulation/mupen64-jttl_sound/files/digest-mupen64-jttl_sound-1.2 b/games-emulation/mupen64-jttl_sound/files/digest-mupen64-jttl_sound-1.2 index 53343000f96a..8f0866753b19 100644 --- a/games-emulation/mupen64-jttl_sound/files/digest-mupen64-jttl_sound-1.2 +++ b/games-emulation/mupen64-jttl_sound/files/digest-mupen64-jttl_sound-1.2 @@ -1 +1,3 @@ MD5 7bb104cf6ca94c0e761027eb9895fcbe jttl_sound-1.2.tar.bz2 10015 +RMD160 652e34d1223025f5f5f56c618f498dea525c1fed jttl_sound-1.2.tar.bz2 10015 +SHA256 bc113e193c32729b2b0f9e9b7b0059bad0504c2aa41335d68d9b0fe1f2e5d422 jttl_sound-1.2.tar.bz2 10015 diff --git a/games-emulation/mupen64-jttl_sound/mupen64-jttl_sound-1.2.ebuild b/games-emulation/mupen64-jttl_sound/mupen64-jttl_sound-1.2.ebuild index 8fb9d22fb9d9..f0b494652373 100644 --- a/games-emulation/mupen64-jttl_sound/mupen64-jttl_sound-1.2.ebuild +++ b/games-emulation/mupen64-jttl_sound/mupen64-jttl_sound-1.2.ebuild @@ -1,11 +1,9 @@ -# 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/games-emulation/mupen64-jttl_sound/mupen64-jttl_sound-1.2.ebuild,v 1.6 2005/09/26 17:48:22 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64-jttl_sound/mupen64-jttl_sound-1.2.ebuild,v 1.7 2006/08/22 08:11:40 mr_bones_ Exp $ inherit eutils libtool games -IUSE="sdl" - DESCRIPTION="A sound plugin for mupen64" SRC_URI="http://mupen64.emulation64.com/files/0.4/jttl_sound-1.2.tar.bz2" HOMEPAGE="http://mupen64.emulation64.com/" @@ -13,22 +11,23 @@ HOMEPAGE="http://mupen64.emulation64.com/" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" +IUSE="sdl" -RDEPEND="media-libs/libsdl +DEPEND="media-libs/libsdl media-libs/sdl-sound" -DEPEND="${RDEPEND} - >=sys-apps/sed-4" - -S="${WORKDIR}/jttl_sound-1.2" +S=${WORKDIR}/jttl_sound-1.2 src_unpack() { unpack ${A} - cd ${S} - epatch ${FILESDIR}/${PN}-gentoo-sdl.patch - sed -i -e "s:CFLAGS.*=\(.*\):CFLAGS=\1 ${CFLAGS}:" Makefile || \ - die "couldn't apply cflags" + cd "${S}" + epatch "${FILESDIR}"/${PN}-gentoo-sdl.patch + sed -i \ + -e '/strip/d' \ + -e "s:CFLAGS.*=\(.*\):CFLAGS=\1 ${CFLAGS}:" \ + Makefile \ + || die "sed failed" } src_compile() { @@ -37,13 +36,10 @@ src_compile() { src_install() { local dir=${GAMES_LIBDIR}/mupen64 - dodir ${dir} - exeinto ${dir}/plugins + exeinto "${dir}"/plugins doexe *.so - cp jttl_audio.conf ${D}/${dir}/plugins - + cp jttl_audio.conf "${D}/${dir}/plugins" || die "cp failed" dodoc README - prepgamesdirs } |