summaryrefslogtreecommitdiff
blob: d258fbdebb230a04c8c801e02901f742ae6858d6 (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
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
93
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

PYTHON_COMPAT=( python3_{7,8} )

inherit cmake python-any-r1 xdg

MY_PV="build$(ver_cut 2-)"
MY_P="${PN}-${MY_PV/_/-}"

DESCRIPTION="A game similar to Settlers 2"
HOMEPAGE="https://www.widelands.org/"

if [[ "${PV}" == *9999 ]] ; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/widelands/widelands.git"
else
	SRC_URI="https://launchpad.net/widelands/build$(ver_cut 2)/${MY_PV/_/-}/+download/${MY_P}.tar.bz2"
	S="${WORKDIR}/${MY_P}"
	KEYWORDS="~amd64 ~x86"
fi

LICENSE="GPL-2+"
SLOT="0"
IUSE=""

RDEPEND="
	>=dev-libs/boost-1.48:=
	dev-libs/icu:=
	media-libs/glew:0=
	media-libs/libglvnd
	media-libs/libpng:0=
	media-libs/libsdl2[video]
	media-libs/sdl2-image[jpeg,png]
	media-libs/sdl2-mixer[vorbis]
	media-libs/sdl2-ttf
	sys-libs/zlib:=[minizip]"
DEPEND="${RDEPEND}
	${PYTHON_DEPS}
"
BDEPEND="
	sys-devel/gettext
"

CMAKE_BUILD_TYPE="Release"

PATCHES=(
	"${FILESDIR}/${PN}-0.20_rc1-cxxflags.patch"
)

src_prepare() {
	cmake_src_prepare

	sed -i -e 's:__ppc__:__PPC__:' src/map_io/s2map.cc || die
	# don't call gtk-update-icon-cache
	sed '/^find_program(GTK_UPDATE_ICON_CACHE/d' \
		-i xdg/CMakeLists.txt || die
}

src_configure() {
	local WLDIR="${EPREFIX}/usr/share/${PN}"
	local mycmakeargs=(
		-DOPTION_BUILD_WEBSITE_TOOLS=OFF

		# -DUSE_XDG=ON breaks finding of datadir
		-DUSE_XDG=OFF

		# Upstream's cmake files are totally fscked up...
		# This just helps dealing with less crap in src_install
		-DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr"
		-DWL_INSTALL_BASEDIR="${WLDIR}"
		-DWL_INSTALL_DATADIR="${WLDIR}/data"
	)
	cmake_src_configure
}

src_install() {
	cmake_src_install

	# upstream CMakeLists.txt file is totally bonkers
	local sharedir="${ED}/usr/share"
	dodir /usr/bin
	mv "${ED}"/usr/${PN} "${ED}"/usr/bin || die
	mv "${ED}"/share/* "${sharedir}" || die
	rmdir "${ED}"/share || die
	rm "${sharedir}"/${PN}/{COPYING,CREDITS,ChangeLog} || die
	mv "${sharedir}"/${PN}/VERSION "${sharedir}"/doc/${PF}/ || die

	#newicon data/images/logos/wl-ico-128.png ${PN}.png
	#make_desktop_entry ${PN} ${PN^}
}