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.5.0_pre20131206.ebuild ChangeLog
Date: Fri, 06 Dec 2013 14:11:15
Message-Id: 20131206141110.D31462004B@flycatcher.gentoo.org
1 jer 13/12/06 14:11:10
2
3 Modified: ChangeLog
4 Added: lftp-4.5.0_pre20131206.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.437 net-ftp/lftp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.437&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.437&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.436&r2=1.437
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
20 retrieving revision 1.436
21 retrieving revision 1.437
22 diff -u -r1.436 -r1.437
23 --- ChangeLog 26 Nov 2013 11:27:43 -0000 1.436
24 +++ ChangeLog 6 Dec 2013 14:11:10 -0000 1.437
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.436 2013/11/26 11:27:43 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.437 2013/12/06 14:11:10 jer Exp $
30 +
31 +*lftp-4.5.0_pre20131206 (06 Dec 2013)
32 +
33 + 06 Dec 2013; Jeroen Roovers <jer@g.o> +lftp-4.5.0_pre20131206.ebuild:
34 + Version bump.
35
36 *lftp-4.4.13 (26 Nov 2013)
37
38
39
40
41 1.1 net-ftp/lftp/lftp-4.5.0_pre20131206.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.5.0_pre20131206.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/lftp-4.5.0_pre20131206.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lftp-4.5.0_pre20131206.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.5.0_pre20131206.ebuild,v 1.1 2013/12/06 14:11:10 jer Exp $
51
52 EAPI=5
53 inherit autotools eutils libtool
54
55 MY_P="${PN}-pre${PV/_pre*/}-${PV/*_pre/}"
56
57 DESCRIPTION="A sophisticated ftp/sftp/http/https/torrent client and file transfer program"
58 HOMEPAGE="http://lftp.yar.ru/"
59 SRC_URI="http://${PN}.yar.ru/ftp/devel/${MY_P}.tar.gz"
60
61 LICENSE="GPL-3"
62 SLOT="0"
63 KEYWORDS=""
64
65 IUSE="convert-mozilla-cookies +gnutls nls openssl socks5 +ssl verify-file"
66 LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru zh_CN zh_HK zh_TW )
67 IUSE+=" ${LFTP_LINGUAS[@]/#/linguas_}"
68
69 S="${WORKDIR}/${MY_P}"
70
71 REQUIRED_USE="
72 ssl? ( ^^ ( openssl gnutls ) )
73 "
74
75 RDEPEND="
76 >=sys-libs/ncurses-5.1
77 >=sys-libs/readline-5.1
78 dev-libs/expat
79 sys-libs/zlib
80 convert-mozilla-cookies? ( dev-perl/DBI )
81 socks5? (
82 >=net-proxy/dante-1.1.12
83 virtual/pam
84 )
85 ssl? (
86 gnutls? ( >=net-libs/gnutls-1.2.3 )
87 openssl? ( >=dev-libs/openssl-0.9.6 )
88 )
89 verify-file? (
90 dev-perl/string-crc32
91 virtual/perl-Digest-MD5
92 )
93 "
94
95 # app-arch/xz-utils
96 DEPEND="
97 ${RDEPEND}
98 =sys-devel/libtool-2*
99 nls? ( sys-devel/gettext )
100 virtual/pkgconfig
101 "
102
103 DOCS=(
104 BUGS ChangeLog FAQ FEATURES MIRRORS NEWS README README.debug-levels
105 README.dnssec README.modules THANKS TODO
106 )
107
108 src_prepare() {
109 epatch \
110 "${FILESDIR}/${PN}-4.0.2.91-lafile.patch" \
111 "${FILESDIR}/${PN}-4.3.5-autopoint.patch" \
112 "${FILESDIR}/${PN}-4.3.8-gets.patch"
113 sed -i configure.ac -e 's|^AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' || die
114 eautoreconf
115 elibtoolize # for Darwin bundles
116 }
117
118 src_configure() {
119 econf \
120 $(use_enable nls) \
121 $(use_with gnutls) \
122 $(use_with openssl openssl "${EPREFIX}"/usr) \
123 $(use_with socks5 socksdante "${EPREFIX}"/usr) \
124 --enable-packager-mode \
125 --sysconfdir="${EPREFIX}"/etc/${PN} \
126 --with-modules \
127 --without-included-regex
128 }
129
130 src_install() {
131 default
132 local script
133 for script in {convert-mozilla-cookies,verify-file}; do
134 use ${script} || { rm "${ED}"/usr/share/${PN}/${script} || die ;}
135 done
136 }