commit: db259dcd0de3671f15a6b2be6d3d4b07599e567d Author: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de> AuthorDate: Tue Nov 29 18:58:53 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Dec 6 09:23:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db259dcd
net-irc/dccserver: fix build for clang16 Closes: https://bugs.gentoo.org/875026 Closes: https://bugs.gentoo.org/861377 Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de> Closes: https://github.com/gentoo/gentoo/pull/28475 Signed-off-by: Sam James <sam <AT> gentoo.org> net-irc/dccserver/dccserver-0.5-r2.ebuild | 30 ++++++++++++++++++++++ .../dccserver-0.5-include-bsd-string-header.patch | 19 ++++++++++++++ 2 files changed, 49 insertions(+) diff --git a/net-irc/dccserver/dccserver-0.5-r2.ebuild b/net-irc/dccserver/dccserver-0.5-r2.ebuild new file mode 100644 index 000000000000..1399170485f3 --- /dev/null +++ b/net-irc/dccserver/dccserver-0.5-r2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Linux implementation of the mirc dccserver command" +HOMEPAGE="https://www.nih.at/dccserver/" +SRC_URI="https://www.nih.at/dccserver/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~riscv ~x86" + +RDEPEND="dev-libs/libbsd" +DEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}/${P}-include-bsd-string-header.patch" ) + +src_prepare() { + default + + # Respect AR + sed -i -e "s/AR = /AR ?= /" lib/Makefile.in || die +} + +src_compile() { + AR="$(tc-getAR)" default +} diff --git a/net-irc/dccserver/files/dccserver-0.5-include-bsd-string-header.patch b/net-irc/dccserver/files/dccserver-0.5-include-bsd-string-header.patch new file mode 100644 index 000000000000..16474b64b82a --- /dev/null +++ b/net-irc/dccserver/files/dccserver-0.5-include-bsd-string-header.patch @@ -0,0 +1,19 @@ +This uses strlcpy() from bsd/string.h. On non BSD system those headers are to find under +/usr/include/bsd/. See also man libbsd. + +Bug: https://bugs.gentoo.org/875026 +Bug: https://bugs.gentoo.org/861377 + +Pascal Jäger <[email protected]> (2022-11-29) + +--- a/lib/dcc.c ++++ b/lib/dcc.c +@@ -37,7 +37,7 @@ + #endif /* HAVE_ERR_H */ + #include <errno.h> + #include <stdlib.h> +-#include <string.h> ++#include <bsd/string.h> + + #include "dcc.h" + #include "io.h"
