Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/qbittorrent: ChangeLog qbittorrent-1.5.3.ebuild
Date: Wed, 30 Sep 2009 22:49:42
Message-Id: E1Mt7zQ-0002vJ-IZ@stork.gentoo.org
1 yngwin 09/09/30 22:49:40
2
3 Modified: ChangeLog
4 Added: qbittorrent-1.5.3.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc42/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.60 net-p2p/qbittorrent/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/ChangeLog?rev=1.60&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/ChangeLog?rev=1.60&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/ChangeLog?r1=1.59&r2=1.60
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v
19 retrieving revision 1.59
20 retrieving revision 1.60
21 diff -u -r1.59 -r1.60
22 --- ChangeLog 15 Aug 2009 23:21:49 -0000 1.59
23 +++ ChangeLog 30 Sep 2009 22:49:40 -0000 1.60
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-p2p/qbittorrent
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v 1.59 2009/08/15 23:21:49 yngwin Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v 1.60 2009/09/30 22:49:40 yngwin Exp $
29 +
30 +*qbittorrent-1.5.3 (30 Sep 2009)
31 +
32 + 30 Sep 2009; Ben de Groot <yngwin@g.o> +qbittorrent-1.5.3.ebuild:
33 + Version bump
34
35 *qbittorrent-1.4.0 (15 Aug 2009)
36
37
38
39
40 1.1 net-p2p/qbittorrent/qbittorrent-1.5.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/qbittorrent-1.5.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/qbittorrent-1.5.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: qbittorrent-1.5.3.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-1.5.3.ebuild,v 1.1 2009/09/30 22:49:40 yngwin Exp $
50
51 EAPI="2"
52 inherit eutils qt4 multilib
53
54 MY_P="${P/_/}"
55 DESCRIPTION="BitTorrent client in C++ and Qt"
56 HOMEPAGE="http://www.qbittorrent.org/"
57 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE=""
63
64 # boost version so that we always have thread support
65 DEPEND=" x11-libs/qt-gui:4
66 >=net-libs/rb_libtorrent-0.14.6
67 >=dev-libs/boost-1.34.1
68 dev-libs/zziplib
69 net-misc/curl
70 dev-cpp/commoncpp2"
71 RDEPEND="${DEPEND}
72 >=dev-lang/python-2.3"
73
74 S="${WORKDIR}/${MY_P}"
75
76 src_prepare() {
77 # Respect LDFLAGS
78 sed -i -e 's/-Wl,--as-needed/$(LDFLAGS)/g' src/src.pro
79 qt4_src_prepare
80 }
81
82 src_configure() {
83 # econf fails, since this uses qconf
84 ./configure --prefix=/usr --qtdir=/usr || die "configure failed"
85 }
86
87 src_install() {
88 emake INSTALL_ROOT="${D}" install || die "emake install failed"
89 dodoc AUTHORS Changelog NEWS README TODO
90 }