blob: 386f1edcecf9a9b9ce7657751231fdb8ca859920 [file] [log] [blame]
# Copyright 1999-2010 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.8 2010/03/02 19:53:57 ssuominen 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"
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
}