From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SeEWJ-0000TH-Sy for garchives@archives.gentoo.org; Mon, 11 Jun 2012 23:59:40 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37BA0E0123; Mon, 11 Jun 2012 23:59:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 03FACE0123 for ; Mon, 11 Jun 2012 23:59:26 +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 685DE1B4011 for ; Mon, 11 Jun 2012 23:59:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 24814E5430 for ; Mon, 11 Jun 2012 23:59:25 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1339459127.864c9a6c4d49c5afea2965671214fa093038f942.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 864c9a6c4d49c5afea2965671214fa093038f942 X-VCS-Branch: master Date: Mon, 11 Jun 2012 23:59:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: b7323a1a-c904-440d-b022-d094dfe60dc2 X-Archives-Hash: 2f788788370ceee00e15e408d79f90ee commit: 864c9a6c4d49c5afea2965671214fa093038f942 Author: Davide Pesavento gmail com> AuthorDate: Mon Jun 11 23:58:47 2012 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Mon Jun 11 23:58:47 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/qt.git;a=3Dco= mmit;h=3D864c9a6c [qt5-build.eclass] Recognize more Qt5 modules. --- eclass/qt5-build.eclass | 14 +++++++++----- 1 files changed, 9 insertions(+), 5 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 9e90c2a..e1c37d5 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -12,8 +12,8 @@ # Requires EAPI 4. =20 case ${EAPI} in - 4) : ;; - *) die "qt5-build.eclass: unsupported EAPI=3D${EAPI:-0}" ;; + 4) : ;; + *) die "qt5-build.eclass: unsupported EAPI=3D${EAPI:-0}" ;; esac =20 inherit base eutils flag-o-matic multilib toolchain-funcs versionator @@ -32,9 +32,12 @@ LICENSE=3D"|| ( LGPL-2.1 GPL-3 )" SLOT=3D"5" =20 case ${PN#qt-} in - core|dbus|gui|network|sql|test|xml) EGIT_PROJECT=3D"qtbase" ;; - 3d|jsbackend|script|svg|xmlpatterns) EGIT_PROJECT=3D"${PN/-}" ;; - *) die "qt5-build.eclass: unknown module ${PN}" ;; + core|dbus|gui|network|sql|test|widgets|xml) + EGIT_PROJECT=3D"qtbase" + ;; + *) + EGIT_PROJECT=3D"${PN/-}" + ;; esac case ${QT5_BUILD_TYPE} in live) @@ -43,6 +46,7 @@ case ${QT5_BUILD_TYPE} in ;; release) SRC_URI=3D"" # TODO + ;; esac =20 IUSE=3D"+c++11 debug +pch"