blob: e37bb75f6256a0c4c6238968b51d0880038023e5 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-i18n/kde-i18n-3.4.3.ebuild,v 1.8 2005/12/26 14:48:45 kloeri Exp $
inherit kde
DESCRIPTION="KDE internationalization package"
HOMEPAGE="http://www.kde.org/"
LICENSE="GPL-2"
KEYWORDS="~alpha amd64 hppa ppc ppc64 sparc x86"
IUSE=""
SLOT="${KDEMAJORVER}.${KDEMINORVER}"
need-kde ${PV}
LANGS="af ar bg bn br bs ca cs cy da de el en_GB eo es
et eu fi fr fy ga he hi hsb hu is it ja lt mk
nb nds nl nn pa pl pt pt_BR ro ru se sk sl sr
sr@Latn sv ta tg tr uk zh_CN"
for X in ${LANGS}; do
SRC_URI="${SRC_URI} linguas_${X}? ( mirror://kde/stable/${PV}/src/kde-i18n/kde-i18n-${X}-${PV}.tar.bz2 )"
done
pkg_setup() {
if [ -z "${A}" ]; then
echo
eerror "You must set the LINGUAS environment variable to a list of valid"
eerror "language codes, one for each language you would like to install."
eerror "e.g.: LINGUAS=\"sv de pt\""
eerror ""
eerror "The available language codes are:"
echo "${LANGS}"
echo
die
fi
}
src_unpack() {
# Override kde_src_unpack
unpack ${A}
}
src_compile() {
local _S=${S}
for dir in `ls ${WORKDIR}`; do
S=${WORKDIR}/${dir}
kde_src_compile myconf
myconf="${myconf} --prefix=${KDEDIR}"
kde_src_compile configure
kde_src_compile make
done
S=${_S}
}
src_install() {
local _S=${S}
for dir in `ls ${WORKDIR}`; do
cd ${WORKDIR}/${dir}
make DESTDIR=${D} install || die
done
S=${_S}
}
|