summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2006-02-23 06:20:15 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2006-02-23 06:20:15 +0000
commit966c6c5edfdc44c44d79fcbb6051643988927c7c (patch)
treeddd63309ff429bed5955d21113eb1665b161d22f /games-emulation
parentalpha love (diff)
downloadgentoo-2-966c6c5edfdc44c44d79fcbb6051643988927c7c.tar.gz
gentoo-2-966c6c5edfdc44c44d79fcbb6051643988927c7c.tar.bz2
gentoo-2-966c6c5edfdc44c44d79fcbb6051643988927c7c.zip
old
(Portage version: 2.1_pre4-r1)
Diffstat (limited to 'games-emulation')
-rw-r--r--games-emulation/xe/files/digest-xe-200508011
-rw-r--r--games-emulation/xe/files/xe-2005080110
-rw-r--r--games-emulation/xe/xe-20050801.ebuild48
3 files changed, 0 insertions, 59 deletions
diff --git a/games-emulation/xe/files/digest-xe-20050801 b/games-emulation/xe/files/digest-xe-20050801
deleted file mode 100644
index 89d8adb08a5b..000000000000
--- a/games-emulation/xe/files/digest-xe-20050801
+++ /dev/null
@@ -1 +0,0 @@
-MD5 3eb7f335dc2294a79e6c88ab2fe8c42e xe-05.08.01.tar.bz2 1198303
diff --git a/games-emulation/xe/files/xe-20050801 b/games-emulation/xe/files/xe-20050801
deleted file mode 100644
index 16a8f8e16251..000000000000
--- a/games-emulation/xe/files/xe-20050801
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-if [ ! -d ~/.xe/modules ] ; then
- mkdir -p ~/.xe/modules
-fi
-for f in GENTOODIR/modules/*
-do
- ln -s $f ~/.xe/modules/ 2> /dev/null
-done
-exec xe.bin "${@}"
diff --git a/games-emulation/xe/xe-20050801.ebuild b/games-emulation/xe/xe-20050801.ebuild
deleted file mode 100644
index 66c2bbfa14c3..000000000000
--- a/games-emulation/xe/xe-20050801.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/xe/xe-20050801.ebuild,v 1.3 2006/02/11 04:06:03 joshuabaergen Exp $
-
-inherit games
-
-MY_PV="${PV:2:2}.${PV:4:2}.${PV:6:2}"
-DESCRIPTION="a multi system emulator for many console and handheld video game systems"
-HOMEPAGE="http://www.xe-emulator.com/"
-SRC_URI="http://www.xe-emulator.com/files/${PN}-${MY_PV}.tar.bz2"
-
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="-* ~x86"
-IUSE=""
-RESTRICT="nostrip"
-
-RDEPEND="|| ( ( x11-libs/libXv
- x11-libs/libXxf86vm )
- virtual/x11 )
- sys-libs/zlib
- =x11-libs/gtk+-2*"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-S=${WORKDIR}/${PN}-bin
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i \
- -e '/strip/d' \
- -e '/^CC/d' \
- Makefile \
- || die "sed failed"
-}
-
-src_install() {
- newgamesbin xe xe.bin || die "newgamesbin failed"
- newgamesbin "${FILESDIR}/xe-${PV}" xe || die "newgamesbin failed"
- sed -i \
- -e "s:GENTOODIR:${GAMES_LIBDIR}/${PN}:" "${D}/${GAMES_BINDIR}/xe" \
- || die "sed failed"
- insinto "${GAMES_LIBDIR}/${PN}"
- doins -r modules || die "doins failed"
- dodoc README.txt
- prepgamesdirs
-}