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.4.ebuild
Date: Wed, 27 Feb 2013 15:26:24
Message-Id: 20130227152620.AF8DC2171D@flycatcher.gentoo.org
1 jer 13/02/27 15:26:20
2
3 Modified: ChangeLog
4 Added: lftp-4.4.4.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.393 net-ftp/lftp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.393&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.393&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.392&r2=1.393
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
20 retrieving revision 1.392
21 retrieving revision 1.393
22 diff -u -r1.392 -r1.393
23 --- ChangeLog 11 Feb 2013 00:13:53 -0000 1.392
24 +++ ChangeLog 27 Feb 2013 15:26:20 -0000 1.393
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.392 2013/02/11 00:13:53 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.393 2013/02/27 15:26:20 jer Exp $
30 +
31 +*lftp-4.4.4 (27 Feb 2013)
32 +
33 + 27 Feb 2013; Jeroen Roovers <jer@g.o> +lftp-4.4.4.ebuild:
34 + Version bump.
35
36 *lftp-4.4.3 (11 Feb 2013)
37
38
39
40
41 1.1 net-ftp/lftp/lftp-4.4.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.4.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.4.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lftp-4.4.4.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.4.ebuild,v 1.1 2013/02/27 15:26:20 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="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 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
62
63 IUSE="gnutls nls 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 RDEPEND="
68 dev-libs/expat
69 >=sys-libs/ncurses-5.1
70 socks5? (
71 >=net-proxy/dante-1.1.12
72 virtual/pam )
73 ssl? (
74 gnutls? ( >=net-libs/gnutls-1.2.3 )
75 !gnutls? ( >=dev-libs/openssl-0.9.6 )
76 )
77 >=sys-libs/readline-5.1
78 "
79
80 DEPEND="
81 ${RDEPEND}
82 =sys-devel/libtool-2*
83 app-arch/xz-utils
84 dev-lang/perl
85 nls? ( sys-devel/gettext )
86 virtual/pkgconfig
87 "
88
89 DOCS=(
90 BUGS ChangeLog FAQ FEATURES MIRRORS NEWS README README.debug-levels
91 README.dnssec README.modules THANKS TODO
92 )
93
94 src_prepare() {
95 epatch \
96 "${FILESDIR}/${PN}-4.0.2.91-lafile.patch" \
97 "${FILESDIR}/${PN}-4.3.5-autopoint.patch" \
98 "${FILESDIR}/${PN}-4.3.8-gets.patch"
99 eautoreconf
100 elibtoolize # for Darwin bundles
101 }
102
103 src_configure() {
104 local myconf=""
105
106 if use ssl && use gnutls ; then
107 myconf="${myconf} --without-openssl"
108 elif use ssl && ! use gnutls ; then
109 myconf="${myconf} --without-gnutls --with-openssl=${EPREFIX}/usr"
110 else
111 myconf="${myconf} --without-gnutls --without-openssl"
112 fi
113
114 use socks5 && myconf="${myconf} --with-socksdante=${EPREFIX}/usr" \
115 || myconf="${myconf} --without-socksdante"
116
117 econf \
118 $(use_enable nls) \
119 ${myconf} \
120 --enable-packager-mode \
121 --sysconfdir="${EPREFIX}"/etc/${PN} \
122 --with-modules \
123 --without-included-regex
124 }