blob: 4f97f29016a7fecc953a8d795758fb47ade2c33c (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/mahjongg3d/mahjongg3d-0.95.ebuild,v 1.2 2004/06/24 22:19:33 agriffis Exp $
inherit kde games
DESCRIPTION="An implementation of the classical chinese game Mah Jongg with 3D OpenGL graphics"
HOMEPAGE="http://www.reto-schoelly.de/mahjongg3d/"
# No version upstream
#SRC_URI="http://www.reto-schoelly.de/${PN}/${PN}.tar.bz2"
SRC_URI="mirror:/gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND=">=qt-3.2.0
virtual/opengl"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
S="${WORKDIR}/${PN}.release"
src_unpack() {
unpack ${A}
cd ${S}
sed -i \
-e "/GAMEDATA_BASE_PATH/ s:\.:${GAMES_DATADIR}/${PN}:" \
src/gamedata_path.h || die "sed src/gamedata_path.h failed"
}
src_compile() {
qmake -o Makefile mahjongg3d.pro
kde_src_compile none
emake || die "emake failed"
}
src_install () {
dogamesbin bin/{mahjongg3d,mahjongg3d-install-*} || die "dogamesbin failed"
dodir "${GAMES_DATADIR}/${PN}"
cp -r bin/{[a-l]*,t*} "${D}${GAMES_DATADIR}/${PN}" || die "cp failed"
dodoc README Changelog
prepgamesdirs
}
|