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 7E70013800E for ; Tue, 24 Jul 2012 20:15:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C99CBE0774; Tue, 24 Jul 2012 20:15:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 9A0ECE0774 for ; Tue, 24 Jul 2012 20:15:39 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B791E1B4587 for ; Tue, 24 Jul 2012 20:15:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 70FD7E543E for ; Tue, 24 Jul 2012 20:15:37 +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: <1343160894.4840351292895daf6e15fa9947a4e83005bfc5ce.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: x11-libs/qt-location/, sets/ X-VCS-Repository: proj/qt X-VCS-Files: sets/qt5-essentials x11-libs/qt-location/metadata.xml x11-libs/qt-location/qt-location-5.9999.ebuild X-VCS-Directories: x11-libs/qt-location/ sets/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 4840351292895daf6e15fa9947a4e83005bfc5ce X-VCS-Branch: master Date: Tue, 24 Jul 2012 20:15:37 +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: 85e4d39b-896e-4026-b6b5-d37def31c6f9 X-Archives-Hash: 96b1f3665d5b33ef26d0f89c0d066afa commit: 4840351292895daf6e15fa9947a4e83005bfc5ce Author: Davide Pesavento gmail com> AuthorDate: Tue Jul 24 20:14:54 2012 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Tue Jul 24 20:14:54 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=48403512 [x11-libs/qt-location] WIP live ebuild for Qt5's QtLocation module. --- sets/qt5-essentials | 2 +- x11-libs/qt-location/metadata.xml | 10 ++++++++ x11-libs/qt-location/qt-location-5.9999.ebuild | 27 ++++++++++++++++++++++++ 3 files changed, 38 insertions(+), 1 deletions(-) diff --git a/sets/qt5-essentials b/sets/qt5-essentials index 4f30455..b7b8896 100644 --- a/sets/qt5-essentials +++ b/sets/qt5-essentials @@ -6,7 +6,7 @@ x11-libs/qt-core:5 x11-libs/qt-declarative:5 x11-libs/qt-gui:5 x11-libs/qt-jsbackend:5 -#x11-libs/qt-location:5 +x11-libs/qt-location:5 #x11-libs/qt-multimedia:5 x11-libs/qt-network:5 x11-libs/qt-sql:5 diff --git a/x11-libs/qt-location/metadata.xml b/x11-libs/qt-location/metadata.xml new file mode 100644 index 0000000..5a014c9 --- /dev/null +++ b/x11-libs/qt-location/metadata.xml @@ -0,0 +1,10 @@ + + + + qt + + + https://bugreports.qt-project.org/ + http://qt-project.org/doc/ + + diff --git a/x11-libs/qt-location/qt-location-5.9999.ebuild b/x11-libs/qt-location/qt-location-5.9999.ebuild new file mode 100644 index 0000000..1ec23d0 --- /dev/null +++ b/x11-libs/qt-location/qt-location-5.9999.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 + +inherit qt5-module + +DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework" + +if [[ ${QT5_BUILD_TYPE} == live ]]; then + KEYWORDS="" +else + KEYWORDS="~amd64" +fi + +# FIXME: src/3rdparty/poly2tri doesn't respect CXX and CXXFLAGS +# TODO: plugins (qt-jsondb, geoclue, gypsy), qml +IUSE="" + +DEPEND=" + ~x11-libs/qt-core-${PV}[debug=] + ~x11-libs/qt-gui-${PV}[debug=] + ~x11-libs/qt-network-${PV}[debug=] + ~x11-libs/qt3d-${PV}[debug=] +" +RDEPEND="${DEPEND}"