games-board/awale: Fix call to undeclared library function strcmp

Closes: https://bugs.gentoo.org/895882
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/33567
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Brahmajit Das
2023-10-28 12:34:18 +00:00
committed by Sam James
parent 5d6e70558b
commit ed6ebd8e6c
2 changed files with 50 additions and 0 deletions

View File

@@ -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
}

View File

@@ -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