diff options
author | Jonathan Callen <jcallen@gentoo.org> | 2011-05-23 22:56:36 +0000 |
---|---|---|
committer | Jonathan Callen <jcallen@gentoo.org> | 2011-05-23 22:56:36 +0000 |
commit | 60c933840deee5bc109fe0264c5c6bbb2f8e6830 (patch) | |
tree | b6744cc0cef54356e6960fddf1f0f94c9a5e739f /eclass/kde4-base.eclass | |
parent | Version bump (diff) | |
download | historical-60c933840deee5bc109fe0264c5c6bbb2f8e6830.tar.gz historical-60c933840deee5bc109fe0264c5c6bbb2f8e6830.tar.bz2 historical-60c933840deee5bc109fe0264c5c6bbb2f8e6830.zip |
Always show kdeprefix warning with USE=kdeprefix; make warning scarier
Diffstat (limited to 'eclass/kde4-base.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 |