summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2012-07-02 20:34:37 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2012-07-02 20:34:37 +0000
commitf396195fea2a767f196e924b1cc59ae97d87a0e1 (patch)
tree85f38d5893a7a20be68e6c17dafc11c178b5ea10 /games-puzzle/pipewalker
parentold (diff)
downloadgentoo-2-f396195fea2a767f196e924b1cc59ae97d87a0e1.tar.gz
gentoo-2-f396195fea2a767f196e924b1cc59ae97d87a0e1.tar.bz2
gentoo-2-f396195fea2a767f196e924b1cc59ae97d87a0e1.zip
old
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'games-puzzle/pipewalker')
-rw-r--r--games-puzzle/pipewalker/ChangeLog6
-rw-r--r--games-puzzle/pipewalker/files/pipewalker-0.9.1-sdl-include.patch24
-rw-r--r--games-puzzle/pipewalker/pipewalker-0.9.1.ebuild45
3 files changed, 5 insertions, 70 deletions
diff --git a/games-puzzle/pipewalker/ChangeLog b/games-puzzle/pipewalker/ChangeLog
index 3c21aa7bd391..9179fdbcd976 100644
--- a/games-puzzle/pipewalker/ChangeLog
+++ b/games-puzzle/pipewalker/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-puzzle/pipewalker
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/pipewalker/ChangeLog,v 1.14 2012/05/21 19:34:28 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/pipewalker/ChangeLog,v 1.15 2012/07/02 20:34:37 mr_bones_ Exp $
+
+ 02 Jul 2012; Michael Sterrett <mr_bones_@gentoo.org>
+ -files/pipewalker-0.9.1-sdl-include.patch, -pipewalker-0.9.1.ebuild:
+ old
21 May 2012; Samuli Suominen <ssuominen@gentoo.org> pipewalker-0.9.4.ebuild:
inherit eutils for make_desktop_entry
diff --git a/games-puzzle/pipewalker/files/pipewalker-0.9.1-sdl-include.patch b/games-puzzle/pipewalker/files/pipewalker-0.9.1-sdl-include.patch
deleted file mode 100644
index 8bbb66d5abbd..000000000000
--- a/games-puzzle/pipewalker/files/pipewalker-0.9.1-sdl-include.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -ru pipewalker-0.9.1.orig/src/sound.h pipewalker-0.9.1/src/sound.h
---- pipewalker-0.9.1.orig/src/sound.h 2010-10-08 07:09:41.000000000 -0400
-+++ pipewalker-0.9.1/src/sound.h 2010-10-17 00:39:11.766744603 -0400
-@@ -21,7 +21,7 @@
- #include "common.h"
-
- #if defined PW_USE_SDL //SDL library
-- #include <SDL/SDL.h>
-+ #include <SDL.h>
- #endif
-
- /**
-diff -ru pipewalker-0.9.1.orig/src/winmgr_sdl.cpp pipewalker-0.9.1/src/winmgr_sdl.cpp
---- pipewalker-0.9.1.orig/src/winmgr_sdl.cpp 2010-10-11 10:04:22.000000000 -0400
-+++ pipewalker-0.9.1/src/winmgr_sdl.cpp 2010-10-17 00:39:04.151383831 -0400
-@@ -26,7 +26,7 @@
- #include "../extra/pipewalker.xpm"
-
- //SDL library
--#include <SDL/SDL.h>
-+#include <SDL.h>
-
- #ifdef WIN32
- #include <SDL/SDL_syswm.h>
diff --git a/games-puzzle/pipewalker/pipewalker-0.9.1.ebuild b/games-puzzle/pipewalker/pipewalker-0.9.1.ebuild
deleted file mode 100644
index 710be153f78d..000000000000
--- a/games-puzzle/pipewalker/pipewalker-0.9.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/pipewalker/pipewalker-0.9.1.ebuild,v 1.4 2010/11/21 17:44:38 maekke Exp $
-
-EAPI=2
-inherit flag-o-matic eutils games
-
-DESCRIPTION="Rotating pieces puzzle game"
-HOMEPAGE="http://pipewalker.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND="media-libs/libsdl[opengl,video]
- virtual/opengl
- virtual/glu"
-
-src_prepare() {
- # fix the include of SDL.h (bug #341239)
- epatch "${FILESDIR}"/${P}-sdl-include.patch
- sed -i \
- -e '/OpenGL error:/s/0x/0x%x/' \
- -e '/#pragma warning/d' \
- src/common.h \
- || die
-}
-
-src_configure() {
- append-flags $(sdl-config --cflags)
- egamesconf \
- --disable-dependency-tracking \
- --datadir="${GAMES_DATADIR_BASE}"
-}
-
-src_install() {
- emake -C data DESTDIR="${D}" install || die "emake install failed"
- dogamesbin src/${PN} || die "dogamesbin failed"
- doicon extra/${PN}.xpm
- make_desktop_entry ${PN} PipeWalker
- dodoc AUTHORS ChangeLog README
- prepgamesdirs
-}