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-3.99.6.ebuild
Date: Thu, 30 Jul 2009 17:20:53
Message-Id: E1MWZJE-0002xQ-0g@stork.gentoo.org
1 jer 09/07/30 17:20:52
2
3 Modified: ChangeLog
4 Added: lftp-3.99.6.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc33/cvs/Linux i686)
8
9 Revision Changes Path
10 1.211 net-ftp/lftp/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.211&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.211&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.210&r2=1.211
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
19 retrieving revision 1.210
20 retrieving revision 1.211
21 diff -u -r1.210 -r1.211
22 --- ChangeLog 29 Jul 2009 05:05:15 -0000 1.210
23 +++ ChangeLog 30 Jul 2009 17:20:51 -0000 1.211
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-ftp/lftp
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.210 2009/07/29 05:05:15 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.211 2009/07/30 17:20:51 jer Exp $
29 +
30 +*lftp-3.99.6 (30 Jul 2009)
31 +
32 + 30 Jul 2009; Jeroen Roovers <jer@g.o> +lftp-3.99.6.ebuild:
33 + Version bump.
34
35 29 Jul 2009; Jeroen Roovers <jer@g.o> lftp-3.99.5.ebuild,
36 +files/lftp-3.99.5-torrent_la.patch:
37
38
39
40 1.1 net-ftp/lftp/lftp-3.99.6.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/lftp-3.99.6.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/lftp-3.99.6.ebuild?rev=1.1&content-type=text/plain
44
45 Index: lftp-3.99.6.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-3.99.6.ebuild,v 1.1 2009/07/30 17:20:51 jer Exp $
50
51 EAPI="2"
52
53 inherit eutils autotools
54
55 DESCRIPTION="A sophisticated ftp/sftp/http/https client and file transfer program"
56 HOMEPAGE="http://lftp.yar.ru/"
57 SRC_URI="ftp://ftp.yar.ru/lftp/devel/${P}.tar.gz"
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=">=sys-libs/ncurses-5.1
65 socks5? (
66 >=net-proxy/dante-1.1.12
67 virtual/pam )
68 ssl? (
69 gnutls? ( >=net-libs/gnutls-1.2.3 )
70 !gnutls? ( >=dev-libs/openssl-0.9.6 )
71 )
72 virtual/libc
73 >=sys-libs/readline-5.1"
74
75 DEPEND="
76 ${RDEPEND}
77 nls? ( sys-devel/gettext )
78 dev-lang/perl
79 =sys-devel/libtool-2*
80 "
81
82 src_prepare() {
83 epatch "${FILESDIR}/${PN}-gnutls.patch"
84 epatch "${FILESDIR}/${PN}-3.99.5-torrent_la.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 }