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-3.7.13.ebuild ChangeLog
Date: Sun, 03 May 2009 20:20:07
Message-Id: E1M0dWr-0001WC-Is@stork.gentoo.org
1 jer 09/05/03 15:22:57
2
3 Modified: ChangeLog
4 Added: lftp-3.7.13.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc31/cvs/Linux i686)
8
9 Revision Changes Path
10 1.182 net-ftp/lftp/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.182&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.182&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.181&r2=1.182
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
19 retrieving revision 1.181
20 retrieving revision 1.182
21 diff -u -r1.181 -r1.182
22 --- ChangeLog 3 May 2009 13:21:46 -0000 1.181
23 +++ ChangeLog 3 May 2009 15:22:57 -0000 1.182
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.181 2009/05/03 13:21:46 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.182 2009/05/03 15:22:57 jer Exp $
29 +
30 +*lftp-3.7.13 (03 May 2009)
31 +
32 + 03 May 2009; Jeroen Roovers <jer@g.o> +lftp-3.7.13.ebuild:
33 + Version bump.
34
35 03 May 2009; Markus Meier <maekke@g.o> lftp-3.7.11.ebuild:
36 amd64/x86 stable, bug #267832
37
38
39
40 1.1 net-ftp/lftp/lftp-3.7.13.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/lftp-3.7.13.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/lftp-3.7.13.ebuild?rev=1.1&content-type=text/plain
44
45 Index: lftp-3.7.13.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.7.13.ebuild,v 1.1 2009/05/03 15:22:57 jer Exp $
50
51 DESCRIPTION="A sophisticated ftp/sftp/http/https client and file transfer program"
52 HOMEPAGE="http://lftp.yar.ru/"
53 SRC_URI="http://ftp.yars.free.net/pub/source/lftp/${P}.tar.bz2"
54
55 LICENSE="GPL-3"
56 SLOT="0"
57 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
58 IUSE="ssl gnutls socks5 nls"
59
60 RDEPEND=">=sys-libs/ncurses-5.1
61 socks5? (
62 >=net-proxy/dante-1.1.12
63 virtual/pam )
64 ssl? (
65 gnutls? ( >=net-libs/gnutls-1.2.3 )
66 !gnutls? ( >=dev-libs/openssl-0.9.6 )
67 )
68 virtual/libc
69 >=sys-libs/readline-5.1"
70
71 DEPEND="${RDEPEND}
72 nls? ( sys-devel/gettext )
73 dev-lang/perl"
74
75 src_compile() {
76 local myconf="$(use_enable nls) --enable-packager-mode"
77
78 if use ssl && use gnutls ; then
79 myconf="${myconf} --without-openssl"
80 elif use ssl && ! use gnutls ; then
81 myconf="${myconf} --without-gnutls --with-openssl=/usr"
82 else
83 myconf="${myconf} --without-gnutls --without-openssl"
84 fi
85
86 use socks5 && myconf="${myconf} --with-socksdante=/usr" \
87 || myconf="${myconf} --without-socksdante"
88
89 econf \
90 --sysconfdir=/etc/lftp \
91 --with-modules \
92 ${myconf} || die "econf failed"
93
94 emake || die "compile problem"
95 }
96
97 src_install() {
98 emake install DESTDIR="${D}" || die
99
100 dodoc BUGS ChangeLog FAQ FEATURES MIRRORS \
101 NEWS README* THANKS TODO
102 }