diff options
author | Davide Pesavento <pesa@gentoo.org> | 2013-10-14 17:24:36 +0000 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2013-10-14 17:24:36 +0000 |
commit | e24669814d7711a1e368f246e2ffc28557ba7d7f (patch) | |
tree | 684023a3f800e24fe62f5d10a663d94bc546499c /eclass/qt4-build.eclass | |
parent | Ebuild for base64 (a base64 encoder written in java) - dependency of mucomman... (diff) | |
download | gentoo-2-e24669814d7711a1e368f246e2ffc28557ba7d7f.tar.gz gentoo-2-e24669814d7711a1e368f246e2ffc28557ba7d7f.tar.bz2 gentoo-2-e24669814d7711a1e368f246e2ffc28557ba7d7f.zip |
Switch to git-r3.eclass
Diffstat (limited to 'eclass/qt4-build.eclass')
-rw-r--r-- | eclass/qt4-build.eclass | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass index d25d5c2935ae..00822ebc69e1 100644 --- a/eclass/qt4-build.eclass +++ b/eclass/qt4-build.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.150 2013/08/13 10:17:54 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.151 2013/10/14 17:24:36 pesa Exp $ # @ECLASS: qt4-build.eclass # @MAINTAINER: @@ -18,7 +18,7 @@ inherit eutils flag-o-matic multilib toolchain-funcs versionator if [[ ${PV} == *9999* ]]; then QT4_BUILD_TYPE="live" - inherit git-2 + inherit git-r3 else QT4_BUILD_TYPE="release" fi @@ -31,8 +31,10 @@ MY_P=qt-everywhere-opensource-src-${MY_PV} case ${QT4_BUILD_TYPE} in live) - EGIT_REPO_URI="git://gitorious.org/qt/qt.git - https://git.gitorious.org/qt/qt.git" + EGIT_REPO_URI=( + "git://gitorious.org/qt/qt.git" + "https://git.gitorious.org/qt/qt.git" + ) EGIT_BRANCH=${PV%.9999} ;; release) @@ -120,7 +122,7 @@ qt4-build_src_unpack() { case ${QT4_BUILD_TYPE} in live) - git-2_src_unpack + git-r3_src_unpack ;; release) local tarball="${MY_P}.tar.gz" target= targets= |