blob: 8d7ccad1d02c30a68b81dcb232e62149e6432cb6 (
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
|
# Copyright 1999-2009 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.3.ebuild,v 1.4 2009/11/25 14:30:18 maekke Exp $
EAPI=2
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-0.8[opengl,sdl]
media-libs/libpng
virtual/opengl
virtual/glu
media-libs/libsdl[video]
media-libs/sdl-image[gif,jpeg,png]
media-libs/sdl-mixer"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S=${WORKDIR}/gamediameter
src_prepare() {
sed -i \
-e "s:gamediameter:diameter:" \
configure.in \
|| die "sed 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
}
|