Gentoo Archives: gentoo-commits

From: "Daniel Black (dragonheart)" <dragonheart@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-ftp/lftp: ChangeLog lftp-3.7.4.ebuild lftp-3.7.1.ebuild lftp-3.6.1-r1.ebuild
Date: Sat, 30 Aug 2008 12:27:43
Message-Id: E1KZPYK-0002n8-Cg@stork.gentoo.org
1 dragonheart 08/08/30 12:27:40
2
3 Modified: ChangeLog
4 Added: lftp-3.7.4.ebuild
5 Removed: lftp-3.7.1.ebuild lftp-3.6.1-r1.ebuild
6 Log:
7 version bump as per bug #235422
8 (Portage version: 2.2_rc8/cvs/Linux 2.6.22-vs2.2.0.7-gentoo x86_64)
9
10 Revision Changes Path
11 1.162 net-ftp/lftp/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.162&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.162&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.161&r2=1.162
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
20 retrieving revision 1.161
21 retrieving revision 1.162
22 diff -u -r1.161 -r1.162
23 --- ChangeLog 30 Jun 2008 21:00:30 -0000 1.161
24 +++ ChangeLog 30 Aug 2008 12:27:39 -0000 1.162
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-ftp/lftp
27 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.161 2008/06/30 21:00:30 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.162 2008/08/30 12:27:39 dragonheart Exp $
30 +
31 +*lftp-3.7.4 (30 Aug 2008)
32 +
33 + 30 Aug 2008; Daniel Black <dragonheart@g.o> -lftp-3.6.1-r1.ebuild,
34 + -lftp-3.7.1.ebuild, +lftp-3.7.4.ebuild:
35 + version bump as per bug #235422
36
37 30 Jun 2008; Raúl Porcel <armin76@g.o> lftp-3.7.3.ebuild:
38 alpha/ia64/sparc/x86 stable
39
40
41
42 1.1 net-ftp/lftp/lftp-3.7.4.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/lftp-3.7.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/lftp-3.7.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: lftp-3.7.4.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-3.7.4.ebuild,v 1.1 2008/08/30 12:27:39 dragonheart Exp $
52
53 DESCRIPTION="A sophisticated ftp/sftp/http/https client and file transfer program"
54 HOMEPAGE="http://lftp.yar.ru/"
55 SRC_URI="http://ftp.yars.free.net/pub/source/lftp/${P}.tar.bz2"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
60 IUSE="ssl gnutls socks5 nls"
61
62 RDEPEND=">=sys-libs/ncurses-5.1
63 socks5? (
64 >=net-proxy/dante-1.1.12
65 virtual/pam )
66 ssl? (
67 gnutls? ( >=net-libs/gnutls-1.2.3 )
68 !gnutls? ( >=dev-libs/openssl-0.9.6 )
69 )
70 virtual/libc
71 >=sys-libs/readline-5.1"
72
73 DEPEND="${RDEPEND}
74 nls? ( sys-devel/gettext )
75 dev-lang/perl"
76
77 src_compile() {
78 local myconf="$(use_enable nls) --enable-packager-mode"
79
80 if use ssl && use gnutls ; then
81 myconf="${myconf} --without-openssl"
82 elif use ssl && ! use gnutls ; then
83 myconf="${myconf} --without-gnutls --with-openssl=/usr"
84 else
85 myconf="${myconf} --without-gnutls --without-openssl"
86 fi
87
88 use socks5 && myconf="${myconf} --with-socksdante=/usr" \
89 || myconf="${myconf} --without-socksdante"
90
91 econf \
92 --sysconfdir=/etc/lftp \
93 --with-modules \
94 ${myconf} || die "econf failed"
95
96 emake || die "compile problem"
97 }
98
99 src_install() {
100 emake install DESTDIR="${D}" || die
101
102 dodoc BUGS ChangeLog FAQ FEATURES MIRRORS \
103 NEWS README* THANKS TODO
104 }