blob: de5c2094028815984e1877351743c1ccc382b9c0 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/hedgewars/hedgewars-0.9.3.ebuild,v 1.2 2008/06/10 00:24:40 mr_bones_ Exp $
EAPI=1
inherit eutils games
MY_P=${PN}-src-${PV}
DESCRIPTION="Free Worms-like turn based strategy game"
HOMEPAGE="http://hedgewars.org/"
SRC_URI="http://hedgewars.org/download/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=x11-libs/qt-4.2:4
media-libs/libsdl
media-libs/sdl-ttf
media-libs/sdl-mixer
media-libs/sdl-image
media-libs/sdl-net"
DEPEND="${RDEPEND}
>=dev-util/cmake-2.4.4
dev-lang/fpc"
S=${WORKDIR}/${MY_P}
src_compile() {
cmake \
-DCMAKE_CXX_FLAGS="${CXXFLAGS}" \
-DCMAKE_INSTALL_PREFIX="${GAMES_PREFIX}" \
-DDATA_INSTALL_DIR="${GAMES_DATADIR}" \
. || die "cmake failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
newicon QTfrontend/res/hh25x25.png ${PN}.png
make_desktop_entry ${PN} Hedgewars
dodoc ChangeLog.txt README
doman man/${PN}.6
prepgamesdirs
}
|