diff options
Diffstat (limited to 'eclass/kde4-base.eclass')
-rw-r--r-- | eclass/kde4-base.eclass | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass index 21c3d4448721..34d5e612a179 100644 --- a/eclass/kde4-base.eclass +++ b/eclass/kde4-base.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.141 2014/09/16 17:49:57 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.142 2014/10/25 19:01:53 kensington Exp $ # @ECLASS: kde4-base.eclass # @MAINTAINER: @@ -448,6 +448,9 @@ _calculate_src_uri() { 4.11.12) # Part of 4.14 actually, sigh. Not stable for next release! SRC_URI="mirror://kde/stable/4.14.1/src/${_kmname_pv}.tar.xz" ;; + 4.11.13) + # Part of 4.14 actually, sigh. Not stable for next release! + SRC_URI="mirror://kde/stable/4.14.2/src/${_kmname_pv}.tar.xz" ;; *) # Stable KDE SC releases SRC_URI="mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.xz" ;; @@ -600,7 +603,7 @@ kde4-base_pkg_setup() { # Check if gcc compiler is fresh enough. # In theory should be in pkg_pretend but we check it only for kdelibs there # and for others we do just quick scan in pkg_setup because pkg_pretend - # executions consume quite some time. + # executions consume quite some time (ie. when merging 300 packages at once will cause 300 checks) if [[ ${MERGE_TYPE} != binary ]]; then [[ $(gcc-major-version) -lt 4 ]] || \ ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -le 6 ]] ) \ |