diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-05-05 20:30:56 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-05-05 20:30:56 +0000 |
commit | 034ffc38b9771c641b2bc222d485bc05e9dbfc8a (patch) | |
tree | 3b39fd1b83eb991d0ba44a8bdc2ef2b96e7e9f78 /games-emulation | |
parent | amd64/x86 stable, bug #220427 (diff) | |
download | gentoo-2-034ffc38b9771c641b2bc222d485bc05e9dbfc8a.tar.gz gentoo-2-034ffc38b9771c641b2bc222d485bc05e9dbfc8a.tar.bz2 gentoo-2-034ffc38b9771c641b2bc222d485bc05e9dbfc8a.zip |
old
(Portage version: 2.1.4.4)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/generator/generator-0.35-r3.ebuild | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/games-emulation/generator/generator-0.35-r3.ebuild b/games-emulation/generator/generator-0.35-r3.ebuild deleted file mode 100644 index 5fd5ba72cc2f..000000000000 --- a/games-emulation/generator/generator-0.35-r3.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/generator/generator-0.35-r3.ebuild,v 1.3 2007/04/11 20:51:37 mr_bones_ Exp $ - -inherit autotools eutils toolchain-funcs games - -DESCRIPTION="Sega Genesis / Mega Drive emulator" -HOMEPAGE="http://www.ghostwhitecrab.com/generator/" -SRC_URI="http://www.ghostwhitecrab.com/generator/${P}-cbiere-r2.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc x86" -IUSE="gtk sdlaudio svga" - -S=${WORKDIR}/${P}-cbiere-r2 - -RDEPEND="media-libs/jpeg - media-libs/libsdl - gtk? ( =x11-libs/gtk+-1.2* ) - svga? ( media-libs/svgalib )" -DEPEND="${RDEPEND} - x86? ( dev-lang/nasm )" - -src_unpack() { - unpack ${A} - cd "${S}" - mkdir my-bins - - epatch \ - "${FILESDIR}"/${P}-execstacks.patch \ - "${FILESDIR}"/${P}-configure.patch - eautoreconf -} - -# builds SDL by default since otherwise -svga -gtk builds nothing -src_compile() { - local myconf mygui myguis - - use x86 \ - && myconf="--with-raze" \ - || myconf="--with-cmz80" - - myguis="sdl" - use gtk && myguis="${myguis} gtk" - use svga && myguis="${myguis} svgalib" - - for mygui in ${myguis}; do - [[ -f Makefile ]] && make -s clean - egamesconf \ - ${myconf} \ - --with-${mygui} \ - --without-tcltk \ - --with-gcc=$(gcc-major-version) \ - $(use_with sdlaudio sdl-audio) \ - --disable-dependency-tracking || die - emake -j1 || die "building ${mygui}" - mv main/generator-${mygui} my-bins/ - done -} - -src_install() { - dogamesbin my-bins/* || die "dogamesbin failed" - dodoc AUTHORS ChangeLog NEWS README TODO docs/* - prepgamesdirs -} |