# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=6 KDE_HANDBOOK="optional" inherit kde5 DESCRIPTION="KDE internationalization package" HOMEPAGE="http://l10n.kde.org" KEYWORDS="~amd64 ~x86" DEPEND=" $(add_frameworks_dep ki18n) $(add_qt_dep linguist-tools) sys-devel/gettext " RDEPEND=" ! /dev/null || elog "${my_tar}: tar extract command failed at least partially - continuing" done } src_prepare() { default [[ -n ${A} ]] || return # add all linguas to cmake cat <<-EOF > CMakeLists.txt || die project(kde-l10n) cmake_minimum_required(VERSION 2.8.12) $(printf "add_subdirectory( %s )\n" \ `find . -mindepth 1 -maxdepth 1 -type d | sed -e "s:^\./::"`) EOF # Drop KDE4-based part find -maxdepth 2 -type f -name CMakeLists.txt -exec \ sed -i -e "/add_subdirectory(4)/ s/^/#DONT/" {} + || die # Handbook optional find -type f -name CMakeLists.txt -exec \ sed -i -e "/find_package.*KF5DocTools/ s/ REQUIRED//" {} + || die if ! use handbook ; then find -mindepth 4 -maxdepth 4 -type f -name CMakeLists.txt -exec \ sed -i -e '/add_subdirectory(docs)/ s/^/#DONT/' {} + || die fi # Remove kdepim translations (part of kde-apps/kdepim-l10n) for subdir in kdepim kdepimlibs kdepim-runtime pim; do find -mindepth 5 -maxdepth 5 -type f -name CMakeLists.txt -exec \ sed -i -e "/add_subdirectory( *${subdir} *)/ s/^/#DONT/" {} + || die done # Remove ktp translations (part of kde-apps/ktp-l10n) # Drop that hack (and kde-apps/ktp-l10n) after ktp:4 removal find ./*/5/*/messages/kdenetwork -type f \ \( -name kaccounts*po -o -name kcm_ktp*po -o -name kcmtelepathy*po \ -o -name kded_ktp*po -o -name ktp*po -o -name plasma*ktp*po \) \ -delete } src_configure() { [[ -n ${A} ]] && kde5_src_configure } src_compile() { [[ -n ${A} ]] && kde5_src_compile } src_test() { :; } src_install() { [[ -n ${A} ]] && kde5_src_install }