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.8.ebuild ChangeLog
Date: Wed, 29 May 2013 14:27:45
Message-Id: 20130529142741.D57B52171D@flycatcher.gentoo.org
1 jer 13/05/29 14:27:41
2
3 Modified: ChangeLog
4 Added: lftp-4.4.8.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.410 net-ftp/lftp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.410&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.410&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.409&r2=1.410
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
20 retrieving revision 1.409
21 retrieving revision 1.410
22 diff -u -r1.409 -r1.410
23 --- ChangeLog 23 May 2013 15:11:15 -0000 1.409
24 +++ ChangeLog 29 May 2013 14:27:41 -0000 1.410
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.409 2013/05/23 15:11:15 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.410 2013/05/29 14:27:41 jer Exp $
30 +
31 +*lftp-4.4.8 (29 May 2013)
32 +
33 + 29 May 2013; Jeroen Roovers <jer@g.o> +lftp-4.4.8.ebuild:
34 + Version bump.
35
36 *lftp-4.4.7 (23 May 2013)
37
38
39
40
41 1.1 net-ftp/lftp/lftp-4.4.8.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.4.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.4.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lftp-4.4.8.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.8.ebuild,v 1.1 2013/05/29 14:27:41 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 >=sys-libs/ncurses-5.1
73 >=sys-libs/readline-5.1
74 dev-libs/expat
75 sys-libs/zlib
76 socks5? (
77 >=net-proxy/dante-1.1.12
78 virtual/pam
79 )
80 ssl? (
81 gnutls? ( >=net-libs/gnutls-1.2.3 )
82 openssl? ( >=dev-libs/openssl-0.9.6 )
83 )
84 "
85
86 DEPEND="
87 ${RDEPEND}
88 =sys-devel/libtool-2*
89 app-arch/xz-utils
90 dev-lang/perl
91 nls? ( sys-devel/gettext )
92 virtual/pkgconfig
93 "
94
95 DOCS=(
96 BUGS ChangeLog FAQ FEATURES MIRRORS NEWS README README.debug-levels
97 README.dnssec README.modules THANKS TODO
98 )
99
100 src_prepare() {
101 epatch \
102 "${FILESDIR}/${PN}-4.0.2.91-lafile.patch" \
103 "${FILESDIR}/${PN}-4.3.5-autopoint.patch" \
104 "${FILESDIR}/${PN}-4.3.8-gets.patch"
105 sed -i configure.ac -e 's|^AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' || die
106 eautoreconf
107 elibtoolize # for Darwin bundles
108 }
109
110 src_configure() {
111 econf \
112 $(use_enable nls) \
113 $(use_with gnutls) \
114 $(use_with openssl openssl "${EPREFIX}"/usr) \
115 $(use_with socks5 socksdante "${EPREFIX}"/usr) \
116 --enable-packager-mode \
117 --sysconfdir="${EPREFIX}"/etc/${PN} \
118 --with-modules \
119 --without-included-regex
120 }