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.9.ebuild
Date: Thu, 25 Oct 2007 19:24:27
Message-Id: E1Il8Ja-0007VT-D2@stork.gentoo.org
1 drizzt 07/10/25 19:24:22
2
3 Modified: ChangeLog
4 Added: rtorrent-0.7.9.ebuild
5 Log:
6 Version bump, thanks to Flameeyes for poking me.
7
8 (Portage version: 2.1.3.16)
9
10 Revision Changes Path
11 1.94 net-p2p/rtorrent/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.94&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.94&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?r1=1.93&r2=1.94
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v
20 retrieving revision 1.93
21 retrieving revision 1.94
22 diff -u -r1.93 -r1.94
23 --- ChangeLog 8 Sep 2007 22:20:00 -0000 1.93
24 +++ ChangeLog 25 Oct 2007 19:24:21 -0000 1.94
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.93 2007/09/08 22:20:00 hanno Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.94 2007/10/25 19:24:21 drizzt Exp $
30 +
31 +*rtorrent-0.7.9 (25 Oct 2007)
32 +
33 + 25 Oct 2007; Timothy Redaelli <drizzt@g.o> +rtorrent-0.7.9.ebuild:
34 + Version bump, thanks to Flameeyes for poking me.
35
36 08 Sep 2007; Hanno Boeck <hanno@g.o> ChangeLog:
37 Place comment below econf-line, else it breaks.
38
39
40
41 1.1 net-p2p/rtorrent/rtorrent-0.7.9.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.9.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.9.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rtorrent-0.7.9.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.9.ebuild,v 1.1 2007/10/25 19:24:21 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 \
80 --disable-dependency-tracking \
81 || die "econf failed"
82 # --disable-xmlrpc-c: I want to keep it disabled while >=dev-libs/xmlrpc-c-1.07 is masked
83
84 emake || die "emake failed"
85 }
86
87 pkg_postinst() {
88 elog "rtorrent now supports a configuration file."
89 elog "A sample configuration file for rtorrent is can be found"
90 elog "in ${ROOT}usr/share/doc/${PF}/rtorrent.rc.gz."
91 }
92
93 src_install() {
94 emake DESTDIR="${D}" install || die "make install failed"
95 dodoc AUTHORS README TODO doc/rtorrent.rc
96 }
97
98
99
100 --
101 gentoo-commits@g.o mailing list