summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-03-14 00:14:53 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-03-14 00:14:53 +0000
commitad281f3a1c690369ae8fb438dbf89038dfb22424 (patch)
tree7bc2065ef868da48a619e528fd4fafc2fb6a1881 /net-ftp
parentRemove old. (diff)
downloadgentoo-2-ad281f3a1c690369ae8fb438dbf89038dfb22424.tar.gz
gentoo-2-ad281f3a1c690369ae8fb438dbf89038dfb22424.tar.bz2
gentoo-2-ad281f3a1c690369ae8fb438dbf89038dfb22424.zip
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'net-ftp')
-rw-r--r--net-ftp/yafc/ChangeLog8
-rw-r--r--net-ftp/yafc/yafc-1.1.2.ebuild53
-rw-r--r--net-ftp/yafc/yafc-1.2.5.ebuild46
3 files changed, 6 insertions, 101 deletions
diff --git a/net-ftp/yafc/ChangeLog b/net-ftp/yafc/ChangeLog
index 3102ac015298..b28f854915e4 100644
--- a/net-ftp/yafc/ChangeLog
+++ b/net-ftp/yafc/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-ftp/yafc
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/yafc/ChangeLog,v 1.44 2014/07/22 04:11:55 patrick Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/yafc/ChangeLog,v 1.45 2015/03/14 00:14:53 mrueg Exp $
+
+ 14 Mar 2015; Manuel Rüger <mrueg@gentoo.org> -yafc-1.1.2.ebuild,
+ -yafc-1.2.5.ebuild:
+ Remove old.
*yafc-1.2.6 (22 Jul 2014)
diff --git a/net-ftp/yafc/yafc-1.1.2.ebuild b/net-ftp/yafc/yafc-1.1.2.ebuild
deleted file mode 100644
index f8ecda162f11..000000000000
--- a/net-ftp/yafc/yafc-1.1.2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/yafc/yafc-1.1.2.ebuild,v 1.3 2011/04/29 15:13:37 ssuominen Exp $
-
-EAPI=2
-inherit eutils
-
-DESCRIPTION="Console ftp client with a lot of nifty features"
-HOMEPAGE="http://yafc.sourceforge.net/"
-SRC_URI="http://github.com/downloads/cpages/yafc/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="readline kerberos socks5"
-
-DEPEND="readline? ( >=sys-libs/readline-6 )
- kerberos? ( virtual/krb5 )
- socks5? ( net-proxy/dante )"
-RDEPEND="${DEPEND}
- >=net-misc/openssh-3"
-
-src_configure() {
- local myconf=""
-
- if use kerberos; then
- if has_version app-crypt/heimdal; then
- myconf="${myconf} --with-krb5=/usr/ --with-krb4=no --with-gssapi=/usr"
- elif has_version app-crypt/mit-krb5; then
- myconf="${myconf} --with-krb5=/usr/ --with-krb4=no --with-gssapi=/usr"
- else
- ewarn "No supported kerberos providers detected"
- myconf="${myconf} --without-krb4 --without-krb5"
- fi
- else
- myconf="${myconf} --without-krb4 --without-krb5"
- fi
-
- use socks5 && myconf="${myconf} --with-socks5=/usr" \
- || myconf="${myconf} --with-socks5=no"
-
- use readline && myconf="${myconf} --with-readline=/usr" \
- || myconf="${myconf} --with-readline=no"
-
- econf \
- $(use_with readline) \
- ${myconf}
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc BUGS NEWS README THANKS TODO *.sample || die
-}
diff --git a/net-ftp/yafc/yafc-1.2.5.ebuild b/net-ftp/yafc/yafc-1.2.5.ebuild
deleted file mode 100644
index 3b24e1492a5f..000000000000
--- a/net-ftp/yafc/yafc-1.2.5.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/yafc/yafc-1.2.5.ebuild,v 1.1 2013/08/16 08:19:45 pinkbyte Exp $
-
-EAPI=5
-
-inherit bash-completion-r1 eutils
-
-DESCRIPTION="Console ftp client with a lot of nifty features"
-HOMEPAGE="http://www.yafc-ftp.com/"
-SRC_URI="http://www.yafc-ftp.com/upload/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
-IUSE="ipv6 readline kerberos socks5 ssh"
-
-DEPEND="dev-libs/openssl:0
- readline? ( >=sys-libs/readline-6 )
- kerberos? ( virtual/krb5 )
- socks5? ( net-proxy/dante )
- ssh? ( net-libs/libssh )"
-RDEPEND="${DEPEND}"
-
-DOCS=( BUGS NEWS README THANKS TODO )
-
-src_prepare() {
- epatch_user
-}
-
-src_configure() {
- export ac_cv_ipv6=$(usex ipv6)
- econf \
- $(use_with readline readline /usr) \
- $(use_with socks5 socks /usr) \
- $(use_with socks5 socks5 /usr) \
- $(use_with kerberos krb5) \
- $(use_with ssh) \
- --with-bash-completion="$(get_bashcompdir)" \
- --without-krb4
-}
-
-src_install() {
- default
- dodoc -r samples
-}