summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2005-10-13 20:35:38 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2005-10-13 20:35:38 +0000
commita00e563829c7a06fe0e6698a372dc40f93560030 (patch)
tree78db4fbed19a280d99bae13800df9bc4710bf5c7 /games-simulation
parentclean older ebuilds (diff)
downloadgentoo-2-a00e563829c7a06fe0e6698a372dc40f93560030.tar.gz
gentoo-2-a00e563829c7a06fe0e6698a372dc40f93560030.tar.bz2
gentoo-2-a00e563829c7a06fe0e6698a372dc40f93560030.zip
clean older ebuild
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'games-simulation')
-rw-r--r--games-simulation/searchandrescue/ChangeLog6
-rw-r--r--games-simulation/searchandrescue/files/digest-searchandrescue-0.8.12
-rw-r--r--games-simulation/searchandrescue/searchandrescue-0.8.1.ebuild58
3 files changed, 5 insertions, 61 deletions
diff --git a/games-simulation/searchandrescue/ChangeLog b/games-simulation/searchandrescue/ChangeLog
index e65cae6b9531..3cebce1a5821 100644
--- a/games-simulation/searchandrescue/ChangeLog
+++ b/games-simulation/searchandrescue/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-simulation/searchandrescue
# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-simulation/searchandrescue/ChangeLog,v 1.7 2005/09/26 18:22:41 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-simulation/searchandrescue/ChangeLog,v 1.8 2005/10/13 20:35:37 mr_bones_ Exp $
+
+ 13 Oct 2005; Michael Sterrett <mr_bones_@gentoo.org>
+ -searchandrescue-0.8.1.ebuild:
+ clean older ebuild
26 Sep 2005; Chris Gianelloni <wolf31o2@gentoo.org>
searchandrescue-0.8.1.ebuild, searchandrescue-0.8.2.ebuild:
diff --git a/games-simulation/searchandrescue/files/digest-searchandrescue-0.8.1 b/games-simulation/searchandrescue/files/digest-searchandrescue-0.8.1
deleted file mode 100644
index eb54fc346855..000000000000
--- a/games-simulation/searchandrescue/files/digest-searchandrescue-0.8.1
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 4305a63efc20d9b481a08dfccbf91379 SearchAndRescue-0.8.1.tgz 802927
-MD5 e8fe773432c40c1825a67e956fbe9b45 SearchAndRescue-data-0.8.1.tgz 8192029
diff --git a/games-simulation/searchandrescue/searchandrescue-0.8.1.ebuild b/games-simulation/searchandrescue/searchandrescue-0.8.1.ebuild
deleted file mode 100644
index 18f4b3e37ed7..000000000000
--- a/games-simulation/searchandrescue/searchandrescue-0.8.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-simulation/searchandrescue/searchandrescue-0.8.1.ebuild,v 1.7 2005/09/26 18:22:41 wolf31o2 Exp $
-
-inherit eutils games
-
-MY_PN=SearchAndRescue
-DESCRIPTION="aircraft based rescue simulator"
-HOMEPAGE="http://wolfpack.twu.net/SearchAndRescue/"
-SRC_URI="ftp://wolfpack.twu.net/users/wolfpack/${MY_PN}-${PV}.tgz
- ftp://wolfpack.twu.net/users/wolfpack/${MY_PN}-data-${PV}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="ppc x86"
-IUSE="joystick"
-
-DEPEND="virtual/x11
- joystick? ( media-libs/libjsw )
- virtual/opengl"
-
-S=${WORKDIR}/${MY_PN}-${PV}
-
-src_unpack() {
- unpack ${MY_PN}-${PV}.tgz
- mkdir data ; cd data
- unpack ${MY_PN}-data-${PV}.tgz
- cd "${S}"
- epatch "${FILESDIR}"/${P}-gcc33.patch
- bunzip2 sar/man/${MY_PN}.6.bz2
- sed -i "s:/usr/share/icons:/usr/share/icons/${PN}:g" sar/config.h
- sed -i '/FeatureCFLAGS.*march/s:=.*:=:g' sar/platforms.ini
-}
-
-src_compile() {
- local myjoyconf
- use joystick \
- && myjoyconf="--enable=joystick" \
- || myjoyconf="--disable=joystick"
- ./configure \
- Linux \
- --prefix=${GAMES_PREFIX} \
- ${myjoyconf} \
- || die
- make || die
-}
-
-src_install() {
- dogamesbin sar/${MY_PN}
- insinto /usr/share/icons/${PN}
- doman sar/man/${MY_PN}.6
- doins sar/icons/*.{ico,xpm}
- dodoc AUTHORS HACKING README
- cd ${WORKDIR}/data
- dodir ${GAMES_DATADIR}/${MY_PN}
- cp -r * "${D}"/${GAMES_DATADIR}/${MY_PN}/ || die
- prepgamesdirs
-}