blob: 35ea70e75213337e447a2c591cdd8b36950fc15d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
KDE_SCM="svn"
inherit kde4-base
DESCRIPTION="KDE internationalization package"
DEPEND=">=sys-devel/gettext-0.17"
RDEPEND="${DEPEND}"
KEYWORDS=""
IUSE=""
LANGS="af ar be bg bn bn_IN br ca cs csb cy da de el en_GB eo es et eu fa fi fr
fy ga gl gu he hi hr hsb hu hy is it ja ka kk km kn ko ku lb lt lv mk ml
ms mt nb nds ne nl nn nso oc pa pl pt pt_BR ro ru rw se sk sl sr sv ta te tg
th tr uk uz vi wa xh zh_CN zh_HK zh_TW"
for LNG in ${LANGS}; do
IUSE="${IUSE} linguas_${LNG}"
done
S="${WORKDIR}"/${PN}
pkg_setup() {
local lng
for lng in ${LINGUAS}; do
enabled_linguas+=" ${lng}"
done
if [[ -z ${enabled_linguas} ]]; then
elog
elog "You either have the LINGUAS variable unset, or it only"
elog "contains languages not supported by ${P}."
elog "You won't have any additional language support."
elog
elog "${P} supports these language codes:"
elog "${LANGS}"
elog
fi
kde4-base_pkg_setup
}
src_unpack() {
local lng
for lng in ${enabled_linguas}; do
ESVN_REPO_URI="svn://anonsvn.kde.org/home/kde/trunk/l10n-kde4/${lng}"
S="${WORKDIR}"/${PN}/${lng}
subversion_src_unpack
done
ESVN_REPO_URI="svn://anonsvn.kde.org/home/kde/trunk/l10n-kde4/scripts"
S="${WORKDIR}"/${PN}/scripts
subversion_src_unpack
S="${WORKDIR}"/${PN}
kde4-base_src_unpack
}
src_prepare() {
for lng in ${enabled_linguas}; do
# remove everything but the kdepim stuff
find "${S}/${lng}" -mindepth 2 -maxdepth 2 -type d ! -name "kdepim*" -exec rm -r {} +
rm "${S}/${lng}"/messages/entry.desktop
done
}
src_configure() {
local lng
if [[ ! -z ${enabled_linguas} ]]; then
cat <<-EOF > "${S}"/CMakeLists.txt
project(kde-l10n)
find_package(KDE4 REQUIRED)
include (KDE4Defaults)
include(MacroOptionalAddSubdirectory)
find_package(Gettext REQUIRED)
EOF
for lng in ${enabled_linguas} ; do
"${S}"/scripts/autogen.sh ${lng}
echo "add_subdirectory( ${lng} )" >> "${S}"/CMakeLists.txt
done
kde4-base_src_configure
fi
}
src_compile() {
[[ -z ${enabled_linguas} ]] || kde4-base_src_compile
}
src_test() {
[[ -z ${enabled_linguas} ]] || kde4-base_src_test
}
src_install() {
[[ -z ${enabled_linguas} ]] || kde4-base_src_install
}
|