diff options
author | Andreas Sturmlechner <andreas.sturmlechner@gmail.com> | 2015-08-29 18:33:42 +0200 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2015-08-30 02:47:14 +1000 |
commit | 42479b34cb8b971543deaa473600989ed352b1f1 (patch) | |
tree | a79e9679ae719c4639755d22b8ad7d648819b33d /eclass/kde4-base.eclass | |
parent | Reset the dep on snakeoil as the code in the master branch has been fixed (diff) | |
download | gentoo-42479b34cb8b971543deaa473600989ed352b1f1.tar.gz gentoo-42479b34cb8b971543deaa473600989ed352b1f1.tar.bz2 gentoo-42479b34cb8b971543deaa473600989ed352b1f1.zip |
kde4-base.eclass: kde-l10n -> kde4-l10n
Fixes https://bugs.gentoo.org/show_bug.cgi?id=559086
Diffstat (limited to 'eclass/kde4-base.eclass')
-rw-r--r-- | eclass/kde4-base.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass index 8a81c558b2a6..e9dfef81ac50 100644 --- a/eclass/kde4-base.eclass +++ b/eclass/kde4-base.eclass @@ -331,13 +331,13 @@ if [[ ${PN} != oxygen-icons ]]; then kderdepend+=" kde-apps/oxygen-icons" fi -# add a dependency over kde-l10n +# add a dependency over kde4-l10n if [[ ${KDEBASE} != "kde-base" && -n ${KDE_LINGUAS} ]]; then for _lingua in ${KDE_LINGUAS}; do - # if our package has linguas, pull in kde-l10n with selected lingua enabled, + # if our package has linguas, pull in kde4-l10n with selected lingua enabled, # but only for selected ones. # this can't be done on one line because if user doesn't use any localisation - # then he is probably not interested in kde-l10n at all. + # then he is probably not interested in kde4-l10n at all. kderdepend+=" linguas_${_lingua}? ( $(add_kdeapps_dep kde4-l10n "linguas_${_lingua}(+)") ) " @@ -681,11 +681,11 @@ kde4-base_src_prepare() { fi # Enable/disable handbooks for kde4-base packages - # kde-l10n inherits kde4-base but is metpackage, so no check for doc + # kde4-l10n inherits kde4-base but is metapackage, so no check for doc # kdelibs inherits kde4-base but handle installing the handbook itself if ! has kde4-meta ${INHERITED} && in_iuse handbook; then if [[ ${KDEBASE} == kde-base ]]; then - if [[ ${PN} != kde-l10n && ${PN} != kdepim-l10n && ${PN} != kdelibs ]] && use !handbook; then + if [[ ${PN} != kde4-l10n && ${PN} != kdepim-l10n && ${PN} != kdelibs ]] && use !handbook; then # documentation in kde4-functions : ${KDE_DOC_DIRS:=doc} local dir |