forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commandergenius-1.8.0.0.ebuild
92 lines (75 loc) · 2.16 KB
/
commandergenius-1.8.0.0.ebuild
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
CMAKE_IN_SOURCE_BUILD=1
inherit cmake-utils eutils games
MY_P=CGenius-${PV}-Release-Source
DESCRIPTION="Open Source Commander Keen clone (needs original game files)"
HOMEPAGE="http://clonekeenplus.sourceforge.net"
SRC_URI="mirror://sourceforge/clonekeenplus/CGenius/V${PV:0:3}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="opengl tremor"
RESTRICT="mirror" # contains keen files, but we do not install them
RDEPEND="media-libs/libsdl2[X,opengl?,sound,video]
media-libs/sdl2-image
opengl? ( virtual/opengl )
tremor? ( media-libs/tremor )
!tremor? ( media-libs/libvorbis )"
DEPEND="${RDEPEND}
dev-libs/boost
virtual/pkgconfig"
S=${WORKDIR}/CGenius-${PV}-Release-Source
src_prepare() {
epatch "${FILESDIR}"/${P}-install.patch
rm -rf vfsroot || die
cat <<-EOF > version.h
#ifndef __CG__VERSION_H__
#define __CG__VERSION_H__
#define CGVERSION "${PV}-Release"
#endif
EOF
sed -i \
-e '/INCLUDE(package.cmake)/d' \
CMakeLists.txt || die
}
src_configure() {
local mycmakeargs=(
-DAPPDIR="${GAMES_BINDIR}"
-DSHAREDIR="/usr/share"
-DGAMES_SHAREDIR="${GAMES_DATADIR}"
-DDOCDIR="/usr/share/doc/${PF}"
-DBUILD_TARGET="LINUX"
$(cmake-utils_use opengl OPENGL)
$(cmake-utils_use tremor TREMOR)
$(cmake-utils_use !tremor OGG)
-DUSE_SDL2=1
)
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
}
src_install() {
cmake-utils_src_install
newicon CGLogo.png ${PN}.png
newgamesbin "${FILESDIR}"/commandergenius-wrapper commandergenius
if [[ -e "${ED}${GAMES_BINDIR}"/CGeniusExe ]] ; then
mv "${ED}${GAMES_BINDIR}"/CGeniusExe \
"${ED}${GAMES_BINDIR}"/CommanderGenius || die
fi
make_desktop_entry commandergenius
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
elog "Check your settings in ~/.CommanderGenius/cgenius.cfg"
elog "after you have started the game for the first time."
use opengl && elog "You may also want to set \"OpenGL = true\""
elog
elog "Run the game via:"
elog " 'commandergenius [path-to-keen-data]'"
elog "or add your keen data dir to the search paths in cgenius.cfg"
}