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.1.1.ebuild qbittorrent-1.2.0_beta1.ebuild qbittorrent-1.1.0_rc2.ebuild
Date: Fri, 01 Aug 2008 17:32:31
Message-Id: E1KOyUO-0007OE-4L@stork.gentoo.org
1 armin76 08/08/01 17:32:28
2
3 Modified: ChangeLog
4 Added: qbittorrent-1.1.1.ebuild
5 qbittorrent-1.2.0_beta1.ebuild
6 Removed: qbittorrent-1.1.0_rc2.ebuild
7 Log:
8 Version bump
9 (Portage version: 2.1.4.4)
10
11 Revision Changes Path
12 1.41 net-p2p/qbittorrent/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/ChangeLog?rev=1.41&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/ChangeLog?rev=1.41&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/ChangeLog?r1=1.40&r2=1.41
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v
21 retrieving revision 1.40
22 retrieving revision 1.41
23 diff -u -r1.40 -r1.41
24 --- ChangeLog 28 Jul 2008 21:35:35 -0000 1.40
25 +++ ChangeLog 1 Aug 2008 17:32:27 -0000 1.41
26 @@ -1,6 +1,14 @@
27 # ChangeLog for net-p2p/qbittorrent
28 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v 1.40 2008/07/28 21:35:35 carlo Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v 1.41 2008/08/01 17:32:27 armin76 Exp $
31 +
32 +*qbittorrent-1.2.0_beta1 (01 Aug 2008)
33 +*qbittorrent-1.1.1 (01 Aug 2008)
34 +
35 + 01 Aug 2008; Raúl Porcel <armin76@g.o>
36 + -qbittorrent-1.1.0_rc2.ebuild, +qbittorrent-1.1.1.ebuild,
37 + +qbittorrent-1.2.0_beta1.ebuild:
38 + Version bump
39
40 28 Jul 2008; Carsten Lohrke <carlo@g.o> qbittorrent-0.9.3.ebuild:
41 QA: Get rid of deprecated qt4_min_version().
42
43
44
45 1.1 net-p2p/qbittorrent/qbittorrent-1.1.1.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/qbittorrent-1.1.1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/qbittorrent-1.1.1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: qbittorrent-1.1.1.ebuild
51 ===================================================================
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-1.1.1.ebuild,v 1.1 2008/08/01 17:32:27 armin76 Exp $
55
56 EAPI="1"
57
58 inherit eutils qt4 multilib
59
60 MY_P="${P/_/}"
61
62 DESCRIPTION="BitTorrent client in C++ and Qt."
63 HOMEPAGE="http://www.qbittorrent.org/"
64 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
65 S="${WORKDIR}/${MY_P}"
66
67 LICENSE="GPL-2"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE=""
71
72 DEPEND="|| ( x11-libs/qt-gui:4 =x11-libs/qt-4.3*:4 )
73 >=net-libs/rb_libtorrent-0.13.1
74 dev-libs/boost
75 net-misc/curl
76 dev-cpp/commoncpp2"
77 RDEPEND="${DEPEND}
78 >=dev-lang/python-2.3"
79
80 pkg_setup() {
81 # We need boost built with threads
82 if ! built_with_use --missing true "dev-libs/boost" threads; then
83 eerror "${PN} needs dev-libs/boost built with threads USE flag"
84 die "dev-libs/boost is built without threads USE flag"
85 fi
86 }
87
88 src_compile() {
89 # econf fails, since this uses qconf
90 ./configure --prefix=/usr --qtdir=/usr \
91 --with-libtorrent-inc=/usr/include \
92 --with-libtorrent-lib=/usr/$(get_libdir) \
93 || die "configure failed"
94 emake || die "emake failed"
95 }
96
97 src_install() {
98 emake INSTALL_ROOT="${D}" install || die "emake install failed"
99 dodoc AUTHORS Changelog NEWS README TODO
100 }
101
102
103
104 1.1 net-p2p/qbittorrent/qbittorrent-1.2.0_beta1.ebuild
105
106 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/qbittorrent-1.2.0_beta1.ebuild?rev=1.1&view=markup
107 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/qbittorrent-1.2.0_beta1.ebuild?rev=1.1&content-type=text/plain
108
109 Index: qbittorrent-1.2.0_beta1.ebuild
110 ===================================================================
111 # Copyright 1999-2008 Gentoo Foundation
112 # Distributed under the terms of the GNU General Public License v2
113 # $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-1.2.0_beta1.ebuild,v 1.1 2008/08/01 17:32:27 armin76 Exp $
114
115 EAPI="1"
116
117 inherit eutils qt4 multilib
118
119 MY_P="${P/_/}"
120
121 DESCRIPTION="BitTorrent client in C++ and Qt."
122 HOMEPAGE="http://www.qbittorrent.org/"
123 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
124 S="${WORKDIR}/${MY_P}"
125
126 LICENSE="GPL-2"
127 SLOT="0"
128 KEYWORDS="~amd64 ~x86"
129 IUSE=""
130
131 DEPEND="|| ( x11-libs/qt-gui:4 =x11-libs/qt-4.3*:4 )
132 >=net-libs/rb_libtorrent-0.13.1
133 dev-libs/boost
134 net-misc/curl
135 dev-cpp/commoncpp2"
136 RDEPEND="${DEPEND}
137 >=dev-lang/python-2.3"
138
139 pkg_setup() {
140 # We need boost built with threads
141 if ! built_with_use --missing true "dev-libs/boost" threads; then
142 eerror "${PN} needs dev-libs/boost built with threads USE flag"
143 die "dev-libs/boost is built without threads USE flag"
144 fi
145 }
146
147 src_compile() {
148 # econf fails, since this uses qconf
149 ./configure --prefix=/usr --qtdir=/usr \
150 --with-libtorrent-inc=/usr/include \
151 --with-libtorrent-lib=/usr/$(get_libdir) \
152 || die "configure failed"
153 emake || die "emake failed"
154 }
155
156 src_install() {
157 emake INSTALL_ROOT="${D}" install || die "emake install failed"
158 dodoc AUTHORS Changelog NEWS README TODO
159 }