summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2006-02-28 06:38:11 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2006-02-28 06:38:11 +0000
commit21fb221996d6d808f7a4359d331fda8c23fc1abd (patch)
tree74e593e28e6bb13d48f4c39102a6d46ac8aadfba /games-arcade/kobodeluxe
parentadding a metadata.xml (diff)
downloadgentoo-2-21fb221996d6d808f7a4359d331fda8c23fc1abd.tar.gz
gentoo-2-21fb221996d6d808f7a4359d331fda8c23fc1abd.tar.bz2
gentoo-2-21fb221996d6d808f7a4359d331fda8c23fc1abd.zip
old
(Portage version: 2.1_pre5-r1)
Diffstat (limited to 'games-arcade/kobodeluxe')
-rw-r--r--games-arcade/kobodeluxe/files/digest-kobodeluxe-0.4_pre81
-rw-r--r--games-arcade/kobodeluxe/kobodeluxe-0.4_pre8.ebuild65
2 files changed, 0 insertions, 66 deletions
diff --git a/games-arcade/kobodeluxe/files/digest-kobodeluxe-0.4_pre8 b/games-arcade/kobodeluxe/files/digest-kobodeluxe-0.4_pre8
deleted file mode 100644
index fe5751a16d7c..000000000000
--- a/games-arcade/kobodeluxe/files/digest-kobodeluxe-0.4_pre8
+++ /dev/null
@@ -1 +0,0 @@
-MD5 215fba14e30755940833dc1abb322bd6 KoboDeluxe-0.4pre8.tar.gz 676204
diff --git a/games-arcade/kobodeluxe/kobodeluxe-0.4_pre8.ebuild b/games-arcade/kobodeluxe/kobodeluxe-0.4_pre8.ebuild
deleted file mode 100644
index 65f46c415aef..000000000000
--- a/games-arcade/kobodeluxe/kobodeluxe-0.4_pre8.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/kobodeluxe/kobodeluxe-0.4_pre8.ebuild,v 1.5 2005/08/24 15:49:43 mr_bones_ Exp $
-
-inherit games
-
-IUSE="opengl"
-
-DESCRIPTION="An SDL port of xkobo, a addictive space shoot-em-up"
-HOMEPAGE="http://www.olofson.net/kobodl/"
-KEYWORDS="x86"
-LICENSE="GPL-2"
-
-MY_P="KoboDeluxe-${PV/_/}"
-S=${WORKDIR}/${MY_P}
-SRC_URI="http://www.olofson.net/kobodl/download/${MY_P}.tar.gz"
-
-RDEPEND="virtual/libc
- media-libs/libsdl
- media-libs/sdl-image
- opengl? ( virtual/opengl )"
-DEPEND="$RDEPEND
- >=sys-apps/sed-4"
-
-SLOT=0
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- # Fix paths
- sed -i \
- -e 's:\$(datadir)/games/kobo-deluxe:$(datadir)/kobodeluxe:' \
- -e 's:\$(prefix)/games/kobo-deluxe/scores:$(localstatedir)/kobodeluxe:' \
- configure || die "sed configure failed"
- sed -i \
- -e 's:\$(datadir)/games/kobo-deluxe:$(datadir)/kobodeluxe:' \
- data/Makefile.in || die "sed data/Makefile.in failed"
-}
-
-src_compile() {
- egamesconf `use_enable opengl` || die "./configure failed"
- emake || die
-}
-
-src_install () {
- make install DESTDIR=${D}
-
- dodoc ChangeLog README* TODO || die "dodoc failed"
-
- insinto /var/games/kobodeluxe
- doins 501 || die "doins failed"
- prepgamesdirs
- fperms 2775 /var/games/kobodeluxe
-}
-
-pkg_postinst() {
-
- einfo "The location of the highscore files has changed. If this isn't the"
- einfo "first time you've installed ${PN} and you'd like to keep the high"
- einfo "scores from a previous version of ${PN}, please move all the files"
- einfo "in /var/lib/games/kobodeluxe/ to /var/games/kobodeluxe/. If you"
- einfo "have a /var/lib/games/kobodeluxe/ directory it may be removed."
-
- games_pkg_postinst
-}