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.3.4.ebuild
Date: Sat, 31 Dec 2011 19:47:19
Message-Id: 20111231194705.22AB92004B@flycatcher.gentoo.org
1 jer 11/12/31 19:47:05
2
3 Modified: ChangeLog
4 Added: lftp-4.3.4.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.333 net-ftp/lftp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.333&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.333&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.332&r2=1.333
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
20 retrieving revision 1.332
21 retrieving revision 1.333
22 diff -u -r1.332 -r1.333
23 --- ChangeLog 21 Dec 2011 18:17:38 -0000 1.332
24 +++ ChangeLog 31 Dec 2011 19:47:05 -0000 1.333
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.332 2011/12/21 18:17:38 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.333 2011/12/31 19:47:05 jer Exp $
30 +
31 +*lftp-4.3.4 (31 Dec 2011)
32 +
33 + 31 Dec 2011; Jeroen Roovers <jer@g.o> +lftp-4.3.4.ebuild:
34 + Version bump.
35
36 21 Dec 2011; Jeroen Roovers <jer@g.o> lftp-4.3.1.ebuild,
37 -lftp-4.3.2.ebuild:
38
39
40
41 1.1 net-ftp/lftp/lftp-4.3.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.3.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.3.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lftp-4.3.4.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.4.ebuild,v 1.1 2011/12/31 19:47:05 jer Exp $
51
52 EAPI="4"
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 dev-libs/expat
67 >=sys-libs/ncurses-5.1
68 socks5? (
69 >=net-proxy/dante-1.1.12
70 virtual/pam )
71 ssl? (
72 gnutls? ( >=net-libs/gnutls-1.2.3 )
73 !gnutls? ( >=dev-libs/openssl-0.9.6 )
74 )
75 >=sys-libs/readline-5.1
76 "
77
78 DEPEND="
79 ${RDEPEND}
80 =sys-devel/libtool-2*
81 app-arch/xz-utils
82 dev-lang/perl
83 dev-util/pkgconfig
84 nls? ( sys-devel/gettext )
85 "
86
87 DOCS=(
88 BUGS ChangeLog FAQ FEATURES MIRRORS NEWS README README.debug-levels
89 README.dnssec README.modules THANKS TODO
90 )
91
92 src_prepare() {
93 epatch "${FILESDIR}/${PN}-4.0.2.91-lafile.patch"
94 epatch "${FILESDIR}/${PN}-4.0.3-autoconf-2.64.patch"
95 eautoreconf
96 }
97
98 src_configure() {
99 local myconf=""
100
101 if use ssl && use gnutls ; then
102 myconf="${myconf} --without-openssl"
103 elif use ssl && ! use gnutls ; then
104 myconf="${myconf} --without-gnutls --with-openssl=/usr"
105 else
106 myconf="${myconf} --without-gnutls --without-openssl"
107 fi
108
109 use socks5 && myconf="${myconf} --with-socksdante=/usr" \
110 || myconf="${myconf} --without-socksdante"
111
112 econf \
113 --enable-packager-mode \
114 --sysconfdir=/etc/lftp \
115 --with-modules \
116 $(use_enable nls) \
117 ${myconf}
118 }