blob: d21b187e351f50f119f724db2c96eed893ce669a (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/diameter/diameter-0.4.0.1.ebuild,v 1.2 2007/05/23 02:24:35 nyhm Exp $
inherit eutils autotools games
DESCRIPTION="Arcade game with elements of economy and adventure"
HOMEPAGE="http://gamediameter.sourceforge.net/"
SRC_URI="mirror://sourceforge/gamediameter/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-games/guichan
media-libs/libpng
virtual/opengl
virtual/glu
media-libs/libsdl
media-libs/sdl-image
media-libs/sdl-mixer"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S=${WORKDIR}/gamediameter
pkg_setup() {
if ! built_with_use dev-games/guichan opengl sdl; then
die "dev-games/guichan built without USE=\"opengl sdl\""
fi
games_pkg_setup
}
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e "s:gamediameter:diameter:" \
-e "s: -march=\$cpu::" \
configure.in || die "sed on configure failed"
eautoreconf
}
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
dodoc README
prepgamesdirs
}
|