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.4.0.ebuild
Date: Sat, 29 Sep 2012 16:38:08
Message-Id: 20120929163707.98AAF21600@flycatcher.gentoo.org
1 jer 12/09/29 16:37:07
2
3 Modified: ChangeLog
4 Added: lftp-4.4.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.382 net-ftp/lftp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.382&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.382&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.381&r2=1.382
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
20 retrieving revision 1.381
21 retrieving revision 1.382
22 diff -u -r1.381 -r1.382
23 --- ChangeLog 11 Sep 2012 15:50:19 -0000 1.381
24 +++ ChangeLog 29 Sep 2012 16:37:07 -0000 1.382
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-ftp/lftp
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.381 2012/09/11 15:50:19 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.382 2012/09/29 16:37:07 jer Exp $
30 +
31 +*lftp-4.4.0 (29 Sep 2012)
32 +
33 + 29 Sep 2012; Jeroen Roovers <jer@g.o> +lftp-4.4.0.ebuild:
34 + Version bump.
35
36 11 Sep 2012; Raúl Porcel <armin76@g.o> lftp-4.3.8.ebuild:
37 alpha/ia64/s390/sparc stable wrt #432018
38
39
40
41 1.1 net-ftp/lftp/lftp-4.4.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.4.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.4.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lftp-4.4.0.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.0.ebuild,v 1.1 2012/09/29 16:37:07 jer Exp $
51
52 EAPI=4
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.xz"
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
63 LFTP_LINGUAS="cs de es fr it ja ko pl pt_BR ru zh_CN zh_HK zh_TW"
64
65 IUSE="
66 $( for i in ${LFTP_LINGUAS}; do echo linguas_${i}; done )
67 gnutls nls socks5 +ssl
68 "
69
70 RDEPEND="
71 dev-libs/expat
72 >=sys-libs/ncurses-5.1
73 socks5? (
74 >=net-proxy/dante-1.1.12
75 virtual/pam )
76 ssl? (
77 gnutls? ( >=net-libs/gnutls-1.2.3 )
78 !gnutls? ( >=dev-libs/openssl-0.9.6 )
79 )
80 >=sys-libs/readline-5.1
81 "
82
83 DEPEND="
84 ${RDEPEND}
85 =sys-devel/libtool-2*
86 app-arch/xz-utils
87 dev-lang/perl
88 virtual/pkgconfig
89 nls? ( sys-devel/gettext )
90 "
91
92 DOCS=(
93 BUGS ChangeLog FAQ FEATURES MIRRORS NEWS README README.debug-levels
94 README.dnssec README.modules THANKS TODO
95 )
96
97 src_prepare() {
98 epatch \
99 "${FILESDIR}/${PN}-4.0.2.91-lafile.patch" \
100 "${FILESDIR}/${PN}-4.3.5-autopoint.patch" \
101 "${FILESDIR}/${PN}-4.3.8-gets.patch"
102 eautoreconf
103 }
104
105 src_configure() {
106 local myconf=""
107
108 if use ssl && use gnutls ; then
109 myconf="${myconf} --without-openssl"
110 elif use ssl && ! use gnutls ; then
111 myconf="${myconf} --without-gnutls --with-openssl=/usr"
112 else
113 myconf="${myconf} --without-gnutls --without-openssl"
114 fi
115
116 use socks5 && myconf="${myconf} --with-socksdante=/usr" \
117 || myconf="${myconf} --without-socksdante"
118
119 econf \
120 --enable-packager-mode \
121 --sysconfdir=/etc/lftp \
122 --with-modules \
123 $(use_enable nls) \
124 ${myconf}
125 }