diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2007-07-30 23:27:07 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2007-07-30 23:27:07 +0000 |
commit | 4bd3004fb077c5bd08299dc496220c276935e764 (patch) | |
tree | fb300c4f69d8fd709b1d13ab383e00d16e1a22ce /games-emulation | |
parent | Version bumped. (diff) | |
download | gentoo-2-4bd3004fb077c5bd08299dc496220c276935e764.tar.gz gentoo-2-4bd3004fb077c5bd08299dc496220c276935e764.tar.bz2 gentoo-2-4bd3004fb077c5bd08299dc496220c276935e764.zip |
old
(Portage version: 2.1.2.9)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/visualboyadvance/files/digest-visualboyadvance-1.7.2-r1 | 3 | ||||
-rw-r--r-- | games-emulation/visualboyadvance/visualboyadvance-1.7.2-r1.ebuild | 75 |
2 files changed, 0 insertions, 78 deletions
diff --git a/games-emulation/visualboyadvance/files/digest-visualboyadvance-1.7.2-r1 b/games-emulation/visualboyadvance/files/digest-visualboyadvance-1.7.2-r1 deleted file mode 100644 index ae894e56796f..000000000000 --- a/games-emulation/visualboyadvance/files/digest-visualboyadvance-1.7.2-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 cc02339e3fd8efd9f23121b0a2f81fd8 VisualBoyAdvance-src-1.7.2.tar.gz 1410762 -RMD160 44f94a4f270f2cda25879681c52892f6978caf99 VisualBoyAdvance-src-1.7.2.tar.gz 1410762 -SHA256 f4114f921a4fd4bf2ccfc68a46b9c5aa9c71cd94519fbe9ec0be992462e129b7 VisualBoyAdvance-src-1.7.2.tar.gz 1410762 diff --git a/games-emulation/visualboyadvance/visualboyadvance-1.7.2-r1.ebuild b/games-emulation/visualboyadvance/visualboyadvance-1.7.2-r1.ebuild deleted file mode 100644 index 359bb9274009..000000000000 --- a/games-emulation/visualboyadvance/visualboyadvance-1.7.2-r1.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/visualboyadvance/visualboyadvance-1.7.2-r1.ebuild,v 1.11 2006/12/11 22:27:52 nyhm Exp $ - -inherit eutils flag-o-matic games - -DESCRIPTION="gameboy, gameboy color, and gameboy advance emulator" -HOMEPAGE="http://vba.ngemu.com/" -SRC_URI="mirror://sourceforge/vba/VisualBoyAdvance-src-${PV}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="gtk mmx nls" - -RDEPEND="media-libs/libpng - media-libs/libsdl - gtk? ( - >=x11-libs/gtk+-2.4 - >=dev-cpp/gtkmm-2.4 - >=dev-cpp/libglademm-2.4 - ) - nls? ( virtual/libintl )" -DEPEND="${RDEPEND} - dev-util/pkgconfig - mmx? ( dev-lang/nasm ) - nls? ( sys-devel/gettext )" - -S=${WORKDIR}/VisualBoyAdvance-${PV} - -src_unpack() { - unpack ${A} - cd "${S}" - - sed -i \ - -e 's:$(localedir):/usr/share/locale:' \ - -e 's:$(datadir)/locale:/usr/share/locale:' \ - $(find . -name 'Makefile.in*') \ - || die "sed failed" - - cat >> src/i386/2xSaImmx.asm <<-EOF - %ifidn __OUTPUT_FORMAT__,elf - section .note.GNU-stack noalloc noexec nowrite progbits - %endif - EOF - - epatch \ - "${FILESDIR}"/${PV}-homedir.patch \ - "${FILESDIR}"/${PV}-gcc34.patch \ - "${FILESDIR}"/${PV}-gcc41.patch -} - -src_compile() { - # -O3 causes GCC to behave badly and hog memory, bug #64670. - replace-flags -O3 -O2 - - # Removed --enable-c-core as it *should* determine this based on arch - egamesconf \ - --disable-dependency-tracking \ - $(use_with mmx) \ - $(use_enable gtk gtk 2.4) \ - $(use_enable nls) \ - || die - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog NEWS README README-win.txt - if use gtk ; then - newicon src/gtk/images/vba-64.png ${PN}.png - make_desktop_entry gvba VisualBoyAdvance - fi - prepgamesdirs -} |