diff options
author | Tavis Ormandy <taviso@gentoo.org> | 2003-09-21 19:24:31 +0000 |
---|---|---|
committer | Tavis Ormandy <taviso@gentoo.org> | 2003-09-21 19:24:31 +0000 |
commit | 6e7dcd4fa4914550ce298cb9b2a0b0e68bdef978 (patch) | |
tree | a715a8b06db7a5aca6400961c298ce1121a3119b /net-ftp | |
parent | Enigmail update (diff) | |
download | gentoo-2-6e7dcd4fa4914550ce298cb9b2a0b0e68bdef978.tar.gz gentoo-2-6e7dcd4fa4914550ce298cb9b2a0b0e68bdef978.tar.bz2 gentoo-2-6e7dcd4fa4914550ce298cb9b2a0b0e68bdef978.zip |
duplicate libs no longer a problem on alpha.
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/lftp/ChangeLog | 6 | ||||
-rw-r--r-- | net-ftp/lftp/Manifest | 4 | ||||
-rw-r--r-- | net-ftp/lftp/lftp-2.6.7.ebuild | 13 |
3 files changed, 9 insertions, 14 deletions
diff --git a/net-ftp/lftp/ChangeLog b/net-ftp/lftp/ChangeLog index 37ac7d585794..a4a70aa01198 100644 --- a/net-ftp/lftp/ChangeLog +++ b/net-ftp/lftp/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-ftp/lftp # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.30 2003/09/20 03:59:00 iggy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.31 2003/09/21 19:24:26 taviso Exp $ + + 21 Sep 2003; Tavis Ormandy <taviso@gentoo.org> lftp-2.6.7.ebuild: + sed to remove duplicate libraries on alpha no longer required, appears + to be fixed in this version. *lftp-2.6.7 (19 Sep 2003) diff --git a/net-ftp/lftp/Manifest b/net-ftp/lftp/Manifest index 85a3fd19f6ad..b72ebbc0aaf9 100644 --- a/net-ftp/lftp/Manifest +++ b/net-ftp/lftp/Manifest @@ -3,9 +3,9 @@ MD5 64ab3dacc5e1a56a179575d8d784d8bd lftp-2.6.6.ebuild 1660 MD5 7d8cdc34af7fd9ac47db4832ab8c2407 lftp-2.6.3.ebuild 1426 MD5 87a127e2d12bd6030401957fdef829fa lftp-2.5.4-r1.ebuild 1234 MD5 d4ed32462097adfb3aa551d252d5e35f lftp-2.6.5.ebuild 1773 -MD5 374df7fe50e888b563577f59b7d2a3ea lftp-2.6.7.ebuild 1684 +MD5 d944e75cb2b4582f25561b96dfe66c66 lftp-2.6.7.ebuild 1352 MD5 18477b1232fc6f3f0eb8ab2f55073fd5 lftp-2.6.2.ebuild 1605 -MD5 6cdb160bdb6d618cbdd26c46241e5a58 ChangeLog 4813 +MD5 dcdf775a890fe864e9effd3fb99b105f ChangeLog 4988 MD5 096d8792a2b0989e03d9a39f8f5a2495 files/configure-lftp-2.6.2.diff 717 MD5 b39ba922d0d3b3f4a352d25f38d88364 files/digest-lftp-2.5.4-r1 64 MD5 f2a4efd6f8acc770b7e2603e9340d0e9 files/digest-lftp-2.6.2 64 diff --git a/net-ftp/lftp/lftp-2.6.7.ebuild b/net-ftp/lftp/lftp-2.6.7.ebuild index 89a5fd32e2cc..97e8060d00e0 100644 --- a/net-ftp/lftp/lftp-2.6.7.ebuild +++ b/net-ftp/lftp/lftp-2.6.7.ebuild @@ -1,8 +1,8 @@ # 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.7.ebuild,v 1.1 2003/09/20 03:59:00 iggy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-2.6.7.ebuild,v 1.2 2003/09/21 19:24:26 taviso Exp $ -IUSE="ssl socks5 nls alpha" +IUSE="ssl socks5 nls" inherit eutils @@ -39,15 +39,6 @@ src_compile() { --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" } |