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.7.11.ebuild
Date: Mon, 23 Mar 2009 05:40:07
Message-Id: E1LlctI-0002Bl-Tn@stork.gentoo.org
1 jer 09/03/23 05:40:04
2
3 Modified: ChangeLog
4 Added: lftp-3.7.11.ebuild
5 Log:
6 Version bump thanks to Lars (Polynomial-C) (bug #263442).
7 (Portage version: 2.2_rc26/cvs/Linux i686)
8
9 Revision Changes Path
10 1.168 net-ftp/lftp/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.168&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.168&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.167&r2=1.168
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
19 retrieving revision 1.167
20 retrieving revision 1.168
21 diff -u -r1.167 -r1.168
22 --- ChangeLog 20 Mar 2009 09:45:41 -0000 1.167
23 +++ ChangeLog 23 Mar 2009 05:40:04 -0000 1.168
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-ftp/lftp
26 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.167 2009/03/20 09:45:41 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.168 2009/03/23 05:40:04 jer Exp $
29 +
30 +*lftp-3.7.11 (23 Mar 2009)
31 +
32 + 23 Mar 2009; Jeroen Roovers <jer@g.o> +lftp-3.7.11.ebuild:
33 + Version bump thanks to Lars (Polynomial-C) (bug #263442).
34
35 *lftp-3.7.10 (20 Mar 2009)
36
37
38
39
40 1.1 net-ftp/lftp/lftp-3.7.11.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/lftp-3.7.11.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/lftp-3.7.11.ebuild?rev=1.1&content-type=text/plain
44
45 Index: lftp-3.7.11.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.11.ebuild,v 1.1 2009/03/23 05:40:04 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 }