From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id DD58D1384B4 for ; Fri, 18 Dec 2015 17:51:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D28821C002; Fri, 18 Dec 2015 17:51:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0815C21C002 for ; Fri, 18 Dec 2015 17:51:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D9B2D33E3A9 for ; Fri, 18 Dec 2015 17:51:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D0B6A46 for ; Fri, 18 Dec 2015 17:50:59 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1450461017.8a3b0e22255b424846c30b66b61d54c69f9f6445.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: dev-qt/qtlocation/ X-VCS-Repository: proj/qt X-VCS-Files: dev-qt/qtlocation/qtlocation-5.6.9999.ebuild X-VCS-Directories: dev-qt/qtlocation/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 8a3b0e22255b424846c30b66b61d54c69f9f6445 X-VCS-Branch: master Date: Fri, 18 Dec 2015 17:50:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2fa30e12-24d3-41fd-809d-04c412a5c83f X-Archives-Hash: ffb66d77a12a89b0db5bc5dac9f47728 commit: 8a3b0e22255b424846c30b66b61d54c69f9f6445 Author: Davide Pesavento gentoo org> AuthorDate: Fri Dec 18 17:50:17 2015 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Fri Dec 18 17:50:17 2015 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=8a3b0e22 dev-qt/qtlocation: new ebuild for the 5.6 branch It seems that Qt Location will be an officially supported module in 5.6 Package-Manager: portage-2.2.26 dev-qt/qtlocation/qtlocation-5.6.9999.ebuild | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-qt/qtlocation/qtlocation-5.6.9999.ebuild b/dev-qt/qtlocation/qtlocation-5.6.9999.ebuild new file mode 100644 index 0000000..2bfcaeb --- /dev/null +++ b/dev-qt/qtlocation/qtlocation-5.6.9999.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit qt5-build + +DESCRIPTION="The Location module for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtdeclarative-${PV} + ~dev-qt/qtgui-${PV} + ~dev-qt/qtnetwork-${PV} + ~dev-qt/qtpositioning-${PV} +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/3rdparty + src/location + src/imports/location + src/plugins/geoservices +)