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.1.1.ebuild lftp-4.1.0.ebuild
Date: Thu, 25 Nov 2010 13:42:25
Message-Id: 20101125134221.175A620051@flycatcher.gentoo.org
1 jer 10/11/25 13:42:21
2
3 Modified: ChangeLog
4 Added: lftp-4.1.1.ebuild
5 Removed: lftp-4.1.0.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.1.9.24/cvs/Linux i686)
10
11 Revision Changes Path
12 1.280 net-ftp/lftp/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.280&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.280&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.279&r2=1.280
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
21 retrieving revision 1.279
22 retrieving revision 1.280
23 diff -u -r1.279 -r1.280
24 --- ChangeLog 23 Nov 2010 16:05:24 -0000 1.279
25 +++ ChangeLog 25 Nov 2010 13:42:21 -0000 1.280
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.279 2010/11/23 16:05:24 jer Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.280 2010/11/25 13:42:21 jer Exp $
31 +
32 +*lftp-4.1.1 (25 Nov 2010)
33 +
34 + 25 Nov 2010; Jeroen Roovers <jer@g.o> -lftp-4.1.0.ebuild,
35 + +lftp-4.1.1.ebuild:
36 + Version bump.
37
38 *lftp-4.1.0 (23 Nov 2010)
39
40
41
42
43 1.1 net-ftp/lftp/lftp-4.1.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.1.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.1.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: lftp-4.1.1.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.1.1.ebuild,v 1.1 2010/11/25 13:42:21 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 }