commit: 45ed1b56f11195e805318bff82e7b249bc94a7cc Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Jan 23 22:41:23 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Jan 23 22:41:56 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45ed1b56
games-misc/opengfx: make logs verbose Make logs verbose and reuse the same argument array for each phase. Bug: https://bugs.gentoo.org/928269 Signed-off-by: Sam James <sam <AT> gentoo.org> games-misc/opengfx/opengfx-7.1.ebuild | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/games-misc/opengfx/opengfx-7.1.ebuild b/games-misc/opengfx/opengfx-7.1.ebuild index e4437660902f..1f9cce274688 100644 --- a/games-misc/opengfx/opengfx-7.1.ebuild +++ b/games-misc/opengfx/opengfx-7.1.ebuild @@ -29,31 +29,28 @@ PATCHES=( ) src_compile() { - local myemakeargs=( + myemakeargs=( GIMP="" PYTHON="${EPYTHON}" + + # Make logs verbose + _V= + _E=echo ) emake "${myemakeargs[@]}" all } src_test() { - local myemakeargs=( - GIMP="" - PYTHON="${EPYTHON}" - ) - emake "${myemakeargs[@]}" check } src_install() { - local myemakeargs=( + myemakeargs+=( DO_NOT_INSTALL_README="true" DO_NOT_INSTALL_LICENSE="true" DO_NOT_INSTALL_CHANGELOG="true" - GIMP="" INSTALL_DIR="${ED}/usr/share/openttd/baseset/" - PYTHON="${EPYTHON}" ) emake "${myemakeargs[@]}" install
