summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViorel Munteanu <ceamac@gentoo.org>2024-01-06 13:02:58 +0200
committerViorel Munteanu <ceamac@gentoo.org>2024-01-06 13:03:59 +0200
commit2b6c46cc897e41a6d5b6668cecedd0b8da4e0d7f (patch)
tree600636e2f1227cd5400048ade627d7371c8a2a73
parentnet-ftp/ncftp: fix building with gcc 14 (diff)
downloadgentoo-2b6c46cc897e41a6d5b6668cecedd0b8da4e0d7f.tar.gz
gentoo-2b6c46cc897e41a6d5b6668cecedd0b8da4e0d7f.tar.bz2
gentoo-2b6c46cc897e41a6d5b6668cecedd0b8da4e0d7f.zip
net-ftp/ncftp: drop 3.2.7
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
-rw-r--r--net-ftp/ncftp/ncftp-3.2.7.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/net-ftp/ncftp/ncftp-3.2.7.ebuild b/net-ftp/ncftp/ncftp-3.2.7.ebuild
deleted file mode 100644
index 0aa221e759bc..000000000000
--- a/net-ftp/ncftp/ncftp-3.2.7.ebuild
+++ /dev/null
@@ -1,55 +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
-)
-
-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
-}