1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-04-20 08:33:31 +02:00

Added latest gngeo and missed sdlmame ebuild

This commit is contained in:
root
2015-06-22 17:18:23 +02:00
parent 8a8b3439ef
commit c33051deaf
8 changed files with 506 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/gngeo/gngeo-0.8.ebuild,v 1.3 2015/02/25 15:57:48 ago Exp $
EAPI=5
inherit eutils autotools games
DESCRIPTION="A NeoGeo emulator"
HOMEPAGE="http://code.google.com/p/gngeo/"
LICENSE="GPL-2"
SLOT="0"
if [[ ${PV} = 9999 ]]; then
EGIT_REPO_URI="https://github.com/Sohil876/gngeo.git"
inherit git-2
KEYWORDS=""
fi
KEYWORDS="amd64 ~ppc x86"
IUSE=""
DEPEND="virtual/opengl
media-libs/libsdl[joystick,opengl,sound,video]
sys-libs/zlib[minizip]"
RDEPEND=${DEPEND}
src_prepare() {
epatch \
"${FILESDIR}"/${P}-execstacks.patch \
"${FILESDIR}"/${P}-zlib.patch \
"${FILESDIR}"/${P}-concurrentMake.patch
mv configure.in configure.ac || die
eautoreconf
chmod +x configure
}
src_configure() {
egamesconf --disable-i386asm
}
src_install() {
DOCS=( AUTHORS FAQ NEWS README* TODO sample_gngeorc )
default
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
echo
elog "A licensed NeoGeo BIOS copy is required to run the emulator."
echo
}