diff options
author | Viorel Munteanu <ceamac.paragon@gmail.com> | 2022-02-26 10:15:17 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2022-02-26 10:32:36 +0200 |
commit | b6321f82f54c4f513d98484c54d88764c867d745 (patch) | |
tree | d83e4270d09039e4eb4e9c6b956fb207436b41ff /net-ftp | |
parent | app-backup/dar: drop 2.7.2 (diff) | |
download | gentoo-b6321f82f54c4f513d98484c54d88764c867d745.tar.gz gentoo-b6321f82f54c4f513d98484c54d88764c867d745.tar.bz2 gentoo-b6321f82f54c4f513d98484c54d88764c867d745.zip |
net-ftp/ncftp: drop 3.2.6-r3
Signed-off-by: Viorel Munteanu <ceamac.paragon@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/24354
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/ncftp/ncftp-3.2.6-r3.ebuild | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/net-ftp/ncftp/ncftp-3.2.6-r3.ebuild b/net-ftp/ncftp/ncftp-3.2.6-r3.ebuild deleted file mode 100644 index de6863dacda0..000000000000 --- a/net-ftp/ncftp/ncftp-3.2.6-r3.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit autotools toolchain-funcs - -DESCRIPTION="An extremely configurable ftp client" -HOMEPAGE="https://www.ncftp.com/" -SRC_URI=" - https://ftp.mirrorservice.org/sites/ftp.${PN}.com/${PN}/${P}-src.tar.xz -" - -LICENSE="Clarified-Artistic" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" -IUSE="pch" - -DEPEND=" - sys-libs/ncurses:= -" -RDEPEND=" - ${DEPEND} -" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${PN}-3.2.6-fno-common.patch -) - -src_prepare() { - default - - sed -i -e '/^AR=/d' 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 -} |