blob: 8dc96651e4f87bafc8674c6f5c48d5c11b142a19 (
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
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-engines/gemrb/gemrb-0.6.2.ebuild,v 1.2 2010/10/31 17:39:19 hwoarang Exp $
PYTHON_DEPEND="2"
EAPI=2
WANT_CMAKE=always
inherit eutils python cmake-utils games
DESCRIPTION="Reimplementation of the Infinity engine"
HOMEPAGE="http://gemrb.sourceforge.net/"
SRC_URI="mirror://sourceforge/gemrb/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE=""
DEPEND=">=media-libs/libsdl-1.2[video]
sys-libs/zlib
media-libs/libvorbis
media-libs/libpng
media-libs/openal"
pkg_setup() {
python_set_active_version 2
games_pkg_setup
}
src_prepare() {
sed -i \
-e '/COPYING/d' \
CMakeLists.txt \
|| die
}
src_configure() {
mycmakeargs=(
-DCMAKE_INSTALL_PREFIX="${GAMES_PREFIX}"
-DBIN_DIR="${GAMES_BINDIR}"
-DDATA_DIR="${GAMES_DATADIR}/gemrb"
-DSYSCONF_DIR="${GAMES_SYSCONFDIR}/gemrb"
-DLIB_DIR="$(games_get_libdir)"
-DMAN_DIR=/usr/share/man/man6
-DICON_DIR=/usr/share/pixmaps
-DMENU_DIR=/usr/share/applications
-DDOC_DIR="/usr/share/doc/${PF}"
)
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
}
src_install() {
cmake-utils_src_install
dodoc README NEWS AUTHORS
prepgamesdirs
prepalldocs
}
|