diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-07-15 16:23:10 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-07-15 16:23:10 +0000 |
commit | d76354190f404f188abc450889522f6e1f98e62b (patch) | |
tree | e24710459392e50c1aa7b3594ac014957ab8e6be /games-emulation/raine | |
parent | Marked ~hppa too. (diff) | |
download | gentoo-2-d76354190f404f188abc450889522f6e1f98e62b.tar.gz gentoo-2-d76354190f404f188abc450889522f6e1f98e62b.tar.bz2 gentoo-2-d76354190f404f188abc450889522f6e1f98e62b.zip |
old
(Portage version: 2.1.4.4)
Diffstat (limited to 'games-emulation/raine')
-rw-r--r-- | games-emulation/raine/raine-0.50.5.ebuild | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/games-emulation/raine/raine-0.50.5.ebuild b/games-emulation/raine/raine-0.50.5.ebuild deleted file mode 100644 index 2f84f1d0c8df..000000000000 --- a/games-emulation/raine/raine-0.50.5.ebuild +++ /dev/null @@ -1,68 +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/raine/raine-0.50.5.ebuild,v 1.3 2007/12/04 03:56:43 mr_bones_ Exp $ - -inherit versionator games - -MY_PV=$(replace_version_separator 3 '-') - -DESCRIPTION="R A I N E M680x0 Arcade Emulation" -HOMEPAGE="http://www.rainemu.com/" -SRC_URI="http://www.rainemu.com/html/archive/raines-${MY_PV}.tar.bz2 - http://www.rainemu.com/html/archive/rainedocs.zip - http://www.rainemu.com/html/archive/icons.zip" - -LICENSE="Artistic" -SLOT="0" -KEYWORDS="x86" -IUSE="static kde" - -RDEPEND="media-libs/allegro - media-libs/libsdl - sys-libs/zlib - media-libs/sdl-image - media-libs/sdl-ttf" -DEPEND="${RDEPEND} - dev-lang/nasm - app-arch/unzip" - -S=${WORKDIR}/${PN}-$(get_version_component_range -3) - -src_unpack() { - unpack ${A} - cd "${S}" - echo > detect-cpu - echo > cpuinfo - sed -i \ - -e "/prefix =/s:/usr::" \ - -e "s:nasm -r:echo nasm:" \ - -e "/bindir/s:=.*:=\$(DESTDIR)${GAMES_BINDIR}:" \ - -e "/sharedir =/s:=.*:=\$(DESTDIR)${GAMES_DATADIR}:" \ - -e "/mandir/s:=.*:=\$(DESTDIR)/usr/share/man/man6:" \ - makefile \ - || die "sed failed" -} - -src_compile() { - local myopts= - use static \ - && myopts="${myopts} STATIC=1" \ - || myopts="${myopts} STATIC=" - emake \ - _MARCH="${CFLAGS}" \ - ${myopts} || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - keepdir "${GAMES_DATADIR}"/${PN}/{roms,artwork,emudx} - dodoc "${WORKDIR}/raine.txt" - - insinto /usr/share/icons - doins "${WORKDIR}/"*.png - if use kde ; then - insinto /usr/share/applnk/Games - doins "${FILESDIR}/Raine.desktop" - fi - prepgamesdirs -} |