diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2003-12-15 19:42:32 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2003-12-15 19:42:32 +0000 |
commit | f50d57d00d124371ff5118c62c1e9a24d350d81e (patch) | |
tree | 3f13589dd63b831ec41132a29cf60ed752fe03be /net-ftp | |
parent | Marked stable on hppa. (diff) | |
download | gentoo-2-f50d57d00d124371ff5118c62c1e9a24d350d81e.tar.gz gentoo-2-f50d57d00d124371ff5118c62c1e9a24d350d81e.tar.bz2 gentoo-2-f50d57d00d124371ff5118c62c1e9a24d350d81e.zip |
more arch fixes
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/lftp/Manifest | 2 | ||||
-rw-r--r-- | net-ftp/lftp/files/digest-lftp-2.6.6 | 1 | ||||
-rw-r--r-- | net-ftp/lftp/lftp-2.6.6.ebuild | 62 |
3 files changed, 0 insertions, 65 deletions
diff --git a/net-ftp/lftp/Manifest b/net-ftp/lftp/Manifest index abec745b5583..468344a95f59 100644 --- a/net-ftp/lftp/Manifest +++ b/net-ftp/lftp/Manifest @@ -1,8 +1,6 @@ MD5 1670ba811415e89e9969cc9466206053 ChangeLog 5317 MD5 57ba5ae537bc49c2951e748ac1aff7d3 lftp-2.6.5.ebuild 1775 -MD5 d1c625b8220fb8767b49248e270fc966 lftp-2.6.6.ebuild 1661 MD5 4a27e64640fe571de16217bc0e4b9fb3 lftp-2.6.10.ebuild 1349 MD5 096d8792a2b0989e03d9a39f8f5a2495 files/configure-lftp-2.6.2.diff 717 MD5 7c99535ecd134bbecb83e29188da7edc files/digest-lftp-2.6.5 64 -MD5 38ac629933607e376e69154faae961a7 files/digest-lftp-2.6.6 64 MD5 0000187694fd92f30e8669216ab2d7a4 files/digest-lftp-2.6.10 65 diff --git a/net-ftp/lftp/files/digest-lftp-2.6.6 b/net-ftp/lftp/files/digest-lftp-2.6.6 deleted file mode 100644 index 7b2d936b31fd..000000000000 --- a/net-ftp/lftp/files/digest-lftp-2.6.6 +++ /dev/null @@ -1 +0,0 @@ -MD5 fec9d5c2a4ec65eb37fa33d21b869c81 lftp-2.6.6.tar.bz2 1163154 diff --git a/net-ftp/lftp/lftp-2.6.6.ebuild b/net-ftp/lftp/lftp-2.6.6.ebuild deleted file mode 100644 index 5c941fc5d13a..000000000000 --- a/net-ftp/lftp/lftp-2.6.6.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-2.6.6.ebuild,v 1.4 2003/12/15 19:23:08 spider Exp $ - -IUSE="ssl socks5 nls alpha" - -inherit eutils - -DESCRIPTION="A sophisticated ftp/http client, file transfer program." -HOMEPAGE="http://ftp.yars.free.net/projects/lftp/" -SRC_URI="http://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/${P}.tar.bz2" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="-x86 -ppc -sparc -alpha ia64" - -DEPEND=">=sys-libs/ncurses-5.1 - ssl? ( >=dev-libs/openssl-0.9.6 ) - socks5? ( >=net-misc/dante-1.1.12 ) - nls? ( sys-devel/gettext ) - alpha? ( dev-lang/perl ) - alpha? ( >=sys-apps/sed-4 )" -RDEPEND="nls? ( sys-devel/gettext )" - -src_compile() { - local myconf - - use nls && myconf="--enable-nls" \ - || myconf="--disable-nls" - - use ssl && myconf="${myconf} --with-ssl=/usr" \ - || myconf="${myconf} --without-ssl" - - use socks5 && myconf="${myconf} --with-socksdante=/usr" \ - || myconf="${myconf} --without-socksdante" - - econf \ - --sysconfdir=/etc/lftp \ - --without-modules \ - ${myconf} - - [ "${ARCH}" == "alpha" ] && { - # remove duplicate libraries, causes problems on ALPHA. - # -taviso - einfo "Adding check for superfluous linking..." - sed -i \ - 's/\(link_command="\)\($compile_command$compile_rpath\)"/\1\`echo \2 | perl -lane \x27print "@F" if @F = grep \!\$seen{\$_}++, @F\x27\`"/' \ - libtool - } - - make || die "compile problem" -} - -src_install() { - make install DESTDIR=${D} || die - - # hrmph, empty.. - rm -rf ${D}/usr/lib - - dodoc BUGS COPYING ChangeLog FAQ FEATURES MIRRORS \ - NEWS README* THANKS TODO -} |