blob: 1a956798845996e4df342a7bfca2a782463c6fb7 (
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
55
|
# Copyright 1999-2010 Gentoo Foundation
# 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.16 2010/10/13 23:47:25 mr_bones_ Exp $
EAPI=2
inherit eutils 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="amd64 ppc x86"
IUSE=""
RESTRICT="test"
DEPEND="x11-libs/libXmu
x11-libs/libXaw
dev-lang/tk
dev-lang/tcl"
PATCHES=( "${FILESDIR}"/${PN}-gcc-3.4.patch
"${FILESDIR}"/${PN}-tkconq.patch
"${FILESDIR}"/${PN}-make-382.patch
)
src_configure() {
egamesconf \
--enable-alternate-scoresdir="${GAMES_STATEDIR}"/${PN}
}
src_compile() {
emake \
CFLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}" \
datadir="${GAMES_DATADIR}"/${PN} \
|| die "emake failed"
}
src_install() {
dogamesbin x11/{imf2x,x2imf,xconq,ximfapp} || die "dogamesbin failed"
insinto "${GAMES_DATADIR}"/${PN}
doins -r images lib tcltk/*.tcl || die "doins failed"
rm -f "${D}/${GAMES_DATADIR}"/${PN}/{images,lib}/{m,M}ake*
dodir "${GAMES_STATEDIR}"/${PN}
touch "${D}/${GAMES_STATEDIR}"/${PN}/scores.xcq
fperms 660 "${GAMES_STATEDIR}"/${PN}/scores.xcq || die
doman x11/${PN}.6
dodoc ChangeLog NEWS README
prepgamesdirs
}
|