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