Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtlocation/
Date: Thu, 28 Apr 2016 14:53:20
Message-Id: 1461855179.7bc3ef44ab1fa22134955c90c89752ee41ba4fe1.kensington@gentoo
1 commit: 7bc3ef44ab1fa22134955c90c89752ee41ba4fe1
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 28 14:52:19 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 28 14:52:59 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bc3ef44
7
8 dev-qt/qtlocation: new package
9
10 Imported from qt overlay.
11
12 Package-Manager: portage-2.2.28
13
14 dev-qt/qtlocation/Manifest | 1 +
15 dev-qt/qtlocation/metadata.xml | 17 +++++++++++++++++
16 dev-qt/qtlocation/qtlocation-5.6.0.ebuild | 30 ++++++++++++++++++++++++++++++
17 3 files changed, 48 insertions(+)
18
19 diff --git a/dev-qt/qtlocation/Manifest b/dev-qt/qtlocation/Manifest
20 new file mode 100644
21 index 0000000..c55333a
22 --- /dev/null
23 +++ b/dev-qt/qtlocation/Manifest
24 @@ -0,0 +1 @@
25 +DIST qtlocation-opensource-src-5.6.0.tar.xz 3076136 SHA256 360e1519d0fcafe4f86923d224e76d56dd785dfb0e1a19fd2e2b0016799653c9 SHA512 76cc7f27a043999af56f7bec408c46f0bb0709f651a3d84084f7ae92c3f50f6450420bdda31db17436111df537b94d51a9ca2819cce13ce83c538490d3f62a1d WHIRLPOOL b4bd14bb1882155ae9143d66ae99191dd95b89860ca609bbf5cffedec745f026369ce12df0bfd40c9b79d74f26036c184ebadee11dcd929a1f6a4d01634a2ab2
26
27 diff --git a/dev-qt/qtlocation/metadata.xml b/dev-qt/qtlocation/metadata.xml
28 new file mode 100644
29 index 0000000..08d85fc
30 --- /dev/null
31 +++ b/dev-qt/qtlocation/metadata.xml
32 @@ -0,0 +1,17 @@
33 +<?xml version="1.0" encoding="UTF-8"?>
34 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
35 +<pkgmetadata>
36 + <maintainer type="project">
37 + <email>qt@g.o</email>
38 + <name>Gentoo Qt Project</name>
39 + </maintainer>
40 + <upstream>
41 + <bugs-to>https://bugreports.qt.io/</bugs-to>
42 + <doc>http://doc.qt.io/</doc>
43 + </upstream>
44 + <slots>
45 + <subslots>
46 + Must only be used by packages that are known to use private parts of the Qt API.
47 + </subslots>
48 + </slots>
49 +</pkgmetadata>
50
51 diff --git a/dev-qt/qtlocation/qtlocation-5.6.0.ebuild b/dev-qt/qtlocation/qtlocation-5.6.0.ebuild
52 new file mode 100644
53 index 0000000..b0d8a77
54 --- /dev/null
55 +++ b/dev-qt/qtlocation/qtlocation-5.6.0.ebuild
56 @@ -0,0 +1,30 @@
57 +# Copyright 1999-2016 Gentoo Foundation
58 +# Distributed under the terms of the GNU General Public License v2
59 +# $Id$
60 +
61 +EAPI=6
62 +inherit qt5-build
63 +
64 +DESCRIPTION="The Location module for the Qt5 framework"
65 +
66 +if [[ ${QT5_BUILD_TYPE} == release ]]; then
67 + KEYWORDS="~amd64 ~x86"
68 +fi
69 +
70 +IUSE=""
71 +
72 +DEPEND="
73 + ~dev-qt/qtcore-${PV}
74 + ~dev-qt/qtdeclarative-${PV}
75 + ~dev-qt/qtgui-${PV}
76 + ~dev-qt/qtnetwork-${PV}
77 + ~dev-qt/qtpositioning-${PV}
78 +"
79 +RDEPEND="${DEPEND}"
80 +
81 +QT5_TARGET_SUBDIRS=(
82 + src/3rdparty
83 + src/location
84 + src/imports/location
85 + src/plugins/geoservices
86 +)