Gentoo Archives: gentoo-commits

From: "Alexey Shvetsov (alexxy)" <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/kde-l10n: ChangeLog kde-l10n-4.1.4.ebuild
Date: Tue, 13 Jan 2009 21:39:59
Message-Id: E1LMqzN-0003BT-Om@stork.gentoo.org
1 alexxy 09/01/13 21:39:57
2
3 Modified: ChangeLog
4 Added: kde-l10n-4.1.4.ebuild
5 Log:
6 Bump kde to 4.1.4
7 (Portage version: 2.2_rc21/cvs/Linux 2.6.28-gentoo x86_64)
8
9 Revision Changes Path
10 1.15 kde-base/kde-l10n/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 16 Nov 2008 05:03:38 -0000 1.14
23 +++ ChangeLog 13 Jan 2009 21:39:57 -0000 1.15
24 @@ -1,6 +1,11 @@
25 # ChangeLog for kde-base/kde-l10n
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.14 2008/11/16 05:03:38 vapier Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.15 2009/01/13 21:39:57 alexxy Exp $
30 +
31 +*kde-l10n-4.1.4 (13 Jan 2009)
32 +
33 + 13 Jan 2009; Alexey Shvetsov <alexxy@g.o> +kde-l10n-4.1.4.ebuild:
34 + Bump to 4.1.4
35
36 15 Nov 2008; Mike Frysinger <vapier@g.o> kde-l10n-4.1.3.ebuild:
37 Add ppc/ppc64 love #244306.
38
39
40
41 1.1 kde-base/kde-l10n/kde-l10n-4.1.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.1.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.1.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kde-l10n-4.1.4.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.1.4.ebuild,v 1.1 2009/01/13 21:39:57 alexxy Exp $
51
52 EAPI="2"
53
54 inherit kde4-base
55
56 DESCRIPTION="KDE internationalization package"
57 HOMEPAGE="http://www.kde.org/"
58 LICENSE="GPL-2"
59
60 DEPEND="sys-devel/gettext"
61 RDEPEND=""
62
63 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
64 IUSE="htmlhandbook"
65
66 MY_LANGS="bg ca cs csb da de el en_GB eo es et fi fr fy ga gl hi hu it ja kk km ko
67 ku lt lv mk ml nb nds nl nn pa pl pt pt_BR ru sl sr sv ta th tr uk wa zh_CN zh_TW"
68
69 URI_BASE="${SRC_URI/-${PV}.tar.bz2/}"
70 SRC_URI=""
71
72 for MY_LANG in ${MY_LANGS} ; do
73 IUSE="${IUSE} linguas_${MY_LANG}"
74 SRC_URI="${SRC_URI} linguas_${MY_LANG}? ( ${URI_BASE}/${PN}-${MY_LANG}-${PV}.tar.bz2 )"
75 done
76
77 S="${WORKDIR}"
78
79 src_unpack() {
80 local LNG DIR
81 if [[ -z ${A} ]]; then
82 elog
83 elog "You either have the LINGUAS variable unset, or it only"
84 elog "contains languages not supported by ${P}."
85 elog "You won't have any additional language support."
86 elog
87 elog "${P} supports these language codes:"
88 elog "${MY_LANGS}"
89 elog
90 fi
91
92 [[ -n ${A} ]] && unpack ${A}
93 cd "${S}"
94
95 # add all linguas to cmake
96 if [[ -n ${A} ]]; then
97 for LNG in ${LINGUAS}; do
98 DIR="${PN}-${LNG}-${PV}"
99 if [[ -d "${DIR}" ]] ; then
100 echo "add_subdirectory( ${DIR} )" >> "${S}"/CMakeLists.txt
101 if ! use htmlhandbook; then
102 sed -i \
103 -e "/docs/ s:^:#DONOTWANT:" \
104 ${DIR}/CMakeLists.txt \
105 || die "Disabling docs for ${lng} failed."
106 fi
107 fi
108 done
109 fi
110 }
111
112 src_configure() {
113 [[ -n ${A} ]] && kde4-base_src_configure
114 }
115
116 src_compile() {
117 [[ -n ${A} ]] && kde4-base_src_compile
118 }
119
120 src_install() {
121 [[ -n ${A} ]] && kde4-base_src_install
122 }