commit:     403b41336f08a7c0bb4217fc41ea9095594ca3bb
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Sun Aug 28 18:26:18 2022 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Aug 28 20:56:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=403b4133

games-emulation/ppsspp: update build-system

Added support for system zstd library.
Remove ccache autodetection, build system automagically detects ccache and use 
it in situations where it shouldn't do that.

Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/27047
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 .../ppsspp-disable-ccache-autodetection.patch      |  26 ++++++
 games-emulation/ppsspp/ppsspp-1.13-r1.ebuild       | 102 +++++++++++++++++++++
 2 files changed, 128 insertions(+)

diff --git 
a/games-emulation/ppsspp/files/ppsspp-disable-ccache-autodetection.patch 
b/games-emulation/ppsspp/files/ppsspp-disable-ccache-autodetection.patch
new file mode 100644
index 000000000000..007e64774c20
--- /dev/null
+++ b/games-emulation/ppsspp/files/ppsspp-disable-ccache-autodetection.patch
@@ -0,0 +1,26 @@
+From ca18b1b578ec7215277a73b6658753ff35e677ea Mon Sep 17 00:00:00 2001
+From: "Azamat H. Hackimov" <[email protected]>
+Date: Sun, 28 Aug 2022 17:53:05 +0300
+Subject: [PATCH] Disable ccache autodetection
+
+Build system automagically detects ccache and use it in situations where
+it should'nt do that.
+---
+ CMakeLists.txt | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 376e2c5ad..8c382ce5c 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -111,7 +111,6 @@ if(MACOSX AND NOT USE_SYSTEM_LIBSDL2)
+       set(SDL2_LIBRARY ${CMAKE_SOURCE_DIR}/SDL/macOS/SDL2.framework)
+ endif()
+ 
+-include(ccache)
+ include(GNUInstallDirs)
+ 
+ add_definitions(-DASSETS_DIR="${CMAKE_INSTALL_FULL_DATADIR}/ppsspp/assets/")
+-- 
+2.35.1
+

diff --git a/games-emulation/ppsspp/ppsspp-1.13-r1.ebuild 
b/games-emulation/ppsspp/ppsspp-1.13-r1.ebuild
new file mode 100644
index 000000000000..3b1688d5a6d4
--- /dev/null
+++ b/games-emulation/ppsspp/ppsspp-1.13-r1.ebuild
@@ -0,0 +1,102 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop xdg cmake
+
+DESCRIPTION="A PSP emulator written in C++"
+HOMEPAGE="https://www.ppsspp.org/";
+SRC_URI="
+       https://github.com/hrydgard/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
+       
https://github.com/KhronosGroup/SPIRV-Cross/archive/9acb9ec31f5a8ef80ea6b994bb77be787b08d3d1.tar.gz
 -> ${P}-ext_SPIRV-Cross.tar.gz
+       
https://github.com/Kingcom/armips/archive/7885552b208493a6a0f21663770c446c3ba65576.tar.gz
 -> ${P}-ext_armips.tar.gz
+       
https://github.com/Tencent/rapidjson/archive/73063f5002612c6bf64fe24f851cd5cc0d83eef9.tar.gz
 -> ${P}-ext_rapidjson.tar.gz
+       
https://github.com/hrydgard/glslang/archive/dc11adde23c455a24e13dd54de9b4ede8bdd7db8.tar.gz
 -> ${P}-ext_glslang.tar.gz
+       
https://github.com/hrydgard/miniupnp/archive/3a87be33e797ba947b2b2a5f8d087f6c3ff4d93e.tar.gz
 -> ${P}-ext_miniupnp.tar.gz
+       
https://github.com/hrydgard/ppsspp-freetype/archive/cbea79dc8fef4d9210e2bac7e7b9b5ff3388197a.tar.gz
 -> ${P}-ext_native_tools_prebuilt.tar.gz
+       
https://github.com/hrydgard/ppsspp-lang/archive/3bf6b18eb0ae68861fbfbb7b43cd764771ca42a9.tar.gz
 -> ${P}-assets_lang.tar.gz
+       discord? ( 
https://github.com/discordapp/discord-rpc/archive/963aa9f3e5ce81a4682c6ca3d136cddda614db33.tar.gz
 -> ${P}-ext_discord-rpc.tar.gz )
+"
+
+LICENSE="Apache-2.0 BSD BSD-2 GPL-2 JSON MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="discord qt5"
+RESTRICT="test"
+
+RDEPEND="
+       app-arch/snappy:=
+       app-arch/zstd:=
+       dev-libs/libzip:=
+       dev-util/glslang:=
+       media-libs/glew:=
+       media-libs/libpng:=
+       media-libs/libsdl2[joystick]
+       media-video/ffmpeg:0/56.58.58
+       sys-libs/zlib:=
+       virtual/opengl
+       qt5? (
+               dev-qt/qtcore:5
+               dev-qt/qtgui:5[-gles2-only]
+               dev-qt/qtmultimedia:5[-gles2-only]
+               dev-qt/qtopengl:5[-gles2-only]
+               dev-qt/qtwidgets:5[-gles2-only]
+       )
+       !qt5? ( media-libs/libsdl2[X,opengl,sound,video] )
+"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+       "${FILESDIR}/${PN}-CMakeLists-flags.patch"
+       "${FILESDIR}/${PN}-disable-ccache-autodetection.patch"
+)
+
+src_unpack() {
+       unpack ${P}.tar.gz
+
+       cd "${S}" || die
+       local list=(
+               assets_lang
+               ext_SPIRV-Cross
+               ext_armips
+               ext_glslang
+               ext_miniupnp
+               ext_native_tools_prebuilt
+               ext_rapidjson
+       )
+       use discord && list+=( ext_discord-rpc )
+
+       local i
+       for i in "${list[@]}" ; do
+               tar xf "${DISTDIR}/${P}-${i}.tar.gz" --strip-components 1 -C 
"${i//_//}" ||
+                       die "Failed to unpack ${P}-${i}.tar.gz"
+       done
+}
+
+src_configure() {
+       local mycmakeargs=(
+               -DCMAKE_SKIP_RPATH=ON
+               -DHEADLESS=false
+               -DUSE_DISCORD=$(usex discord)
+               -DUSE_SYSTEM_FFMPEG=ON
+               -DUSE_SYSTEM_LIBZIP=ON
+               -DUSE_SYSTEM_SNAPPY=ON
+               -DUSE_SYSTEM_ZSTD=ON
+               -DUSING_QT_UI=$(usex qt5)
+       )
+       cmake_src_configure
+}
+
+src_install() {
+       insinto /usr/share/${PN}
+       doins -r "${BUILD_DIR}/assets"
+
+       local i
+       for i in 16 24 32 48 64 96 128 256 512 ; do
+               doicon -s ${i} icons/hicolor/${i}x${i}/apps/${PN}.png
+       done
+
+       dobin "${BUILD_DIR}/PPSSPP$(usex qt5 Qt SDL)"
+       make_desktop_entry "PPSSPP$(usex qt5 Qt SDL)" "PPSSPP ($(usex qt5 Qt 
SDL))"
+}

Reply via email to