blob: 368bbf805e4fd7f833de19f596bdfe56f161d22e (
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
63
64
65
66
|
# By Eroen, 2013
# Distributed under the terms of the ISC license
# $Header: $
EAPI=5
inherit eutils versionator games cmake-utils
[[ $(get_version_component_range $(get_version_component_count)) == *999? ]] && inherit git-2
DESCRIPTION="Unofficial open source engine reimplementation of the game Morrowind"
HOMEPAGE="https://openmw.org/"
LICENSE="GPL-3 BitstreamVera DaedricFont OFL-1.1"
SLOT="0"
KEYWORDS=""
IUSE="test"
if [[ $(get_version_component_range $(get_version_component_count)) == *999? ]]; then
S="${WORKDIR}"/${PN}
EGIT_REPO_URI="git://github.com/zinnschlag/openmw.git"
if [[ $(get_version_component_count) -ge 4 ]]; then
EGIT_BRANCH=openmw$(get_version_component_range 2)
fi
else
SRC_URI="https://openmw.googlecode.com/files/${P}.tar.gz"
S="${WORKDIR}"/${PN}-${P}
fi
HDEPEND=">=dev-util/cmake-2.8"
LIBDEPEND="dev-games/ogre[boost,cg,freeimage,ois,opengl,threads,zip]
dev-games/mygui
dev-libs/boost[threads]
media-libs/openal
sci-physics/bullet
virtual/ffmpeg
dev-qt/qtcore
dev-qt/qtgui
dev-qt/qtxmlpatterns"
DEPEND="${LIBDEPEND}
test? ( dev-cpp/gmock
dev-cpp/gtest )"
[[ ${EAPI} == *-hdepend ]] || DEPEND+=" ${HDEPEND}"
RDEPEND="${LIBDEPEND}"
src_prepare() {
epatch_user
}
src_configure() {
mycmakeargs=(
-DCMAKE_INSTALL_PREFIX="${GAMES_PREFIX}"
-DDATAROOTDIR="${GAMES_DATADIR}"
-DDATADIR="${GAMES_DATADIR}/${PN}"
-DSYSCONFDIR="${GAMES_SYSCONFDIR}"/${PN}
$(cmake-utils_use_build test UNITTESTS)
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
sed -e "s:resources=resources:resources=${GAMES_DATADIR}/${PN}/resources:" \
-i "${D}/${GAMES_SYSCONFDIR}"/${PN}/openmw.cfg || die
prepgamesdirs
mv -t "${D}"/etc "${D}/${GAMES_SYSCONFDIR}"/${PN} || die
rmdir "${D}/${GAMES_SYSCONFDIR}" || die
}
|