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@hacktivis.me>
This commit is contained in:
Haelwenn (lanodan) Monnier
2026-02-25 00:07:09 +01:00
parent 294515fecd
commit 97a0e3b524

View File

@@ -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() {