commit: 97a0e3b524ea42500c872a91658bd345fcd6cab0 Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me> AuthorDate: Tue Feb 24 23:07:09 2026 +0000 Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me> CommitDate: Tue Feb 24 23:10:13 2026 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=97a0e3b5
games-engines/ponscripter-fork: make sure CC/CXX/AR/RANLIB are exported, disable stripping Closes: https://bugs.gentoo.org/938748 Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me> ...ter-fork-3.0.2.ebuild => ponscripter-fork-3.0.2-r1.ebuild} | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/games-engines/ponscripter-fork/ponscripter-fork-3.0.2.ebuild b/games-engines/ponscripter-fork/ponscripter-fork-3.0.2-r1.ebuild similarity index 88% rename from games-engines/ponscripter-fork/ponscripter-fork-3.0.2.ebuild rename to games-engines/ponscripter-fork/ponscripter-fork-3.0.2-r1.ebuild index 74972d23c4..6442579710 100644 --- a/games-engines/ponscripter-fork/ponscripter-fork-3.0.2.ebuild +++ b/games-engines/ponscripter-fork/ponscripter-fork-3.0.2-r1.ebuild @@ -1,8 +1,10 @@ -# Copyright 2023-2025 Gentoo Authors +# Copyright 2023-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +inherit toolchain-funcs + DESCRIPTION="Fork of the Ponscripter visual novel engine to take advantage of SDL2" HOMEPAGE="https://github.com/07th-mod/ponscripter-fork" SRC_URI="https://github.com/07th-mod/ponscripter-fork/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" @@ -43,12 +45,17 @@ src_prepare() { } src_configure() { + tc-export CC CXX AR RANLIB + + export STRIPPROG=true + + # not autoconf ./configure \ --no-werror \ --unsupported-compiler \ --prefix="${EPREFIX}/usr" \ --disable-internal-libs \ - --disable-steam + --disable-steam || die } src_install() {
