summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2013-01-25 05:02:01 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2013-01-25 05:02:01 +0000
commit253d8462e923973e7724051b1287f98be54b06c5 (patch)
tree2d0a691aa660a20bc0ae842e871537dcf6f9a753 /games-emulation/visualboyadvance
parentold (diff)
downloadgentoo-2-253d8462e923973e7724051b1287f98be54b06c5.tar.gz
gentoo-2-253d8462e923973e7724051b1287f98be54b06c5.tar.bz2
gentoo-2-253d8462e923973e7724051b1287f98be54b06c5.zip
old
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-emulation/visualboyadvance')
-rw-r--r--games-emulation/visualboyadvance/ChangeLog8
-rw-r--r--games-emulation/visualboyadvance/visualboyadvance-1.7.2-r2.ebuild78
2 files changed, 6 insertions, 80 deletions
diff --git a/games-emulation/visualboyadvance/ChangeLog b/games-emulation/visualboyadvance/ChangeLog
index 25d09cbf2b0d..eedd4d2cd74b 100644
--- a/games-emulation/visualboyadvance/ChangeLog
+++ b/games-emulation/visualboyadvance/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-emulation/visualboyadvance
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/visualboyadvance/ChangeLog,v 1.47 2012/10/16 03:00:39 naota Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/visualboyadvance/ChangeLog,v 1.48 2013/01/25 05:01:59 mr_bones_ Exp $
+
+ 25 Jan 2013; Michael Sterrett <mr_bones_@gentoo.org>
+ -visualboyadvance-1.7.2-r2.ebuild:
+ old
16 Oct 2012; <naota@gentoo.org>
+files/visualboyadvance-1.7.2-sys-types.patch,
diff --git a/games-emulation/visualboyadvance/visualboyadvance-1.7.2-r2.ebuild b/games-emulation/visualboyadvance/visualboyadvance-1.7.2-r2.ebuild
deleted file mode 100644
index 3828bb0468a4..000000000000
--- a/games-emulation/visualboyadvance/visualboyadvance-1.7.2-r2.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2012 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-r2.ebuild,v 1.7 2012/05/04 04:38:38 jdhore Exp $
-
-EAPI=2
-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
- mirror://gentoo/${P}-deprecatedsigc++.patch.bz2"
-
-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:2
- >=dev-cpp/gtkmm-2.4:2.4
- >=dev-cpp/libglademm-2.4:2.4
- )
- nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- mmx? ( dev-lang/nasm )
- nls? ( sys-devel/gettext )"
-
-S=${WORKDIR}/VisualBoyAdvance-${PV}
-
-src_prepare() {
- 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 \
- "${WORKDIR}"/${P}-deprecatedsigc++.patch \
- "${FILESDIR}"/${P}-uninit.patch \
- "${FILESDIR}"/${P}-glibc2.10.patch \
- "${FILESDIR}"/${P}-ovflfix.patch \
- "${FILESDIR}"/${P}-libpng15.patch
-}
-
-src_configure() {
- # -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
-}
-
-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
-}