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.7.ebuild
Date: Tue, 04 Aug 2009 13:43:16
Message-Id: E1MYKIM-0005K4-6k@stork.gentoo.org
1 jer 09/08/04 13:43:14
2
3 Modified: ChangeLog
4 Added: lftp-3.99.7.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc35/cvs/Linux i686)
8
9 Revision Changes Path
10 1.212 net-ftp/lftp/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.212&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.212&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.211&r2=1.212
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
19 retrieving revision 1.211
20 retrieving revision 1.212
21 diff -u -r1.211 -r1.212
22 --- ChangeLog 30 Jul 2009 17:20:51 -0000 1.211
23 +++ ChangeLog 4 Aug 2009 13:43:14 -0000 1.212
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.211 2009/07/30 17:20:51 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.212 2009/08/04 13:43:14 jer Exp $
29 +
30 +*lftp-3.99.7 (04 Aug 2009)
31 +
32 + 04 Aug 2009; Jeroen Roovers <jer@g.o> +lftp-3.99.7.ebuild:
33 + Version bump.
34
35 *lftp-3.99.6 (30 Jul 2009)
36
37
38
39
40 1.1 net-ftp/lftp/lftp-3.99.7.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/lftp-3.99.7.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/lftp-3.99.7.ebuild?rev=1.1&content-type=text/plain
44
45 Index: lftp-3.99.7.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.7.ebuild,v 1.1 2009/08/04 13:43:14 jer Exp $
50
51 EAPI="2"
52
53 inherit eutils
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_configure() {
83 local myconf="$(use_enable nls) --enable-packager-mode"
84
85 if use ssl && use gnutls ; then
86 myconf="${myconf} --without-openssl"
87 elif use ssl && ! use gnutls ; then
88 myconf="${myconf} --without-gnutls --with-openssl=/usr"
89 else
90 myconf="${myconf} --without-gnutls --without-openssl"
91 fi
92
93 use socks5 && myconf="${myconf} --with-socksdante=/usr" \
94 || myconf="${myconf} --without-socksdante"
95
96 econf \
97 --sysconfdir=/etc/lftp \
98 --with-modules \
99 ${myconf} || die "econf failed"
100 }
101
102 src_install() {
103 emake install DESTDIR="${D}" || die
104
105 dodoc BUGS ChangeLog FAQ FEATURES MIRRORS \
106 NEWS README* THANKS TODO
107 }