Gentoo Archives: gentoo-commits

From: "Daniel Black (dragonheart)" <dragonheart@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-ftp/lftp: ChangeLog lftp-3.7.0.ebuild
Date: Tue, 01 Apr 2008 06:10:39
Message-Id: E1JgZhc-00063O-4Y@stork.gentoo.org
1 dragonheart 08/04/01 06:10:36
2
3 Modified: ChangeLog
4 Added: lftp-3.7.0.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.152 net-ftp/lftp/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.152&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.152&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.151&r2=1.152
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
19 retrieving revision 1.151
20 retrieving revision 1.152
21 diff -u -r1.151 -r1.152
22 --- ChangeLog 26 Feb 2008 02:39:26 -0000 1.151
23 +++ ChangeLog 1 Apr 2008 06:10:35 -0000 1.152
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-ftp/lftp
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.151 2008/02/26 02:39:26 rich0 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.152 2008/04/01 06:10:35 dragonheart Exp $
29 +
30 +*lftp-3.7.0 (01 Apr 2008)
31 +
32 + 01 Apr 2008; Daniel Black <dragonheart@g.o> +lftp-3.7.0.ebuild:
33 + version bump
34
35 26 Feb 2008; Richard Freeman <rich0@g.o> lftp-3.6.1-r1.ebuild:
36 amd64 stable - 211111
37
38
39
40 1.1 net-ftp/lftp/lftp-3.7.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/lftp-3.7.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/lftp/lftp-3.7.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: lftp-3.7.0.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-3.7.0.ebuild,v 1.1 2008/04/01 06:10:35 dragonheart Exp $
50
51 inherit eutils
52
53 DESCRIPTION="A sophisticated ftp/sftp/http/https client and file transfer program"
54 HOMEPAGE="http://lftp.yar.ru/"
55 SRC_URI="http://ftp.yars.free.net/pub/source/lftp/${P}.tar.bz2"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
60 IUSE="ssl gnutls socks5 nls"
61
62 RDEPEND=">=sys-libs/ncurses-5.1
63 socks5? (
64 >=net-proxy/dante-1.1.12
65 virtual/pam )
66 ssl? (
67 gnutls? ( >=net-libs/gnutls-1.2.3 )
68 !gnutls? ( >=dev-libs/openssl-0.9.6 )
69 )
70 virtual/libc
71 >=sys-libs/readline-5.1"
72
73 DEPEND="${RDEPEND}
74 nls? ( sys-devel/gettext )
75 dev-lang/perl"
76
77 #src_unpack() {
78 # unpack ${A}
79 # cd "${S}"
80 #
81 # epatch "${FILESDIR}"/${PV}-segfault.patch
82 # epatch "${FILESDIR}"/${PV}-specialchars.patch
83 #}
84
85 src_compile() {
86 local myconf="$(use_enable nls) --enable-packager-mode"
87
88 if use ssl && use gnutls ; then
89 myconf="${myconf} --without-openssl"
90 elif use ssl && ! use gnutls ; then
91 myconf="${myconf} --without-gnutls --with-openssl=/usr"
92 else
93 myconf="${myconf} --without-gnutls --without-openssl"
94 fi
95
96 use socks5 && myconf="${myconf} --with-socksdante=/usr" \
97 || myconf="${myconf} --without-socksdante"
98
99 econf \
100 --sysconfdir=/etc/lftp \
101 --with-modules \
102 ${myconf} || die "econf failed"
103
104 emake || die "compile problem"
105 }
106
107 src_install() {
108 emake install DESTDIR="${D}" || die
109
110 dodoc BUGS ChangeLog FAQ FEATURES MIRRORS \
111 NEWS README* THANKS TODO
112 }
113
114
115
116 --
117 gentoo-commits@l.g.o mailing list