diff options
author | Jonathan Callen <abcd@gentoo.org> | 2011-05-23 22:56:36 +0000 |
---|---|---|
committer | Jonathan Callen <abcd@gentoo.org> | 2011-05-23 22:56:36 +0000 |
commit | 5128ff381092aeb4cea9b8b01886016486ee725a (patch) | |
tree | 95f9b85bf2a17cf0978745737359d530cd25bd3e /eclass | |
parent | Version bump (diff) | |
download | gentoo-2-5128ff381092aeb4cea9b8b01886016486ee725a.tar.gz gentoo-2-5128ff381092aeb4cea9b8b01886016486ee725a.tar.bz2 gentoo-2-5128ff381092aeb4cea9b8b01886016486ee725a.zip |
Always show kdeprefix warning with USE=kdeprefix; make warning scarier
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde4-base.eclass | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass index 753771a62c66..f2da490e1031 100644 --- a/eclass/kde4-base.eclass +++ b/eclass/kde4-base.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.92 2011/05/14 16:03:22 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.93 2011/05/23 22:56:36 abcd Exp $ # @ECLASS: kde4-base.eclass # @MAINTAINER: @@ -980,15 +980,6 @@ kde4-base_pkg_postinst() { einfo "Use it at your own risk." einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" echo - elif [[ ${BUILD_TYPE} != live ]] && has kdeprefix ${IUSE//+} && use kdeprefix; then - # warning about kdeprefix for non-live users - echo - ewarn "WARNING! You have the kdeprefix useflag enabled." - ewarn "This setting is strongly discouraged and might lead to potential trouble" - ewarn "with KDE update strategies." - ewarn "You are using this setup at your own risk and the kde team does not" - ewarn "take responsibilities for dead kittens." - echo fi # for all 3rd party soft tell user that he SHOULD install kdebase-startkde or kdebase-runtime-meta if [[ ${KDEBASE} != kde-base ]] && \ @@ -1003,6 +994,15 @@ kde4-base_pkg_postinst() { fi fi fi + if has kdeprefix ${IUSE//+} && use kdeprefix; then + # warning about kdeprefix + echo + ewarn "WARNING! You have the kdeprefix useflag enabled." + eerror "This setting will be removed on or about 2011-06-06." + ewarn "You are using this setup at your own risk and the kde team does not" + ewarn "take responsibilities for dead kittens." + echo + fi } # @FUNCTION: kde4-base_pkg_postrm |