blob: 52fa7f35279b0220b3833d1f2c26711fc872f5f7 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-misc/qlife/qlife-0.7.ebuild,v 1.3 2005/01/03 02:20:31 vapier Exp $
inherit kde
need-qt 3
DESCRIPTION="Simulates the classical Game of Life invented by John Conway"
HOMEPAGE="http://personal.inet.fi/koti/rkauppila/projects/life/"
SRC_URI="http://freshmeat.net/redir/qlife/50265/url_tgz/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
src_compile() {
qmake || die "qmake failed"
emake || die "emake failed"
}
src_install() {
dobin qlife || die "dobin failed"
insinto /usr/share/qlife
doins patterns/* || die "doins failed"
dodoc README ChangeLog Todo About
}
|