Gentoo Archives: gentoo-commits

From: "Theo Chatzimichos (tampakrap)" <tampakrap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/kde-l10n: ChangeLog kde-l10n-4.3.1.ebuild
Date: Tue, 01 Sep 2009 10:02:21
Message-Id: E1MiV03-0006Ey-RG@stork.gentoo.org
1 tampakrap 09/09/01 15:10:23
2
3 Modified: ChangeLog
4 Added: kde-l10n-4.3.1.ebuild
5 Log:
6 Version bump KDE 4.3.1
7 (Portage version: 2.2_rc38/cvs/Linux x86_64, RepoMan options: --force)
8
9 Revision Changes Path
10 1.35 kde-base/kde-l10n/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/ChangeLog?rev=1.35&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/ChangeLog?rev=1.35&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/ChangeLog?r1=1.34&r2=1.35
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v
19 retrieving revision 1.34
20 retrieving revision 1.35
21 diff -u -r1.34 -r1.35
22 --- ChangeLog 4 Aug 2009 00:16:29 -0000 1.34
23 +++ ChangeLog 1 Sep 2009 15:10:23 -0000 1.35
24 @@ -1,6 +1,12 @@
25 # ChangeLog for kde-base/kde-l10n
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.34 2009/08/04 00:16:29 wired Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.35 2009/09/01 15:10:23 tampakrap Exp $
29 +
30 +*kde-l10n-4.3.1 (01 Sep 2009)
31 +
32 + 01 Sep 2009; Theo Chatzimichos <tampakrap@g.o>
33 + +kde-l10n-4.3.1.ebuild:
34 + Version bump
35
36 *kde-l10n-4.3.0 (04 Aug 2009)
37
38
39
40
41 1.1 kde-base/kde-l10n/kde-l10n-4.3.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.3.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.3.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kde-l10n-4.3.1.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.3.1.ebuild,v 1.1 2009/09/01 15:10:23 tampakrap 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="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
64 IUSE="+handbook"
65
66 MY_LANGS="ar bg bn_IN ca cs csb da de el en_GB es et eu fi fr ga gl gu he hi
67 hne hu is it ja kk km kn ko ku lt lv mai mk ml mr nb nds nl nn pa pl pt
68 pt_BR ro ru sk sl sr sv tg th tr uk wa zh_CN zh_TW"
69
70 URI_BASE="${SRC_URI/-${PV}.tar.bz2/}"
71 SRC_URI=""
72
73 for MY_LANG in ${MY_LANGS} ; do
74 IUSE="${IUSE} linguas_${MY_LANG}"
75 SRC_URI="${SRC_URI} linguas_${MY_LANG}? ( ${URI_BASE}/${PN}-${MY_LANG}-${PV}.tar.bz2 )"
76 done
77
78 S="${WORKDIR}"
79
80 src_unpack() {
81 local LNG DIR
82 if [[ -z ${A} ]]; then
83 elog
84 elog "You either have the LINGUAS variable unset, or it only"
85 elog "contains languages not supported by ${P}."
86 elog "You won't have any additional language support."
87 elog
88 elog "${P} supports these language codes:"
89 elog "${MY_LANGS}"
90 elog
91 fi
92
93 [[ -n ${A} ]] && unpack ${A}
94 cd "${S}"
95
96 # add all linguas to cmake
97 if [[ -n ${A} ]]; then
98 for LNG in ${LINGUAS}; do
99 DIR="${PN}-${LNG}-${PV}"
100 if [[ -d "${DIR}" ]] ; then
101 echo "add_subdirectory( ${DIR} )" >> "${S}"/CMakeLists.txt
102 fi
103 done
104 fi
105 }
106
107 src_configure() {
108 mycmakeargs="${mycmakeargs}
109 $(cmake-utils_use_build handbook docs)"
110 [[ -n ${A} ]] && kde4-base_src_configure
111 }
112
113 src_compile() {
114 [[ -n ${A} ]] && kde4-base_src_compile
115 }
116
117 src_install() {
118 [[ -n ${A} ]] && kde4-base_src_install
119 }