Gentoo Archives: gentoo-commits

From: Davide Pesavento <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qt:master commit in: eclass/
Date: Thu, 07 Jun 2012 14:12:52
Message-Id: 1339078313.609621ff47d7a4d8b4fd825e756c407c3af72c27.pesa@gentoo
1 commit: 609621ff47d7a4d8b4fd825e756c407c3af72c27
2 Author: Davide Pesavento <davidepesa <AT> gmail <DOT> com>
3 AuthorDate: Thu Jun 7 14:11:53 2012 +0000
4 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 7 14:11:53 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=609621ff
7
8 [qt5-build.eclass] Specify EGIT_PROJECT.
9
10 ---
11 eclass/qt5-build.eclass | 9 ++++-----
12 1 files changed, 4 insertions(+), 5 deletions(-)
13
14 diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
15 index bf8d3f7..03bb283 100644
16 --- a/eclass/qt5-build.eclass
17 +++ b/eclass/qt5-build.eclass
18 @@ -32,19 +32,18 @@ LICENSE="|| ( LGPL-2.1 GPL-3 )"
19 SLOT="5"
20
21 case ${PN#qt-} in
22 - bearer|core|dbus|gui|sql|test|xml) repo_name="qtbase" ;;
23 - 3d|jsbackend|script|svg|xmlpatterns) repo_name="${PN/-}" ;;
24 + bearer|core|dbus|gui|sql|test|xml) EGIT_PROJECT="qtbase" ;;
25 + 3d|jsbackend|script|svg|xmlpatterns) EGIT_PROJECT="${PN/-}" ;;
26 *) die "qt5-build.eclass: unknown module ${PN}" ;;
27 esac
28 case ${QT5_BUILD_TYPE} in
29 live)
30 - EGIT_REPO_URI="git://gitorious.org/qt/${repo_name}.git
31 - https://git.gitorious.org/qt/${repo_name}.git"
32 + EGIT_REPO_URI="git://gitorious.org/qt/${EGIT_PROJECT}.git
33 + https://git.gitorious.org/qt/${EGIT_PROJECT}.git"
34 ;;
35 release)
36 SRC_URI="" # TODO
37 esac
38 -unset repo_name
39
40 IUSE="+c++11 debug +pch"