Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/wput: ChangeLog wput-0.6.1.ebuild
Date: Sun, 24 Feb 2008 16:11:41
Message-Id: E1JTJRy-0005lU-DX@stork.gentoo.org
1 armin76 08/02/24 16:11:38
2
3 Modified: ChangeLog
4 Added: wput-0.6.1.ebuild
5 Log:
6 Version bump, bug #207579
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.18 net-misc/wput/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/wput/ChangeLog?rev=1.18&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/wput/ChangeLog?rev=1.18&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/wput/ChangeLog?r1=1.17&r2=1.18
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/wput/ChangeLog,v
19 retrieving revision 1.17
20 retrieving revision 1.18
21 diff -u -r1.17 -r1.18
22 --- ChangeLog 26 Jan 2008 17:21:43 -0000 1.17
23 +++ ChangeLog 24 Feb 2008 16:11:37 -0000 1.18
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-misc/wput
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wput/ChangeLog,v 1.17 2008/01/26 17:21:43 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/wput/ChangeLog,v 1.18 2008/02/24 16:11:37 armin76 Exp $
29 +
30 +*wput-0.6.1 (24 Feb 2008)
31 +
32 + 24 Feb 2008; Raúl Porcel <armin76@g.o>
33 + -files/wput-0.5-gentoo.diff, +wput-0.6.1.ebuild:
34 + Version bump, bug #207579
35
36 26 Jan 2008; Raúl Porcel <armin76@g.o> -wput-0.5.ebuild:
37 old
38
39
40
41 1.1 net-misc/wput/wput-0.6.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/wput/wput-0.6.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/wput/wput-0.6.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: wput-0.6.1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-misc/wput/wput-0.6.1.ebuild,v 1.1 2008/02/24 16:11:37 armin76 Exp $
51
52 inherit eutils
53
54 DESCRIPTION="A tiny program that looks like wget and is designed to upload files or whole directories to remote ftp-servers"
55 HOMEPAGE="http://wput.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
61 IUSE="debug nls ssl"
62
63 RDEPEND="ssl? ( net-libs/gnutls )"
64 DEPEND="${RDEPEND}
65 nls? ( sys-devel/gettext )"
66
67
68 src_unpack() {
69 unpack "${A}"
70 cd "${S}"
71 epatch "${FILESDIR}/${PN}-0.6-gentoo.diff"
72 # Fix bug 126828
73 epatch "${FILESDIR}/wput-0.6-respectldflags.patch"
74 }
75
76 src_compile() {
77 local myconf
78 use debug && myconf="--enable-memdbg=yes" || myconf="--enable-g-switch=no"
79 econf ${myconf} \
80 $(use_enable nls) \
81 $(use_with ssl) || die "econf failed"
82 emake || die "emake failed"
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die "make install failed"
87 dodoc ChangeLog INSTALL TODO
88 }
89
90
91
92 --
93 gentoo-commits@l.g.o mailing list