diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-09-01 20:24:24 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-09-01 20:24:24 +0000 |
commit | b17257dfed2fc14c6c593714123e9dca92624f84 (patch) | |
tree | 4fa643462d103911f415a343af07e35d7091fd50 /games-util/gamepick | |
parent | use version-correct patch; clean old files (diff) | |
download | historical-b17257dfed2fc14c6c593714123e9dca92624f84.tar.gz historical-b17257dfed2fc14c6c593714123e9dca92624f84.tar.bz2 historical-b17257dfed2fc14c6c593714123e9dca92624f84.zip |
old
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'games-util/gamepick')
-rw-r--r-- | games-util/gamepick/files/gamepick-0.30-paths.patch | 26 | ||||
-rw-r--r-- | games-util/gamepick/gamepick-0.30.ebuild | 42 |
2 files changed, 0 insertions, 68 deletions
diff --git a/games-util/gamepick/files/gamepick-0.30-paths.patch b/games-util/gamepick/files/gamepick-0.30-paths.patch deleted file mode 100644 index e2c686a8d4be..000000000000 --- a/games-util/gamepick/files/gamepick-0.30-paths.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- load_lists.c -+++ load_lists.c -@@ -50,7 +50,7 @@ - } - } - -- g_string_assign (info->conf_file, "gamepick.conf"); -+ g_string_assign (info->conf_file, "CONFDIR/gamepick.conf"); - if (file_readable (info->conf_file->str)) - return NULL; - ---- gamepick.h -+++ gamepick.h -@@ -6,9 +6,9 @@ - - /* configure these to your own systems */ - /* or overide them with -c <conf file> */ --static const gchar default_cmd_dir[] = "."; --static const gchar default_icon_dir[] = "."; --static const gchar default_stage2[] = "./gamepick-stage2"; -+static const gchar default_cmd_dir[] = "GAMES_BINDIR"; -+static const gchar default_icon_dir[] = "GAMES_DATADIR"; -+static const gchar default_stage2[] = "GAMES_BINDIR/gamepick-stage2"; - - enum browse_targets {bt_cmd, bt_icon}; - diff --git a/games-util/gamepick/gamepick-0.30.ebuild b/games-util/gamepick/gamepick-0.30.ebuild deleted file mode 100644 index b68702ff32d7..000000000000 --- a/games-util/gamepick/gamepick-0.30.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/gamepick/gamepick-0.30.ebuild,v 1.6 2008/01/18 21:40:02 tupone Exp $ - -inherit eutils games - -DESCRIPTION="Launch opengl games with custom graphic settings" -HOMEPAGE="http://www.rillion.net/gamepick/index.html" -SRC_URI="http://www.rillion.net/gamepick/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND="=x11-libs/gtk+-2*" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-paths.patch - sed -i \ - -e "s:GAMES_CONFDIR:${GAMES_SYSCONFDIR}:" \ - -e "s:GAMES_BINDIR:${GAMES_BINDIR}:" \ - -e "s:GAMES_DATADIR:${GAMES_DATADIR}/${PN}:" \ - load_lists.c gamepick.h - sed -i \ - -e "/^flags/s:-Wall -Werror -pedantic -c -g:-c ${CFLAGS}:" \ - Makefile -} - -src_install() { - dogamesbin gamepick gamepick-stage{2,3} || die "dogamesbin" - dodoc ABOUT README TODO - insinto "${GAMES_SYSCONFDIR}" - doins gamepick.conf - insinto "${GAMES_DATADIR}"/${PN} - doins *.png *.xpm *.gif - prepgamesdirs -} |