diff options
author | Andreas Sturmlechner <andreas.sturmlechner@gmail.com> | 2015-07-25 00:56:19 +0200 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2015-08-13 23:41:15 +1000 |
commit | f6c9ed62b62ac232678d6ea7cc4f33cffaafaa13 (patch) | |
tree | e621089b9376719c129d6683d17228e005747526 /eclass/kde4-base.eclass | |
parent | kde4-base.eclass: Fix KDE_SCM=svn (diff) | |
download | gentoo-f6c9ed62b62ac232678d6ea7cc4f33cffaafaa13.tar.gz gentoo-f6c9ed62b62ac232678d6ea7cc4f33cffaafaa13.tar.bz2 gentoo-f6c9ed62b62ac232678d6ea7cc4f33cffaafaa13.zip |
kde4-base.eclass: Avoid confusion over system configuration
E.g. https://forums.gentoo.org/viewtopic-p-7786236.html#7786236
Diffstat (limited to 'eclass/kde4-base.eclass')
-rw-r--r-- | eclass/kde4-base.eclass | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass index ff0b674ccdcc..aab579175833 100644 --- a/eclass/kde4-base.eclass +++ b/eclass/kde4-base.eclass @@ -899,12 +899,10 @@ kde4-base_pkg_postinst() { fi # for all 3rd party soft tell user that he SHOULD install kdebase-startkde or kdebase-runtime-meta if [[ ${KDEBASE} != kde-base ]] && \ - ! has_version 'kde-apps/kdebase-runtime-meta' && \ - ! has_version 'kde-base/kdebase-startkde'; then + ! has_version 'kde-apps/kdebase-runtime-meta'; then if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then echo - ewarn "WARNING! Your system configuration contains neither \"kde-base/kdebase-runtime-meta\"" - ewarn "nor \"kde-base/kdebase-startkde\". You need one of above." + ewarn "WARNING! Your system configuration does not contain \"kde-apps/kdebase-runtime-meta\"." ewarn "With this setting you are unsupported by KDE team." ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." fi |