blob: e403b6d4ce147cc94d770be152d138d37607e55c (
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
62
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-engines/gemrb/gemrb-0.6.4.ebuild,v 1.1 2011/04/11 18:07:33 mr_bones_ 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/sdl-mixer
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
}
|