summaryrefslogtreecommitdiff
blob: a21638cf0c3c3775d246e75edf51990bec8cde6a (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
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/kcheckers/kcheckers-0.6.ebuild,v 1.6 2008/07/27 21:09:30 carlo Exp $

EAPI=1

inherit qt3 games

DESCRIPTION="Qt version of the classic boardgame checkers"
HOMEPAGE="http://kcheckers.org/"
SRC_URI="http://kcheckers.org/${P}.tar.gz"
LICENSE="GPL-2"

SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""

DEPEND="x11-libs/qt:3"

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

	sed -i "s:/usr/local/share:${GAMES_DATADIR}:" \
		config.h || die "sed failed"
}

src_compile() {
	"${QTDIR}"/bin/qmake || die "qmake failed"
	emake || die "emake failed"
}

src_install() {
	dogamesbin kcheckers || die "dogamesbin failed"
	dodoc AUTHORS ChangeLog README TODO

	insinto "${GAMES_DATADIR}"/${PN}
	doins i18n/* kcheckers.pdn || die "doins failed"

	prepgamesdirs
}