summaryrefslogtreecommitdiff
blob: ceca85560a3b40fec1c9642e30a6608ce0ae0dd0 (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
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/xconq/xconq-7.4.1.ebuild,v 1.3 2004/04/29 23:21:27 mr_bones_ Exp $

inherit games

DESCRIPTION="a general strategy game system"
HOMEPAGE="http://sources.redhat.com/xconq/"
SRC_URI="ftp://sources.redhat.com/pub/xconq/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""

DEPEND="virtual/x11
	dev-lang/tk
	dev-lang/tcl"

src_compile() {
	egamesconf \
		--enable-alternate-scoresdir=${GAMES_STATEDIR}/${PN}/scores \
		|| die
	emake \
		CFLAGS="${CFLAGS}" \
		datadir=${GAMES_DATADIR}/${PN} \
		|| die "emake failed"
}

src_install() {
	dodir ${GAMES_STATEDIR}/${PN} ${GAMES_DATADIR}/${PN}
	egamesinstall \
		scoresdir=${D}/${GAMES_STATEDIR}/${PN}/scores \
		datadir=${D}/${GAMES_DATADIR}/${PN} \
		|| die
	prepgamesdirs
}