commit: ed6ebd8e6ceeff3395852fae798c3d5a30dab088 Author: Brahmajit Das <brahmajit.xyz <AT> gmail <DOT> com> AuthorDate: Sat Oct 28 12:34:18 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Feb 16 15:40:58 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed6ebd8e
games-board/awale: Fix call to undeclared library function strcmp Closes: https://bugs.gentoo.org/895882 Signed-off-by: Brahmajit Das <brahmajit.xyz <AT> gmail.com> Closes: https://github.com/gentoo/gentoo/pull/33567 Signed-off-by: Sam James <sam <AT> gentoo.org> games-board/awale/awale-1.6-r1.ebuild | 39 ++++++++++++++++++++++ .../awale/files/awale-1.6-clang16-build-fix.patch | 11 ++++++ 2 files changed, 50 insertions(+) diff --git a/games-board/awale/awale-1.6-r1.ebuild b/games-board/awale/awale-1.6-r1.ebuild new file mode 100644 index 000000000000..7f2ed8e143dd --- /dev/null +++ b/games-board/awale/awale-1.6-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit desktop + +DESCRIPTION="Free Awale - The game of all Africa" +HOMEPAGE="https://www.nongnu.org/awale/" +SRC_URI="mirror://nongnu/awale/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gui" + +RDEPEND="gui? ( dev-lang/tk )" + +PATCHES=( + "${FILESDIR}"/${PN}-1.6-clang16-build-fix.patch +) + +src_install() { + if use gui; then + emake -j1 DESTDIR="${D}" install #799107 + + fperms +x /usr/share/${PN}/xawale.tcl + + doicon src/awale.png + make_desktop_entry xawale "Free Awale" + + rm "${ED}"/usr/share/applications/awale.desktop || die + else + dobin src/awale + doman man/awale.6 + fi + + einstalldocs +} diff --git a/games-board/awale/files/awale-1.6-clang16-build-fix.patch b/games-board/awale/files/awale-1.6-clang16-build-fix.patch new file mode 100644 index 000000000000..56b3ed9e0bb7 --- /dev/null +++ b/games-board/awale/files/awale-1.6-clang16-build-fix.patch @@ -0,0 +1,11 @@ +Bug: https://bugs.gentoo.org/895882 +--- a/src/getopt.c ++++ b/src/getopt.c +@@ -39,6 +39,7 @@ + #endif + + #include <stdio.h> ++#include <string.h> + + /* Comment out all this code if we are using the GNU C Library, and are not + actually compiling the library itself. This code is part of the GNU C
