diff options
author | Viorel Munteanu <ceamac@gentoo.org> | 2024-06-10 13:30:35 +0300 |
---|---|---|
committer | Viorel Munteanu <ceamac@gentoo.org> | 2024-06-10 13:30:35 +0300 |
commit | 19484a59d86919111c1674cd0ea7831d160b1d49 (patch) | |
tree | 7591b5f4cd16c29dcffc175b520f1b3feeb55448 /net-ftp | |
parent | app-misc/fastfetch: Stabilize 2.11.5 amd64, #933991 (diff) | |
download | gentoo-19484a59d86919111c1674cd0ea7831d160b1d49.tar.gz gentoo-19484a59d86919111c1674cd0ea7831d160b1d49.tar.bz2 gentoo-19484a59d86919111c1674cd0ea7831d160b1d49.zip |
net-ftp/ncftp: drop 3.2.7-r1
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/ncftp/ncftp-3.2.7-r1.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/net-ftp/ncftp/ncftp-3.2.7-r1.ebuild b/net-ftp/ncftp/ncftp-3.2.7-r1.ebuild deleted file mode 100644 index f3e25d065848..000000000000 --- a/net-ftp/ncftp/ncftp-3.2.7-r1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# 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 -} |