Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/qbittorrent: ChangeLog qbittorrent-1.3.3.ebuild
Date: Wed, 08 Apr 2009 09:32:14
Message-Id: E1LrU8h-0003iC-Kd@stork.gentoo.org
1 armin76 09/04/08 09:32:11
2
3 Modified: ChangeLog
4 Added: qbittorrent-1.3.3.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.1.6.7/cvs/Linux ia64)
8
9 Revision Changes Path
10 1.55 net-p2p/qbittorrent/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/ChangeLog?rev=1.55&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/ChangeLog?rev=1.55&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/ChangeLog?r1=1.54&r2=1.55
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v
19 retrieving revision 1.54
20 retrieving revision 1.55
21 diff -u -r1.54 -r1.55
22 --- ChangeLog 9 Mar 2009 13:06:48 -0000 1.54
23 +++ ChangeLog 8 Apr 2009 09:32:11 -0000 1.55
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.54 2009/03/09 13:06:48 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v 1.55 2009/04/08 09:32:11 armin76 Exp $
29 +
30 +*qbittorrent-1.3.3 (08 Apr 2009)
31 +
32 + 08 Apr 2009; Raúl Porcel <armin76@g.o> +qbittorrent-1.3.3.ebuild:
33 + Version bump
34
35 *qbittorrent-1.3.2 (09 Mar 2009)
36
37
38
39
40 1.1 net-p2p/qbittorrent/qbittorrent-1.3.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/qbittorrent-1.3.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/qbittorrent-1.3.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: qbittorrent-1.3.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.3.3.ebuild,v 1.1 2009/04/08 09:32:11 armin76 Exp $
50
51 EAPI="1"
52
53 inherit eutils qt4 multilib
54
55 MY_P="${P/_/}"
56
57 DESCRIPTION="BitTorrent client in C++ and Qt."
58 HOMEPAGE="http://www.qbittorrent.org/"
59 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
60 S="${WORKDIR}/${MY_P}"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE=""
66
67 # boost version so that we always have thread support
68 DEPEND="|| ( x11-libs/qt-gui:4 =x11-libs/qt-4.3* )
69 >=net-libs/rb_libtorrent-0.14.1
70 >=dev-libs/boost-1.34.1
71 net-misc/curl
72 dev-cpp/commoncpp2"
73 RDEPEND="${DEPEND}
74 >=dev-lang/python-2.3"
75
76 src_unpack() {
77 unpack ${A}
78 cd "${S}"
79
80 # Respect LDFLAGS
81 sed -i -e 's/-Wl,--as-needed/$(LDFLAGS)/g' src/src.pro
82 }
83
84 src_compile() {
85 # econf fails, since this uses qconf
86 ./configure --prefix=/usr --qtdir=/usr \
87 --with-libtorrent-inc=/usr/include \
88 --with-libtorrent-lib=/usr/$(get_libdir) \
89 || die "configure failed"
90 emake || die "emake failed"
91 }
92
93 src_install() {
94 emake INSTALL_ROOT="${D}" install || die "emake install failed"
95 dodoc AUTHORS Changelog NEWS README TODO
96 }