diff options
author | Viorel Munteanu <ceamac@gentoo.org> | 2024-01-06 13:02:26 +0200 |
---|---|---|
committer | Viorel Munteanu <ceamac@gentoo.org> | 2024-01-06 13:03:59 +0200 |
commit | b1ae4caa066de886e02b101711c71c7f83152416 (patch) | |
tree | e9337fbb1294bea03d2b2ee0b15014929b6f7966 /net-ftp | |
parent | dev-util/stripe-mock: Remove old (diff) | |
download | gentoo-b1ae4caa066de886e02b101711c71c7f83152416.tar.gz gentoo-b1ae4caa066de886e02b101711c71c7f83152416.tar.bz2 gentoo-b1ae4caa066de886e02b101711c71c7f83152416.zip |
net-ftp/ncftp: fix building with gcc 14
Closes: https://bugs.gentoo.org/921487
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/ncftp/files/ncftp-3.2.7-fix-gcc14.patch | 13 | ||||
-rw-r--r-- | net-ftp/ncftp/ncftp-3.2.7-r1.ebuild | 56 |
2 files changed, 69 insertions, 0 deletions
diff --git a/net-ftp/ncftp/files/ncftp-3.2.7-fix-gcc14.patch b/net-ftp/ncftp/files/ncftp-3.2.7-fix-gcc14.patch new file mode 100644 index 000000000000..f40f85e41d9e --- /dev/null +++ b/net-ftp/ncftp/files/ncftp-3.2.7-fix-gcc14.patch @@ -0,0 +1,13 @@ +https://bugs.gentoo.org/921487 + +--- a/autoconf_local/aclocal.m4 ++++ b/autoconf_local/aclocal.m4 +@@ -4196,7 +4196,7 @@ + #include <sys/select.h> + #endif + #include <sys/socket.h> /* MG: always incl */ +-extern select ($ac_cv_func_select_arg1,$ac_cv_func_select_arg234,$ac_cv_func_select_arg234,$ac_cv_func_select_arg234,$ac_cv_func_select_arg5);],,dnl ++extern int select ($ac_cv_func_select_arg1,$ac_cv_func_select_arg234,$ac_cv_func_select_arg234,$ac_cv_func_select_arg234,$ac_cv_func_select_arg5);],,dnl + [ac_not_found=no ; break 3],ac_not_found=yes) + done + done diff --git a/net-ftp/ncftp/ncftp-3.2.7-r1.ebuild b/net-ftp/ncftp/ncftp-3.2.7-r1.ebuild new file mode 100644 index 000000000000..23de3d7409f5 --- /dev/null +++ b/net-ftp/ncftp/ncftp-3.2.7-r1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit autotools toolchain-funcs + +DESCRIPTION="An extremely configurable ftp client" +HOMEPAGE="https://www.ncftp.com/" +SRC_URI="https://www.ncftp.com/public_ftp/${PN}/${P}-src.tar.xz" + +LICENSE="Clarified-Artistic" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos" +IUSE="pch" + +DEPEND=" + sys-libs/ncurses:= +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + virtual/pkgconfig +" + +PATCHES=( + "${FILESDIR}"/${PN}-3.2.7-fix-clang.patch # 875458 + "${FILESDIR}"/${PN}-3.2.7-fix-gcc14.patch # 921487 +) + +src_prepare() { + default + + sed -i -e '/^AR=/d' autoconf_local/aclocal.m4 || die + # 727774 + sed -i -e 's/STRIP=".*"/STRIP=":"/' autoconf_local/aclocal.m4 || die + + AT_M4DIR=autoconf_local/ eautoreconf +} + +src_configure() { + tc-export AR CC + LC_ALL="C" \ + LIBS="$( $(tc-getPKG_CONFIG) --libs ncurses)" \ + econf \ + $(use_enable pch precomp) \ + --disable-ccdv \ + --disable-universal +} + +src_install() { + default + dodoc README.txt doc/*.txt + docinto html + dodoc doc/html/*.html +} |