Gentoo Archives: gentoo-commits

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