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.4.ebuild ChangeLog
Date: Wed, 01 Jan 2014 11:44:20
Message-Id: 20140101114416.DB0D22004C@flycatcher.gentoo.org
1 hwoarang 14/01/01 11:44:16
2
3 Modified: ChangeLog
4 Added: qbittorrent-3.1.4.ebuild
5 Log:
6 Version bump. Use system's qtsingleapplication. Bug #496638
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key C2BA7F3C!)
9
10 Revision Changes Path
11 1.223 net-p2p/qbittorrent/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/qbittorrent/ChangeLog?rev=1.223&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/qbittorrent/ChangeLog?rev=1.223&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/qbittorrent/ChangeLog?r1=1.222&r2=1.223
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v
20 retrieving revision 1.222
21 retrieving revision 1.223
22 diff -u -r1.222 -r1.223
23 --- ChangeLog 30 Dec 2013 12:55:47 -0000 1.222
24 +++ ChangeLog 1 Jan 2014 11:44:16 -0000 1.223
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-p2p/qbittorrent
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v 1.222 2013/12/30 12:55:47 hwoarang Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v 1.223 2014/01/01 11:44:16 hwoarang Exp $
31 +
32 +*qbittorrent-3.1.4 (01 Jan 2014)
33 +
34 + 01 Jan 2014; Markos Chandras <hwoarang@g.o> +qbittorrent-3.1.4.ebuild:
35 + Version bump. Use system's qtsingleapplication. Bug #496638
36
37 30 Dec 2013; Markos Chandras <hwoarang@g.o> qbittorrent-9999.ebuild:
38 Use system's qtsingleapplication (>=2.6.1_p20130904) to take advantage of the
39
40
41
42 1.1 net-p2p/qbittorrent/qbittorrent-3.1.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/qbittorrent/qbittorrent-3.1.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/qbittorrent/qbittorrent-3.1.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: qbittorrent-3.1.4.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-3.1.4.ebuild,v 1.1 2014/01/01 11:44:16 hwoarang Exp $
52
53 EAPI=5
54 PYTHON_COMPAT=( python{2_6,2_7} )
55
56 inherit python-r1 qt4-r2
57
58 MY_P="${P/_/}"
59 DESCRIPTION="BitTorrent client in C++ and Qt"
60 HOMEPAGE="http://www.qbittorrent.org/"
61 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~arm ~x86"
66 IUSE="dbus +X geoip"
67
68 # python-2 is a runtime dep only, for the search engine (see INSTALL file)
69 CDEPEND="dev-libs/boost
70 dev-qt/qtcore:4
71 >=net-libs/rb_libtorrent-0.16.3
72 >=dev-qt/qtsingleapplication-2.6.1_p20130904
73 X? ( dev-qt/qtgui:4 )
74 dbus? ( dev-qt/qtdbus:4 )"
75 DEPEND="${CDEPEND}
76 virtual/pkgconfig"
77 RDEPEND="${CDEPEND}
78 ${PYTHON_DEPS}
79 geoip? ( dev-libs/geoip )"
80
81 DOCS="AUTHORS Changelog NEWS README TODO"
82 S="${WORKDIR}/${MY_P}"
83
84 src_prepare() {
85 # Respect LDFLAGS
86 sed -i -e 's/-Wl,--as-needed/$(LDFLAGS)/g' src/src.pro
87 qt4-r2_src_prepare
88 }
89
90 src_configure() {
91 local myconf
92 use geoip || myconf+=" --disable-geoip-database"
93 use dbus || myconf+=" --disable-qt-dbus"
94 use X || myconf+=" --disable-gui"
95
96 # econf fails, since this uses qconf
97 ./configure --prefix=/usr --qtdir=/usr \
98 --with-qtsingleapplication=system \
99 --with-libboost-inc=/usr/include/boost \
100 ${myconf} || die "configure failed"
101 eqmake4
102 }