2018-06-19 11:49:01 +02:00
|
|
|
# Copyright 1999-2018 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=6
|
|
|
|
|
2018-11-17 22:04:07 +01:00
|
|
|
inherit eutils eapi7-ver cmake-utils
|
2018-06-19 11:49:01 +02:00
|
|
|
|
2018-11-17 22:04:07 +01:00
|
|
|
MY_PV=build$(ver_cut 2)
|
2018-06-19 11:49:01 +02:00
|
|
|
MY_P=${PN}-${MY_PV}-src
|
|
|
|
DESCRIPTION="A game similar to Settlers 2"
|
|
|
|
HOMEPAGE="http://www.widelands.org/"
|
|
|
|
SRC_URI="https://launchpad.net/widelands/${MY_PV}/${MY_PV}/+download/${MY_P}.tar.bz2"
|
|
|
|
|
|
|
|
LICENSE="GPL-2+"
|
|
|
|
SLOT="0"
|
2018-06-21 21:06:35 +02:00
|
|
|
KEYWORDS="~amd64 ~x86"
|
2018-06-19 11:49:01 +02:00
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
DEPEND="dev-lang/lua:0
|
2018-06-21 21:06:35 +02:00
|
|
|
>=dev-libs/boost-1.65.0
|
|
|
|
>=media-libs/glew-2.1.0
|
|
|
|
>=media-libs/libpng-1.6.34:0
|
2018-06-19 13:01:02 +02:00
|
|
|
media-libs/libsdl2[video]
|
|
|
|
media-libs/sdl2-image[jpeg,png]
|
|
|
|
media-libs/sdl2-mixer[vorbis]
|
2018-06-21 21:06:35 +02:00
|
|
|
>=media-libs/sdl2-net-2.0.1
|
|
|
|
>=media-libs/sdl2-ttf-2.0.14
|
2018-06-19 13:01:02 +02:00
|
|
|
sys-libs/zlib[minizip]"
|
2018-06-19 11:49:01 +02:00
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
|
|
|
|
CMAKE_BUILD_TYPE=Release
|
|
|
|
|
|
|
|
# Game is NOT happy being moved from /usr/share/games
|
|
|
|
PREFIX="/usr/share/games/${PN}"
|
|
|
|
|
|
|
|
PATCHES=(
|
2018-06-19 13:01:02 +02:00
|
|
|
"${FILESDIR}"/${P}-fix_maybe_uninitialized.patch
|
2018-06-19 11:49:01 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
src_prepare() {
|
2018-06-19 13:01:02 +02:00
|
|
|
default
|
2018-06-19 11:49:01 +02:00
|
|
|
|
2018-06-19 13:01:02 +02:00
|
|
|
sed -i -e 's:__ppc__:__PPC__:' src/map_io/s2map.cc || die
|
2018-06-19 11:49:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
src_configure() {
|
2018-06-19 13:01:02 +02:00
|
|
|
local mycmakeargs=(
|
|
|
|
"-DCMAKE_INSTALL_PREFIX=${EPREFIX}/usr/share/games/${PN}"
|
|
|
|
"-DWL_INSTALL_BASEDIR=${EPREFIX}/usr/share/games/${PN}"
|
|
|
|
"-DWL_INSTALL_DATADIR=${EPREFIX}/usr/share/games/${PN}"
|
|
|
|
)
|
|
|
|
cmake-utils_src_configure
|
2018-06-19 11:49:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
2018-06-19 13:01:02 +02:00
|
|
|
cmake-utils_src_compile
|
2018-06-19 11:49:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
2018-06-19 13:01:02 +02:00
|
|
|
cmake-utils_src_install
|
|
|
|
newicon data/images/logos/wl-ico-128.png ${PN}.png
|
|
|
|
make_desktop_entry ${PN} Widelands
|
|
|
|
dodoc ChangeLog CREDITS
|
|
|
|
|
|
|
|
# As everything is installed in /usr/share/games/${PN},
|
2018-06-21 21:06:35 +02:00
|
|
|
# a symlink is needed in /usr/bin
|
2018-06-19 13:26:34 +02:00
|
|
|
dosym ${PREFIX}/${PN} /usr/bin/${PN}
|
2018-06-19 11:49:01 +02:00
|
|
|
}
|