blob: 3e0e1b0c35a2f140e6fe3fee7579f8c402106f20 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils
MY_PN=opensnc
MY_P=${MY_PN}-src-${PV}
DESCRIPTION="A free open-source game based on the Sonic the Hedgehog universe"
HOMEPAGE="http://opensnc.sourceforge.net/"
SRC_URI="https://sourceforge.net/projects/opensnc/files/Open%20Sonic/${PV}/opensnc-src-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RESTRICT="mirror" # unsure about legality of graphics
DEPEND="
media-libs/allegro:0=[X,jpeg,png,vorbis]
media-libs/libogg:=
media-libs/libpng:0=
media-libs/libvorbis:=
sys-libs/zlib:=
virtual/jpeg:0"
RDEPEND=${DEPEND}
S=${WORKDIR}/${MY_P}
PATCHES=( "${FILESDIR}"/${PN}-0.1.4-r1-cmake.patch )
src_configure() {
local mycmakeargs=(
-DGAME_INSTALL_DIR="${EPREFIX}"/usr/share/${PN}
-DGAME_FINAL_DIR="${EPREFIX}"/usr/bin
-DGAME_LIBDIR="${EPREFIX}"/usr/$(get_libdir)/${PN}
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
local f
while IFS="" read -d $'\0' -r f; do
dosym ../../share/${PN}/${f##*/} \
/usr/$(get_libdir)/${PN}/${f##*/}
done < <(find "${ED%/}"/usr/share/${PN}/ -mindepth 1 -maxdepth 1 -type d -print0)
}
|