summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2014-08-25 20:48:22 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2014-08-25 20:48:22 +0000
commit33c50e792c7ef7ea9b2c39ce9cca3264aff61a1e (patch)
treec20bad4f80beea4b59e333c424aea49945c57ed5 /games-arcade
parentold (diff)
downloadgentoo-2-33c50e792c7ef7ea9b2c39ce9cca3264aff61a1e.tar.gz
gentoo-2-33c50e792c7ef7ea9b2c39ce9cca3264aff61a1e.tar.bz2
gentoo-2-33c50e792c7ef7ea9b2c39ce9cca3264aff61a1e.zip
old
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-arcade')
-rw-r--r--games-arcade/cavezofphear/ChangeLog6
-rw-r--r--games-arcade/cavezofphear/cavezofphear-0.5.ebuild33
-rw-r--r--games-arcade/cavezofphear/files/cavezofphear-0.5-gentoo.patch36
3 files changed, 5 insertions, 70 deletions
diff --git a/games-arcade/cavezofphear/ChangeLog b/games-arcade/cavezofphear/ChangeLog
index 2940482332fd..f5afbcabaa72 100644
--- a/games-arcade/cavezofphear/ChangeLog
+++ b/games-arcade/cavezofphear/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-arcade/cavezofphear
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/cavezofphear/ChangeLog,v 1.16 2014/08/03 18:40:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/cavezofphear/ChangeLog,v 1.17 2014/08/25 20:48:22 mr_bones_ Exp $
+
+ 25 Aug 2014; Michael Sterrett <mr_bones_@gentoo.org> -cavezofphear-0.5.ebuild,
+ -files/cavezofphear-0.5-gentoo.patch:
+ old
03 Aug 2014; Agostino Sarubbo <ago@gentoo.org> cavezofphear-0.5.1.ebuild:
Stable for ppc, wrt bug #517198
diff --git a/games-arcade/cavezofphear/cavezofphear-0.5.ebuild b/games-arcade/cavezofphear/cavezofphear-0.5.ebuild
deleted file mode 100644
index 71b3eff328e0..000000000000
--- a/games-arcade/cavezofphear/cavezofphear-0.5.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/cavezofphear/cavezofphear-0.5.ebuild,v 1.4 2009/09/05 15:04:05 mr_bones_ Exp $
-
-EAPI=2
-inherit eutils games
-
-DESCRIPTION="A boulder dash / digger-like game for console using ncurses"
-HOMEPAGE="http://www.x86.no/cavezofphear/"
-SRC_URI="http://www.x86.no/${PN}/${P/cavezof}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 ~sparc x86 ~x86-fbsd"
-IUSE=""
-
-S=${WORKDIR}/${P/cavezof/}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-gentoo.patch
- sed -i \
- -e "s:get_data_dir(.):\"${GAMES_DATADIR}/${PN}/\":" \
- src/{chk.c,main.c,gplot.c} \
- || die "sed data fix failed"
-}
-
-src_install() {
- dogamesbin src/phear || die "dogamesbin failed"
- insinto "${GAMES_DATADIR}"/${PN}
- doins -r data/* || die "doins failed"
- dodoc ChangeLog README* TODO
- prepgamesdirs
-}
diff --git a/games-arcade/cavezofphear/files/cavezofphear-0.5-gentoo.patch b/games-arcade/cavezofphear/files/cavezofphear-0.5-gentoo.patch
deleted file mode 100644
index 80169259d023..000000000000
--- a/games-arcade/cavezofphear/files/cavezofphear-0.5-gentoo.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff -ru phear-0.5.orig/Makefile phear-0.5/Makefile
---- phear-0.5.orig/Makefile 2007-02-27 06:21:55.000000000 -0500
-+++ phear-0.5/Makefile 2009-09-05 11:01:08.534701774 -0400
-@@ -2,7 +2,7 @@
- DESTDIR_DATA = /usr/local/share
-
- make:
-- cd src && make
-+ $(MAKE) -C src phear
- clean:
- rm -f phear editor
- install:
-diff -ru phear-0.5.orig/src/Makefile phear-0.5/src/Makefile
---- phear-0.5.orig/src/Makefile 2007-02-27 04:59:26.000000000 -0500
-+++ phear-0.5/src/Makefile 2009-09-05 11:01:57.341827885 -0400
-@@ -2,10 +2,8 @@
-
- DESTDIR = ..
-
--CC = gcc
- INSTALL = install
--CFLAGS = -s -Wall -O2
--LDFLAGS = -lncurses
-+LDLIBS = -lncurses
-
- all: phear install clean
-
-@@ -13,7 +11,7 @@
- $(CC) $(CFLAGS) -c $^ -o $@
-
- phear: $(OBJS)
-- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
-+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS)
-
- install: install-game
-