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-4.4.7.ebuild ChangeLog
Date: Thu, 23 May 2013 15:11:22
Message-Id: 20130523151115.C70DC2171D@flycatcher.gentoo.org
1 jer 13/05/23 15:11:15
2
3 Modified: ChangeLog
4 Added: lftp-4.4.7.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha176/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.409 net-ftp/lftp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.409&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.409&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.408&r2=1.409
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
20 retrieving revision 1.408
21 retrieving revision 1.409
22 diff -u -r1.408 -r1.409
23 --- ChangeLog 17 May 2013 13:41:03 -0000 1.408
24 +++ ChangeLog 23 May 2013 15:11:15 -0000 1.409
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-ftp/lftp
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.408 2013/05/17 13:41:03 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.409 2013/05/23 15:11:15 jer Exp $
30 +
31 +*lftp-4.4.7 (23 May 2013)
32 +
33 + 23 May 2013; Jeroen Roovers <jer@g.o> +lftp-4.4.7.ebuild:
34 + Version bump.
35
36 *lftp-4.4.6 (17 May 2013)
37
38
39
40
41 1.1 net-ftp/lftp/lftp-4.4.7.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.4.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.4.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lftp-4.4.7.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.7.ebuild,v 1.1 2013/05/23 15:11:15 jer Exp $
51
52 EAPI=5
53 inherit autotools eutils libtool
54
55 DESCRIPTION="A sophisticated ftp/sftp/http/https/torrent client and file transfer program"
56 HOMEPAGE="http://lftp.yar.ru/"
57 SRC_URI="ftp://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 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
62
63 IUSE="+gnutls nls openssl socks5 +ssl"
64 LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru zh_CN zh_HK zh_TW )
65 IUSE+=" ${LFTP_LINGUAS[@]/#/linguas_}"
66
67 REQUIRED_USE="
68 ssl? ( ^^ ( openssl gnutls ) )
69 "
70
71 RDEPEND="
72 dev-libs/expat
73 >=sys-libs/ncurses-5.1
74 socks5? (
75 >=net-proxy/dante-1.1.12
76 virtual/pam
77 )
78 ssl? (
79 gnutls? ( >=net-libs/gnutls-1.2.3 )
80 openssl? ( >=dev-libs/openssl-0.9.6 )
81 )
82 >=sys-libs/readline-5.1
83 "
84
85 DEPEND="
86 ${RDEPEND}
87 =sys-devel/libtool-2*
88 app-arch/xz-utils
89 dev-lang/perl
90 nls? ( sys-devel/gettext )
91 virtual/pkgconfig
92 "
93
94 DOCS=(
95 BUGS ChangeLog FAQ FEATURES MIRRORS NEWS README README.debug-levels
96 README.dnssec README.modules THANKS TODO
97 )
98
99 src_prepare() {
100 epatch \
101 "${FILESDIR}/${PN}-4.0.2.91-lafile.patch" \
102 "${FILESDIR}/${PN}-4.3.5-autopoint.patch" \
103 "${FILESDIR}/${PN}-4.3.8-gets.patch"
104 sed -i configure.ac -e 's|^AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' || die
105 eautoreconf
106 elibtoolize # for Darwin bundles
107 }
108
109 src_configure() {
110 econf \
111 $(use_enable nls) \
112 $(use_with gnutls) \
113 $(use_with openssl openssl "${EPREFIX}"/usr) \
114 $(use_with socks5 socksdante "${EPREFIX}"/usr) \
115 --enable-packager-mode \
116 --sysconfdir="${EPREFIX}"/etc/${PN} \
117 --with-modules \
118 --without-included-regex
119 }