summaryrefslogtreecommitdiff
blob: 4dec43659b79eafb122c7dd14adb60a03bf89249 (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
43
44
45
46
47
48
49
50
51
52
53
54
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit games eutils toolchain-funcs flag-o-matic

MY_PN=Cultivation

DESCRIPTION="a game about a community of gardeners growing food for themselves
in a shared space"
HOMEPAGE="http://cultivation.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}_${PV}_UnixSource.tar.gz"

LICENSE="public-domain"
SLOT="0"
KEYWORDS="~x86"
IUSE=""

DEPEND="virtual/opengl
	virtual/glut
	media-libs/mesa
	x11-libs/libX11
	x11-libs/libXi
	x11-libs/libXext
	x11-libs/libXmu"
RDEPEND=${DEPEND}

S=${WORKDIR}/${MY_PN}_${PV}_UnixSource

src_unpack() {
	unpack ${A}
	cd "${S}"

	epatch "${FILESDIR}/${P}-compile.patch"
}

src_compile() {
	cd "${S}"/game2
	# don't use econf as it is not an autotools configure
	./configure

	cd "${S}"/minorGems/sound/portaudio
	chmod u+x configure
	econf || die "econf failed"
	emake || die "emake failed"

	cd "${S}"/game2/gameSource
	emake GXX="$(tc-getCXX)" || die "emake failed"
}

src_install() {
	dogamesbin game2/gameSource/Cultivation
	dodoc game2/{documentation/how_to_*.txt,gameSource/features.txt}
}