Gentoo Archives: gentoo-commits

From: "Peter Alfredsen (loki_val)" <loki_val@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/rtorrent: ChangeLog rtorrent-0.8.2-r3.ebuild rtorrent-0.8.2-r2.ebuild
Date: Sat, 28 Jun 2008 11:35:06
Message-Id: E1KCYho-0001z1-MG@stork.gentoo.org
1 loki_val 08/06/28 11:35:00
2
3 Modified: ChangeLog
4 Added: rtorrent-0.8.2-r3.ebuild
5 Removed: rtorrent-0.8.2-r2.ebuild
6 Log:
7 Revision bump to update patchset with newest fixes from Josef Drexler.
8 (Portage version: 2.2_rc1/cvs/Linux 2.6.25.8 i686)
9
10 Revision Changes Path
11 1.110 net-p2p/rtorrent/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.110&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.110&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?r1=1.109&r2=1.110
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v
20 retrieving revision 1.109
21 retrieving revision 1.110
22 diff -u -r1.109 -r1.110
23 --- ChangeLog 5 Jun 2008 06:43:54 -0000 1.109
24 +++ ChangeLog 28 Jun 2008 11:35:00 -0000 1.110
25 @@ -1,6 +1,14 @@
26 # ChangeLog for net-p2p/rtorrent
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.109 2008/06/05 06:43:54 loki_val Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.110 2008/06/28 11:35:00 loki_val Exp $
30 +
31 +*rtorrent-0.8.2-r3 (28 Jun 2008)
32 +
33 + 28 Jun 2008; Peter Alfredsen <loki_val@g.o>
34 + +files/rtorrent-0.8.2-fix_conn_type_seed.patch,
35 + +files/rtorrent-0.8.2-fix_load_cache.patch, -rtorrent-0.8.2-r2.ebuild,
36 + +rtorrent-0.8.2-r3.ebuild:
37 + Revision bump to update patchset with newest fixes from Josef Drexler.
38
39 *rtorrent-0.8.2-r2 (05 Jun 2008)
40
41
42
43
44 1.1 net-p2p/rtorrent/rtorrent-0.8.2-r3.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.2-r3.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.2-r3.ebuild?rev=1.1&content-type=text/plain
48
49 Index: rtorrent-0.8.2-r3.ebuild
50 ===================================================================
51 # Copyright 1999-2008 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.2-r3.ebuild,v 1.1 2008/06/28 11:35:00 loki_val Exp $
54
55 inherit eutils toolchain-funcs flag-o-matic
56
57 DESCRIPTION="BitTorrent Client using libtorrent"
58 HOMEPAGE="http://libtorrent.rakshasa.no/"
59 SRC_URI="http://libtorrent.rakshasa.no/downloads/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
64 IUSE="debug ipv6 xmlrpc"
65
66 DEPEND=">=net-libs/libtorrent-0.12.${PV##*.}
67 >=dev-libs/libsigc++-2
68 >=net-misc/curl-7.18
69 sys-libs/ncurses
70 xmlrpc? ( dev-libs/xmlrpc-c )"
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 epatch "${FILESDIR}"/${PN}-0.8.0+gcc-4.3.patch
76 epatch "${FILESDIR}"/${P}-fix_start_stop_filter.patch
77 epatch "${FILESDIR}"/${P}-fix_conn_type_seed.patch
78 epatch "${FILESDIR}"/${P}-fix_load_cache.patch
79 }
80
81 src_compile() {
82 replace-flags -Os -O2
83 append-flags -fno-strict-aliasing
84
85 if [[ $(tc-arch) = "x86" ]]; then
86 filter-flags -fomit-frame-pointer -fforce-addr
87 fi
88
89 econf \
90 $(use_enable debug) \
91 $(use_enable ipv6) \
92 $(use_with xmlrpc xmlrpc-c) \
93 --disable-dependency-tracking \
94 --enable-aligned \
95 || die "econf failed"
96
97 emake || die "emake failed"
98 }
99
100 pkg_postinst() {
101 elog "rtorrent now supports a configuration file."
102 elog "A sample configuration file for rtorrent can be found"
103 elog "in ${ROOT}usr/share/doc/${PF}/rtorrent.rc.gz."
104 }
105
106 src_install() {
107 emake DESTDIR="${D}" install || die "make install failed"
108 dodoc AUTHORS README TODO doc/rtorrent.rc
109 }
110
111
112
113 --
114 gentoo-commits@l.g.o mailing list