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: lftp-4.3.1.ebuild ChangeLog
Date: Tue, 28 Jun 2011 18:51:35
Message-Id: 20110628184849.8D25720054@flycatcher.gentoo.org
1 jer 11/06/28 18:48:49
2
3 Modified: ChangeLog
4 Added: lftp-4.3.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.308 net-ftp/lftp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.308&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.308&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.307&r2=1.308
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
20 retrieving revision 1.307
21 retrieving revision 1.308
22 diff -u -r1.307 -r1.308
23 --- ChangeLog 24 Jun 2011 16:45:43 -0000 1.307
24 +++ ChangeLog 28 Jun 2011 18:48:49 -0000 1.308
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-ftp/lftp
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.307 2011/06/24 16:45:43 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.308 2011/06/28 18:48:49 jer Exp $
30 +
31 +*lftp-4.3.1 (28 Jun 2011)
32 +
33 + 28 Jun 2011; Jeroen Roovers <jer@g.o> +lftp-4.3.1.ebuild:
34 + Version bump.
35
36 24 Jun 2011; Raúl Porcel <armin76@g.o> lftp-4.2.3.ebuild:
37 alpha/ia64/s390/sparc stable wrt #369681
38
39
40
41 1.1 net-ftp/lftp/lftp-4.3.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.3.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.3.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lftp-4.3.1.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.3.1.ebuild,v 1.1 2011/06/28 18:48:49 jer Exp $
51
52 EAPI="3"
53
54 inherit autotools eutils
55
56 DESCRIPTION="A sophisticated ftp/sftp/http/https/torrent client and file transfer program"
57 HOMEPAGE="http://lftp.yar.ru/"
58 SRC_URI="http://ftp.yars.free.net/pub/source/${PN}/${P}.tar.xz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
63 IUSE="ssl gnutls socks5 nls"
64
65 RDEPEND="
66 >=sys-libs/ncurses-5.1
67 socks5? (
68 >=net-proxy/dante-1.1.12
69 virtual/pam )
70 ssl? (
71 gnutls? ( >=net-libs/gnutls-1.2.3 )
72 !gnutls? ( >=dev-libs/openssl-0.9.6 )
73 )
74 >=sys-libs/readline-5.1
75 "
76
77 DEPEND="
78 ${RDEPEND}
79 =sys-devel/libtool-2*
80 app-arch/xz-utils
81 dev-lang/perl
82 dev-util/pkgconfig
83 nls? ( sys-devel/gettext )
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 }