blob: a8f073dcfc677b523e2a9a223cef4306c018a71f (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/ggz-gtk-games/ggz-gtk-games-0.0.5.ebuild,v 1.3 2004/02/29 10:12:59 vapier Exp $
DESCRIPTION="These are the gtk versions of the games made by GGZ Gaming Zone"
HOMEPAGE="http://ggz.sourceforge.net/"
SRC_URI="mirror://sourceforge/ggz/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
DEPEND="=games-board/ggz-gtk-client-0.0.5"
src_compile() {
econf
# we need to remove some /usr-paths that ggz-config puts into in
# the makefile. ugly. :/
sed -e "s|^ggzdatadir = /|ggzdatadir = ${D}|" Makefile > Makefile.new
sed -e "s|^ggzexecmoddir = /|ggzexecmoddir = ${D}|" Makefile.new > Makefile
emake || die
}
src_install() {
insinto /etc
doins /etc/ggz.modules
make DESTDIR=${D} install || die
}
|