mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-08 00:05:33 +03:00
Update done using: ``` git grep -l sys-libs/zlib dev-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g git diff --name-only | xargs copybump git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error ``` Signed-off-by: Michał Górny <mgorny@gentoo.org>
115 lines
3.1 KiB
Bash
115 lines
3.1 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
CMAKE_IN_SOURCE_BUILD="yes"
|
|
LUA_COMPAT=( lua5-{1..3} luajit )
|
|
|
|
inherit desktop lua-single xdg cmake
|
|
|
|
if [[ ${PV} == *9999 ]] ; then
|
|
EGIT_REPO_URI="https://github.com/CelestiaProject/Celestia.git"
|
|
inherit git-r3
|
|
else
|
|
if [[ ${PV} == *_p* ]] ; then
|
|
COMMIT_ID="9292455b420aa865482078c3149ae974367270e5"
|
|
COMMIT_ID_DATA="d20a4500410af19bd508eba567c9220890e9e316"
|
|
SRC_URI="
|
|
https://github.com/${PN^}Project/${PN^}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz
|
|
https://github.com/${PN^}Project/${PN^}Content/archive/${COMMIT_ID_DATA}.tar.gz -> ${P}-data.tar.gz
|
|
"
|
|
S="${WORKDIR}/${PN^}-${COMMIT_ID}"
|
|
KEYWORDS="~amd64 ~x86"
|
|
else
|
|
SRC_URI="https://github.com/${PN^}Project/${PN^}/archive/${PV/_/-}.tar.gz -> ${P}.tar.gz"
|
|
fi
|
|
fi
|
|
|
|
DESCRIPTION="OpenGL 3D space simulator"
|
|
HOMEPAGE="https://celestiaproject.space/ https://github.com/CelestiaProject/Celestia"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
IUSE="ffmpeg gtk lto lua nls +qt6 sdl test"
|
|
RESTRICT="!test? ( test )"
|
|
REQUIRED_USE="|| ( gtk qt6 sdl )
|
|
lua? ( ${LUA_REQUIRED_USE} )"
|
|
|
|
BDEPEND="
|
|
dev-cpp/eigen
|
|
virtual/pkgconfig
|
|
nls? ( sys-devel/gettext )
|
|
"
|
|
DEPEND="
|
|
dev-libs/libfmt:=
|
|
media-libs/libepoxy
|
|
media-libs/libjpeg-turbo:0=
|
|
media-libs/libpng:0=
|
|
virtual/zlib:=
|
|
virtual/glu
|
|
virtual/opengl
|
|
gtk? ( x11-libs/gtk+:3 )
|
|
ffmpeg? ( media-video/ffmpeg:0= )
|
|
lua? ( ${LUA_DEPS} )
|
|
qt6? ( dev-qt/qtbase:6[gui,opengl,widgets] )
|
|
sdl? ( media-libs/libsdl2[X] )
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
PATCHES=(
|
|
# allow forcing CMake to look for a specific Lua version instead of the newest branch installed
|
|
"${FILESDIR}"/${PN}-1.7.0-cmake_lua_version-r1.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
mv "${WORKDIR}"/CelestiaContent-${COMMIT_ID_DATA} content || die
|
|
cmake_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
CMAKE_USE_DIR="${CMAKE_USE_DIR}/content" BUILD_DIR="${BUILD_DIR}/content" \
|
|
cmake_src_configure
|
|
|
|
local mycmakeargs=(
|
|
-DCELCFG_EXTRAS_DIRS='"~/.celestia"'
|
|
-DENABLE_CELX="$(usex lua)"
|
|
-DENABLE_NLS="$(usex nls)"
|
|
-DENABLE_FFMPEG="$(usex ffmpeg)"
|
|
-DENABLE_GTK="$(usex gtk)"
|
|
-DUSE_GTK3="$(usex gtk)"
|
|
-DENABLE_LTO="$(usex lto)"
|
|
-DENABLE_QT5=OFF
|
|
-DENABLE_QT6="$(usex qt6)"
|
|
-DENABLE_WIN=OFF
|
|
-DENABLE_SDL="$(usex sdl)"
|
|
-DENABLE_TESTS="$(usex test)"
|
|
)
|
|
# Upstream always looks for LuaJIT first unless stopped, and we only need
|
|
# the version specification when linking against PUC Lua
|
|
if use lua && ! use lua_single_target_luajit; then
|
|
mycmakeargs+=(
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_LuaJIT=ON
|
|
-DLUA_VERSION=$(lua_get_version)
|
|
)
|
|
fi
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_compile() {
|
|
cmake_src_compile
|
|
CMAKE_USE_DIR="${CMAKE_USE_DIR}/content" BUILD_DIR="${BUILD_DIR}/content" cmake_src_compile
|
|
}
|
|
|
|
src_install() {
|
|
cmake_src_install
|
|
|
|
# Icons with more resolutions
|
|
doicon -s 48 "${S}"/src/celestia/gtk/data/${PN}.png
|
|
newicon -s 128 "${S}"/src/celestia/gtk/data/${PN}-logo.png ${PN}.png
|
|
doicon -s scalable "${S}"/src/celestia/gtk/data/${PN}.svg
|
|
|
|
dodoc AUTHORS README TRANSLATORS *.txt
|
|
|
|
CMAKE_USE_DIR="${CMAKE_USE_DIR}/content" BUILD_DIR="${BUILD_DIR}/content" cmake_src_install
|
|
}
|