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 129AB13800E for ; Fri, 3 Aug 2012 03:27:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 996A0E0738; Fri, 3 Aug 2012 03:27:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 65DE3E0738 for ; Fri, 3 Aug 2012 03:27:07 +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 C8E471B4030 for ; Fri, 3 Aug 2012 03:27:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 77051E543C for ; Fri, 3 Aug 2012 03:27:05 +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: <1343964258.5d472525d7255593f4bcf907ed0ae6e5437b4e5b.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: x11-libs/qt-components/ X-VCS-Repository: proj/qt X-VCS-Files: x11-libs/qt-components/metadata.xml x11-libs/qt-components/qt-components-9999.ebuild X-VCS-Directories: x11-libs/qt-components/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 5d472525d7255593f4bcf907ed0ae6e5437b4e5b X-VCS-Branch: master Date: Fri, 3 Aug 2012 03:27:05 +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: 6f01548f-56c9-427a-91f1-2e3e21defa3f X-Archives-Hash: 5558642655b0b827c550d252b9f5e107 commit: 5d472525d7255593f4bcf907ed0ae6e5437b4e5b Author: Davide Pesavento gmail com> AuthorDate: Fri Aug 3 03:24:18 2012 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Fri Aug 3 03:24:18 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=5d472525 [x11-libs/qt-components] Preliminary live ebuild for QtQuick Components for qt4. Very experimental, has some QA issues. --- x11-libs/qt-components/metadata.xml | 5 ++ x11-libs/qt-components/qt-components-9999.ebuild | 56 ++++++++++++++++++++++ 2 files changed, 61 insertions(+), 0 deletions(-) diff --git a/x11-libs/qt-components/metadata.xml b/x11-libs/qt-components/metadata.xml new file mode 100644 index 0000000..ab02f99 --- /dev/null +++ b/x11-libs/qt-components/metadata.xml @@ -0,0 +1,5 @@ + + + + qt + diff --git a/x11-libs/qt-components/qt-components-9999.ebuild b/x11-libs/qt-components/qt-components-9999.ebuild new file mode 100644 index 0000000..8572ae4 --- /dev/null +++ b/x11-libs/qt-components/qt-components-9999.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 + +EGIT_REPO_URI="git://gitorious.org/${PN}/${PN}.git + https://git.gitorious.org/${PN}/${PN}.git" + +inherit qt4-r2 git-2 + +DESCRIPTION="QtQuick/QML components and models" +HOMEPAGE="http://qt.gitorious.org/qt-components/qt-components" +LICENSE="BSD" +SLOT="0" +KEYWORDS="" + +IUSE="extras meego mobility symbian test" + +DEPEND=" + >=x11-libs/qt-core-4.7.4:4 + >=x11-libs/qt-declarative-4.7.4:4 + meego? ( + x11-libs/libXdamage + x11-libs/libXrandr + >=x11-libs/qt-dbus-4.7.4:4 + >=x11-libs/qt-opengl-4.7.4:4 + mobility? ( >=x11-libs/qt-mobility-1.2[systeminfo] ) + ) + symbian? ( + >=x11-libs/qt-svg-4.7.4:4 + mobility? ( >=x11-libs/qt-mobility-1.2[feedback,systeminfo] ) + ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local myconf=( + ./configure + -prefix "${EPREFIX}/usr" + -nomake demos + -nomake examples + $(use extras && echo -make || echo -nomake) extras + $(use test && echo -make || echo -nomake) tests + $(use meego && echo -meego) + $(use symbian && echo -symbian) + -no-meegotouch + -no-maliit + -no-contextsubscriber + -no-meegographicssystem + -xdamage + $(use mobility || echo -no)-mobility + ) + echo "${myconf[@]}" + "${myconf[@]}" || die "configure failed" +}