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.4.ebuild
Date: Mon, 30 Nov 2009 02:46:16
Message-Id: E1NEwHE-0006Xt-U4@stork.gentoo.org
1 jer 09/11/30 02:46:12
2
3 Modified: ChangeLog
4 Added: lftp-4.0.4.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc54/cvs/Linux i686)
8
9 Revision Changes Path
10 1.248 net-ftp/lftp/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.248&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.248&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.247&r2=1.248
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
19 retrieving revision 1.247
20 retrieving revision 1.248
21 diff -u -r1.247 -r1.248
22 --- ChangeLog 28 Nov 2009 16:10:38 -0000 1.247
23 +++ ChangeLog 30 Nov 2009 02:46:12 -0000 1.248
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.247 2009/11/28 16:10:38 tcunha Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.248 2009/11/30 02:46:12 jer Exp $
29 +
30 +*lftp-4.0.4 (30 Nov 2009)
31 +
32 + 30 Nov 2009; Jeroen Roovers <jer@g.o> +lftp-4.0.4.ebuild:
33 + Version bump.
34
35 28 Nov 2009; Tiago Cunha <tcunha@g.o> lftp-4.0.3.ebuild:
36 stable sparc, bug 293737
37
38
39
40 1.1 net-ftp/lftp/lftp-4.0.4.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/lftp-4.0.4.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/lftp-4.0.4.ebuild?rev=1.1&content-type=text/plain
44
45 Index: lftp-4.0.4.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-4.0.4.ebuild,v 1.1 2009/11/30 02:46:12 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 }