Gentoo Archives: gentoo-commits

From: Davide Pesavento <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qt:master commit in: dev-qt/qtlocation/
Date: Fri, 18 Dec 2015 17:51:07
Message-Id: 1450461017.8a3b0e22255b424846c30b66b61d54c69f9f6445.pesa@gentoo
1 commit: 8a3b0e22255b424846c30b66b61d54c69f9f6445
2 Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 18 17:50:17 2015 +0000
4 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 18 17:50:17 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=8a3b0e22
7
8 dev-qt/qtlocation: new ebuild for the 5.6 branch
9
10 It seems that Qt Location will be an officially supported module in 5.6
11
12 Package-Manager: portage-2.2.26
13
14 dev-qt/qtlocation/qtlocation-5.6.9999.ebuild | 30 ++++++++++++++++++++++++++++
15 1 file changed, 30 insertions(+)
16
17 diff --git a/dev-qt/qtlocation/qtlocation-5.6.9999.ebuild b/dev-qt/qtlocation/qtlocation-5.6.9999.ebuild
18 new file mode 100644
19 index 0000000..2bfcaeb
20 --- /dev/null
21 +++ b/dev-qt/qtlocation/qtlocation-5.6.9999.ebuild
22 @@ -0,0 +1,30 @@
23 +# Copyright 1999-2015 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +# $Id$
26 +
27 +EAPI=5
28 +inherit qt5-build
29 +
30 +DESCRIPTION="The Location module for the Qt5 framework"
31 +
32 +if [[ ${QT5_BUILD_TYPE} == release ]]; then
33 + KEYWORDS="~amd64 ~x86"
34 +fi
35 +
36 +IUSE=""
37 +
38 +DEPEND="
39 + ~dev-qt/qtcore-${PV}
40 + ~dev-qt/qtdeclarative-${PV}
41 + ~dev-qt/qtgui-${PV}
42 + ~dev-qt/qtnetwork-${PV}
43 + ~dev-qt/qtpositioning-${PV}
44 +"
45 +RDEPEND="${DEPEND}"
46 +
47 +QT5_TARGET_SUBDIRS=(
48 + src/3rdparty
49 + src/location
50 + src/imports/location
51 + src/plugins/geoservices
52 +)