Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/qbittorrent: qbittorrent-3.1.12.ebuild ChangeLog
Date: Fri, 27 Feb 2015 21:10:24
Message-Id: 20150227211020.687D612B03@oystercatcher.gentoo.org
1 hwoarang 15/02/27 21:10:20
2
3 Modified: ChangeLog
4 Added: qbittorrent-3.1.12.ebuild
5 Log:
6 Version bump. Bug #541386
7
8 (Portage version: 2.2.17/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.240 net-p2p/qbittorrent/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/qbittorrent/ChangeLog?rev=1.240&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/qbittorrent/ChangeLog?rev=1.240&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/qbittorrent/ChangeLog?r1=1.239&r2=1.240
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v
20 retrieving revision 1.239
21 retrieving revision 1.240
22 diff -u -r1.239 -r1.240
23 --- ChangeLog 23 Feb 2015 19:02:33 -0000 1.239
24 +++ ChangeLog 27 Feb 2015 21:10:20 -0000 1.240
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-p2p/qbittorrent
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v 1.239 2015/02/23 19:02:33 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v 1.240 2015/02/27 21:10:20 hwoarang Exp $
30 +
31 +*qbittorrent-3.1.12 (27 Feb 2015)
32 +
33 + 27 Feb 2015; Markos Chandras <hwoarang@g.o> +qbittorrent-3.1.12.ebuild:
34 + Version bump. Bug #541386
35
36 23 Feb 2015; Markos Chandras <hwoarang@g.o> qbittorrent-9999.ebuild:
37 Fix qtgui slot for Qt5
38
39
40
41 1.1 net-p2p/qbittorrent/qbittorrent-3.1.12.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/qbittorrent/qbittorrent-3.1.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/qbittorrent/qbittorrent-3.1.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: qbittorrent-3.1.12.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-3.1.12.ebuild,v 1.1 2015/02/27 21:10:20 hwoarang Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python{2_6,2_7} )
54
55 inherit python-r1 qt4-r2
56
57 DESCRIPTION="BitTorrent client in C++ and Qt"
58 HOMEPAGE="http://www.qbittorrent.org/"
59 MY_P=${P/_}
60 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.xz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~arm ~x86"
65
66 IUSE="dbus debug geoip +X"
67
68 # geoip and python are runtime deps only (see INSTALL file)
69 CDEPEND="
70 dev-libs/boost:=
71 dev-qt/qtcore:4
72 >=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[X?]
73 >=net-libs/rb_libtorrent-0.16.17
74 dbus? ( dev-qt/qtdbus:4 )
75 X? ( dev-qt/qtgui:4 )
76 "
77 DEPEND="${CDEPEND}
78 virtual/pkgconfig
79 "
80 RDEPEND="${CDEPEND}
81 ${PYTHON_DEPS}
82 geoip? ( dev-libs/geoip )
83 "
84
85 S=${WORKDIR}/${MY_P}
86 DOCS=(AUTHORS Changelog README.md TODO)
87
88 src_configure() {
89 # Custom configure script, econf fails
90 local myconf=(
91 ./configure
92 --prefix="${EPREFIX}/usr"
93 --with-libboost-inc="${EPREFIX}/usr/include/boost"
94 --with-qtsingleapplication=system
95 $(use dbus || echo --disable-qt-dbus)
96 $(use debug && echo --enable-debug)
97 $(use geoip || echo --disable-geoip-database)
98 $(use X || echo --disable-gui)
99 )
100
101 echo "${myconf[@]}"
102 "${myconf[@]}" || die "configure failed"
103 eqmake4
104 }