blob: c38defb0eaacbb1e1ab7797c5b46a7a14cb1a6c4 (
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
|
# 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.2.ebuild,v 1.1 2008/01/25 05:21:57 nyhm Exp $
inherit eutils qt4 games
DESCRIPTION="Free Worms-like turn based strategy game"
HOMEPAGE="http://hedgewars.org/"
SRC_URI="http://hedgewars.org/download/${PN}-src-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="$(qt4_min_version 4.2)
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"
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
}
|