blob: 98c91c10ef413f04ae45405278e0b58924f042c2 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit games
MY_PN="game${PN}"
DESCRIPTION="an arcade-style game with elements of economy and adventure."
HOMEPAGE="http://gamediameter.sourceforge.net/"
SRC_URI="mirror://sourceforge/${MY_PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-games/guichan
>=dev-lang/python-2.3.5
media-libs/libpng
media-libs/libsdl
>=media-libs/sdl-image-1.2.4
media-libs/sdl-mixer"
DEPEND="${DEPEND}
dev-util/pkgconfig"
S=${WORKDIR}/${MY_PN}
pkg_setup() {
games_pkg_setup
if ! built_with_use "dev-games/guichan" opengl \
|| ! built_with_use "dev-games/guichan" sdl ; then
eerror "${PN} needs dev-games/guichan compiled with USE=\"opengl sdl\"."
die "dev-games/guichan without USE=\"opengl sdl\""
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e "/^CFLAGS=.*march/ d" \
-e "s/gamediameter/diameter/g" configure || die "sed configure failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
newicon data/texture/gui/eng/main/logo.png ${PN}.png
make_desktop_entry ${PN} "Diameter" ${PN}.png "Game;ArcadeGame"
dodoc README NEWS
prepgamesdirs
}
|