Gentoo Archives: gentoo-commits

From: "Alex Alexander (wired)" <wired@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/kde-l10n: kde-l10n-4.3.4.ebuild ChangeLog
Date: Tue, 01 Dec 2009 10:22:19
Message-Id: E1NFPs9-0000i7-Jr@stork.gentoo.org
1 wired 09/12/01 10:22:17
2
3 Modified: ChangeLog
4 Added: kde-l10n-4.3.4.ebuild
5 Log:
6 Version bump KDE 4.3.4
7 (Portage version: 2.2_rc54/cvs/Linux x86_64, RepoMan options: --force)
8
9 Revision Changes Path
10 1.48 kde-base/kde-l10n/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/ChangeLog?rev=1.48&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/ChangeLog?rev=1.48&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/ChangeLog?r1=1.47&r2=1.48
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v
19 retrieving revision 1.47
20 retrieving revision 1.48
21 diff -u -r1.47 -r1.48
22 --- ChangeLog 30 Nov 2009 06:53:42 -0000 1.47
23 +++ ChangeLog 1 Dec 2009 10:22:17 -0000 1.48
24 @@ -1,6 +1,11 @@
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.47 2009/11/30 06:53:42 josejx Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.48 2009/12/01 10:22:17 wired Exp $
29 +
30 +*kde-l10n-4.3.4 (01 Dec 2009)
31 +
32 + 01 Dec 2009; Alex Alexander <wired@g.o> +kde-l10n-4.3.4.ebuild:
33 + Version bump
34
35 30 Nov 2009; Joseph Jezak <josejx@g.o> kde-l10n-4.3.3.ebuild:
36 Marked ppc/ppc64 stable for bug #292455.
37
38
39
40 1.1 kde-base/kde-l10n/kde-l10n-4.3.4.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.3.4.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.3.4.ebuild?rev=1.1&content-type=text/plain
44
45 Index: kde-l10n-4.3.4.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.3.4.ebuild,v 1.1 2009/12/01 10:22:17 wired Exp $
50
51 EAPI="2"
52
53 inherit kde4-base
54
55 DESCRIPTION="KDE internationalization package"
56 HOMEPAGE="http://www.kde.org/"
57 LICENSE="GPL-2"
58
59 DEPEND="sys-devel/gettext"
60 RDEPEND=""
61
62 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="+handbook"
64
65 MY_LANGS="ar bg bn_IN ca cs csb da de el en_GB es et eu fi fr ga gl gu he hi
66 hne hr hu is it ja kk km kn ko ku lt lv mai mk ml mr nb nds nl nn pa pl pt
67 pt_BR ro ru sk sl sr sv tg 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 fi
102 done
103 fi
104 }
105
106 src_configure() {
107 mycmakeargs="${mycmakeargs}
108 $(cmake-utils_use_build handbook docs)"
109 [[ -n ${A} ]] && kde4-base_src_configure
110 }
111
112 src_compile() {
113 [[ -n ${A} ]] && kde4-base_src_compile
114 }
115
116 src_install() {
117 [[ -n ${A} ]] && kde4-base_src_install
118 }