Gentoo Archives: gentoo-commits

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