blob: ef8719721e448a1b4049c8f2e644b216adcba10d (
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
41
42
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-misc/qlife/qlife-0.9.ebuild,v 1.6 2008/08/14 17:18:48 nixnut Exp $
EAPI=1
inherit qt4 games
MY_P=${PN}-qt4-${PV}
DESCRIPTION="Simulates the classical Game of Life invented by John Conway"
HOMEPAGE="http://personal.inet.fi/koti/rkauppila/projects/life/"
SRC_URI="http://personal.inet.fi/koti/rkauppila/projects/life/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND="|| ( x11-libs/qt-gui:4 x11-libs/qt:4 )"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "/setPath/s:patterns:${GAMES_DATADIR}/${PN}/patterns:" \
lifedialog.cpp || die "sed failed"
}
src_compile() {
eqmake4
emake || die "emake failed"
}
src_install() {
dogamesbin qlife || die "dogamesbin failed"
insinto "${GAMES_DATADIR}"/${PN}
doins patterns/* || die "doins failed"
dohtml *.html
dodoc About README
prepgamesdirs
}
|