games-strategy/endless-sky: add 0.10.8

Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/38099
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
Michael Mair-Keimberger
2024-08-11 10:01:48 +02:00
committed by Conrad Kostecki
parent fc329bb133
commit 4f1992c8a5
2 changed files with 88 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST endless-sky-0.10.6.tar.gz 256438340 BLAKE2B 39699f458b691dd8aa0586ebbb5b537b8b999ea0084abc561803e21e97986dd6ef28582545fc79cc5cd3ef5d4c587b96860fd7b94294acf2fee31224543ac4ff SHA512 815f64db07997cc8732b12887f55d363f0ef7e44a158dc83fc0b6c4c12c69dab3bf7e1b14c7e93fe920974d8c28b8043f39808227219f09adfe618a00389a530
DIST endless-sky-0.10.8.tar.gz 257381131 BLAKE2B ea6fe5e4240b9744a9e1d64137a731c8a67f88acbd688fad13f3beab2bb6d16e46b3c85fd1288350917eff18264b5a477ed964729edaa098eff07fef10ca81ee SHA512 d6cfb3efba6214a42b112d315dda945085f6a9f915a22bd3fe0ff78cb628a242aa8c0613165a2e1c67d81f5c32f937c2b73a7851efe3984ebe94af4e456df547

View File

@@ -0,0 +1,87 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake prefix xdg
DESCRIPTION="Space exploration, trading & combat in the tradition of Terminal Velocity"
HOMEPAGE="https://endless-sky.github.io/"
SRC_URI="
https://github.com/endless-sky/endless-sky/archive/refs/tags/v${PV}.tar.gz
-> ${P}.tar.gz
"
LICENSE="
GPL-3+
CC-BY-2.0 CC-BY-3.0 CC-BY-4.0
CC-BY-SA-3.0 CC-BY-SA-4.0
CC0-1.0 public-domain
"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gles2-only test"
RESTRICT="!test? ( test )"
RDEPEND="
media-libs/libglvnd
media-libs/libjpeg-turbo:=
media-libs/libmad
media-libs/libpng:=
media-libs/libsdl2[video]
media-libs/openal
sys-apps/util-linux
gles2-only? ( media-libs/libsdl2[gles2] )
!gles2-only? (
media-libs/glew:0=
media-libs/libsdl2[opengl]
)
"
DEPEND="${RDEPEND}"
src_prepare() {
cmake_src_prepare
# no /usr/*games/ on Gentoo, adjust docdir, install even if != Release,
# and GLEW is unused if USE=gles2-only (using sed for less rebasing)
sed -e '/install(/s: games: bin:' \
-e '/install(/s: share/games: share:' \
-e "/install(/s: share/doc/endless-sky: share/doc/${PF}:" \
-e '/install(/s: CONFIGURATIONS Release::' \
-e 's:GLEW REQUIRED:GLEW:' \
-i CMakeLists.txt || die
sed -i '/PATH/s:share/games:share:' source/Files.cpp || die
hprefixify -w /PATH/ source/Files.cpp
}
src_configure() {
local mycmakeargs=(
-DBUILD_TESTING=$(usex test)
-DES_GLES=$(usex gles2-only)
-DES_USE_SYSTEM_LIBRARIES=yes
-DES_USE_VCPKG=no
)
cmake_src_configure
}
src_install() {
cmake_src_install
gzip -d -- "${ED}"/usr/share/man/man6/${PN}.6.gz || die
rm -- "${ED}"/usr/share/doc/${PF}/{copyright,license.txt} || die
}
pkg_postinst() {
xdg_pkg_postinst
if [[ ! ${REPLACING_VERSIONS} ]]; then
elog "Endless Sky provides high-res sprites for high-dpi screens."
elog "If you want to use them, download:"
elog
elog " https://github.com/endless-sky/endless-sky-high-dpi/releases"
elog
elog "and extract it to ~/.local/share/endless-sky/plugins/"
fi
}