blob: 8818ba90d6c94ffd850e9bb50a443efe7d57c6d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2005 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.2 2005/07/22 08:20:34 dholm Exp $
inherit 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="gtk2"
DEPEND="=x11-libs/gtk+-2*"
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 INSTALL README TODO
insinto "${GAMES_SYSCONFDIR}"
doins gamepick.conf
insinto "${GAMES_DATADIR}"/${PN}
doins *.png *.xpm *.gif
prepgamesdirs
}
|