Gentoo Archives: gentoo-commits

From: "Alex Legler (a3li)" <a3li@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/ctorrent: ChangeLog ctorrent-3.3.2-r1.ebuild
Date: Mon, 30 Aug 2010 10:52:14
Message-Id: 20100830105208.94B9B20051@flycatcher.gentoo.org
1 a3li 10/08/30 10:52:08
2
3 Modified: ChangeLog
4 Added: ctorrent-3.3.2-r1.ebuild
5 Log:
6 Non-maintainer commit: Revision bump to fix CVE-2009-1759, bug 266953.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.46 net-p2p/ctorrent/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ctorrent/ChangeLog?rev=1.46&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ctorrent/ChangeLog?rev=1.46&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ctorrent/ChangeLog?r1=1.45&r2=1.46
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-p2p/ctorrent/ChangeLog,v
19 retrieving revision 1.45
20 retrieving revision 1.46
21 diff -u -r1.45 -r1.46
22 --- ChangeLog 4 Nov 2008 11:04:01 -0000 1.45
23 +++ ChangeLog 30 Aug 2010 10:52:08 -0000 1.46
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-p2p/ctorrent
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/ctorrent/ChangeLog,v 1.45 2008/11/04 11:04:01 vapier Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/ctorrent/ChangeLog,v 1.46 2010/08/30 10:52:08 a3li Exp $
30 +
31 +*ctorrent-3.3.2-r1 (30 Aug 2010)
32 +
33 + 30 Aug 2010; Alex Legler <a3li@g.o> +ctorrent-3.3.2-r1.ebuild,
34 + +files/ctorrent-CVE-2009-1759.patch:
35 + Non-maintainer commit: Revision bump to fix CVE-2009-1759, bug 266953.
36
37 04 Nov 2008; Mike Frysinger <vapier@g.o> ctorrent-3.3.2.ebuild:
38 Add arm/s390/sh love.
39
40
41
42 1.1 net-p2p/ctorrent/ctorrent-3.3.2-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ctorrent/ctorrent-3.3.2-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ctorrent/ctorrent-3.3.2-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: ctorrent-3.3.2-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-p2p/ctorrent/ctorrent-3.3.2-r1.ebuild,v 1.1 2010/08/30 10:52:08 a3li Exp $
52
53 inherit eutils
54
55 MY_P="${PN}-dnh${PV}"
56
57 DESCRIPTION="Enhanced CTorrent is a BitTorrent console client written in C and C++."
58 HOMEPAGE="http://www.rahul.net/dholmes/ctorrent/"
59 SRC_URI="mirror://sourceforge/dtorrent/${MY_P}.tar.gz"
60
61 SLOT="0"
62 LICENSE="GPL-2"
63 KEYWORDS="~amd64 ~arm ~ppc ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
64 IUSE=""
65
66 S="${WORKDIR}/${MY_P}"
67
68 DEPEND="dev-libs/openssl"
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73
74 epatch "${FILESDIR}/${PN}-CVE-2009-1759.patch" || die
75 }
76
77 src_install() {
78 emake DESTDIR="${D}" install || die "emake install failed."
79 dodoc AUTHORS ChangeLog README-DNH.TXT README NEWS
80 }