diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-09-08 04:26:50 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-09-08 04:26:50 +0000 |
commit | 8e41ddbb0939eee3ddee7fecb3e5e751c1c22763 (patch) | |
tree | 6913fadd0cca6b88193d169d3ec2ffd6ce70d88c /games-emulation | |
parent | ~ppc lovin (diff) | |
download | gentoo-2-8e41ddbb0939eee3ddee7fecb3e5e751c1c22763.tar.gz gentoo-2-8e41ddbb0939eee3ddee7fecb3e5e751c1c22763.tar.bz2 gentoo-2-8e41ddbb0939eee3ddee7fecb3e5e751c1c22763.zip |
gtk support #52242
Diffstat (limited to 'games-emulation')
3 files changed, 58 insertions, 1 deletions
diff --git a/games-emulation/visualboyadvance/ChangeLog b/games-emulation/visualboyadvance/ChangeLog index 065b46413da4..a1077b978b8a 100644 --- a/games-emulation/visualboyadvance/ChangeLog +++ b/games-emulation/visualboyadvance/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-emulation/visualboyadvance # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/visualboyadvance/ChangeLog,v 1.18 2004/09/04 09:37:45 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/visualboyadvance/ChangeLog,v 1.19 2004/09/08 04:26:50 vapier Exp $ + +*visualboyadvance-1.7.2 (07 Sep 2004) + + 07 Sep 2004; Mike Frysinger <vapier@gentoo.org> + visualboyadvance-1.7.2.ebuild: + Add support for GTK interface #52242 by jason perez et al. 04 Sep 2004; Michael Sterrett <mr_bones_@gentoo.org> visualboyadvance-1.7.2.ebuild: diff --git a/games-emulation/visualboyadvance/files/digest-visualboyadvance-1.7.2-r1 b/games-emulation/visualboyadvance/files/digest-visualboyadvance-1.7.2-r1 new file mode 100644 index 000000000000..3dce821f07d7 --- /dev/null +++ b/games-emulation/visualboyadvance/files/digest-visualboyadvance-1.7.2-r1 @@ -0,0 +1 @@ +MD5 cc02339e3fd8efd9f23121b0a2f81fd8 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 new file mode 100644 index 000000000000..18f9dd26119b --- /dev/null +++ b/games-emulation/visualboyadvance/visualboyadvance-1.7.2-r1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2004 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.1 2004/09/08 04:26:50 vapier Exp $ + +inherit eutils 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="~x86 ~ppc ~amd64" +IUSE="mmx gtk" + +RDEPEND="virtual/x11 + media-libs/libpng + sys-libs/zlib + media-libs/libsdl + gtk? ( + >=x11-libs/gtk+-2.4 + >=dev-cpp/gtkmm-2.4 + >=dev-cpp/libglademm-2.4 + )" +DEPEND="${RDEPEND} + mmx? ( dev-lang/nasm )" + +S="${WORKDIR}/VisualBoyAdvance-${PV}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PV}-homedir.patch" + epatch "${FILESDIR}/${PV}-gcc34.patch" +} + +src_compile() { + egamesconf \ + --enable-c-core \ + $(use_with mmx) \ + $(use_enable gtk gtk 2.4) \ + || die + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS ChangeLog INSTALL NEWS README README-win.txt + prepgamesdirs +} |