Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-ftp/lftp: ChangeLog lftp-4.0.10.ebuild lftp-4.0.9.1.ebuild
Date: Thu, 02 Sep 2010 19:44:16
Message-Id: 20100902194412.AC8CF20051@flycatcher.gentoo.org
1 jer 10/09/02 19:44:12
2
3 Modified: ChangeLog
4 Added: lftp-4.0.10.ebuild
5 Removed: lftp-4.0.9.1.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2_rc73/cvs/Linux i686)
10
11 Revision Changes Path
12 1.271 net-ftp/lftp/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.271&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.271&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.270&r2=1.271
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
21 retrieving revision 1.270
22 retrieving revision 1.271
23 diff -u -r1.270 -r1.271
24 --- ChangeLog 3 Aug 2010 17:18:05 -0000 1.270
25 +++ ChangeLog 2 Sep 2010 19:44:12 -0000 1.271
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-ftp/lftp
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.270 2010/08/03 17:18:05 ranger Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.271 2010/09/02 19:44:12 jer Exp $
31 +
32 +*lftp-4.0.10 (02 Sep 2010)
33 +
34 + 02 Sep 2010; Jeroen Roovers <jer@g.o> -lftp-4.0.9.1.ebuild,
35 + +lftp-4.0.10.ebuild:
36 + Version bump.
37
38 03 Aug 2010; Brent Baude <ranger@g.o> lftp-4.0.9.ebuild:
39 Marking lftp-4.0.9 ppc64 for bug 329939
40
41
42
43 1.1 net-ftp/lftp/lftp-4.0.10.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.0.10.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.0.10.ebuild?rev=1.1&content-type=text/plain
47
48 Index: lftp-4.0.10.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.0.10.ebuild,v 1.1 2010/09/02 19:44:12 jer Exp $
53
54 EAPI="2"
55
56 inherit autotools eutils
57
58 DESCRIPTION="A sophisticated ftp/sftp/http/https/torrent client and file transfer program"
59 HOMEPAGE="http://lftp.yar.ru/"
60 SRC_URI="http://ftp.yars.free.net/pub/source/${PN}/${P}.tar.bz2"
61
62 LICENSE="GPL-3"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
65 IUSE="ssl gnutls socks5 nls"
66
67 RDEPEND="
68 >=sys-libs/ncurses-5.1
69 socks5? (
70 >=net-proxy/dante-1.1.12
71 virtual/pam )
72 ssl? (
73 gnutls? ( >=net-libs/gnutls-1.2.3 )
74 !gnutls? ( >=dev-libs/openssl-0.9.6 )
75 )
76 >=sys-libs/readline-5.1
77 "
78
79 DEPEND="
80 ${RDEPEND}
81 nls? ( sys-devel/gettext )
82 dev-lang/perl
83 =sys-devel/libtool-2*
84 "
85 src_prepare() {
86 epatch "${FILESDIR}/${PN}-4.0.2.91-lafile.patch"
87 epatch "${FILESDIR}/${PN}-4.0.3-autoconf-2.64.patch"
88 eautoreconf
89 }
90
91 src_configure() {
92 local myconf="$(use_enable nls) --enable-packager-mode"
93
94 if use ssl && use gnutls ; then
95 myconf="${myconf} --without-openssl"
96 elif use ssl && ! use gnutls ; then
97 myconf="${myconf} --without-gnutls --with-openssl=/usr"
98 else
99 myconf="${myconf} --without-gnutls --without-openssl"
100 fi
101
102 use socks5 && myconf="${myconf} --with-socksdante=/usr" \
103 || myconf="${myconf} --without-socksdante"
104
105 econf \
106 --sysconfdir=/etc/lftp \
107 --with-modules \
108 ${myconf} || die "econf failed"
109 }
110
111 src_install() {
112 emake install DESTDIR="${D}" || die
113
114 dodoc BUGS ChangeLog FAQ FEATURES MIRRORS \
115 NEWS README* THANKS TODO
116 }