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