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