Gentoo Archives: gentoo-commits

From: "Johannes Huber (johu)" <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/kde-l10n: ChangeLog kde-l10n-4.10.4.ebuild
Date: Tue, 04 Jun 2013 18:22:16
Message-Id: 20130604182134.A26FC2171F@flycatcher.gentoo.org
1 johu 13/06/04 18:21:34
2
3 Modified: ChangeLog
4 Added: kde-l10n-4.10.4.ebuild
5 Log:
6 Version bump KDE SC 4.10.4
7
8 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)
9
10 Revision Changes Path
11 1.183 kde-base/kde-l10n/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kde-l10n/ChangeLog?rev=1.183&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kde-l10n/ChangeLog?rev=1.183&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kde-l10n/ChangeLog?r1=1.182&r2=1.183
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v
20 retrieving revision 1.182
21 retrieving revision 1.183
22 diff -u -r1.182 -r1.183
23 --- ChangeLog 4 Jun 2013 13:05:53 -0000 1.182
24 +++ ChangeLog 4 Jun 2013 18:21:34 -0000 1.183
25 @@ -1,6 +1,11 @@
26 # ChangeLog for kde-base/kde-l10n
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.182 2013/06/04 13:05:53 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.183 2013/06/04 18:21:34 johu Exp $
30 +
31 +*kde-l10n-4.10.4 (04 Jun 2013)
32 +
33 + 04 Jun 2013; Johannes Huber <johu@g.o> +kde-l10n-4.10.4.ebuild:
34 + Version bump KDE SC 4.10.4
35
36 04 Jun 2013; Agostino Sarubbo <ago@g.o> kde-l10n-4.10.3.ebuild:
37 Stable for amd64, wrt to bug #471392
38
39
40
41 1.1 kde-base/kde-l10n/kde-l10n-4.10.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.10.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.10.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kde-l10n-4.10.4.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.10.4.ebuild,v 1.1 2013/06/04 18:21:34 johu Exp $
51
52 EAPI=5
53
54 inherit kde4-base
55
56 DESCRIPTION="KDE internationalization package"
57
58 DEPEND="
59 sys-devel/gettext
60 "
61 RDEPEND="!<kde-base/konq-plugins-4.6"
62
63 KEYWORDS=" ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
64 IUSE="+handbook"
65
66 # /usr/portage/distfiles $ ls -1 kde-l10n-*-${PV}.* |sed -e 's:-${PV}.tar.xz::' -e 's:kde-l10n-::' |tr '\n' ' '
67 MY_LANGS="ar bg bs ca ca@valencia cs da de el en_GB es et eu fa fi fr ga gl he
68 hi hr hu ia is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt_BR ro ru si sk
69 sl sr sv tg th tr ug uk vi wa zh_CN zh_TW"
70
71 URI_BASE="${SRC_URI/-${PV}.tar.xz/}"
72 SRC_URI=""
73
74 for MY_LANG in ${MY_LANGS} ; do
75 IUSE="${IUSE} linguas_${MY_LANG}"
76 SRC_URI="${SRC_URI} linguas_${MY_LANG}? ( ${URI_BASE}/${PN}-${MY_LANG}-${PV}.tar.xz )"
77 done
78
79 S="${WORKDIR}"
80
81 src_unpack() {
82 local LNG DIR
83 if [[ -z ${A} ]]; then
84 elog
85 elog "You either have the LINGUAS variable unset, or it only"
86 elog "contains languages not supported by ${P}."
87 elog "You won't have any additional language support."
88 elog
89 elog "${P} supports these language codes:"
90 elog "${MY_LANGS}"
91 elog
92 fi
93
94 [[ -n ${A} ]] && unpack ${A}
95 cd "${S}"
96
97 # add all linguas to cmake
98 if [[ -n ${A} ]]; then
99 for LNG in ${LINGUAS}; do
100 DIR="${PN}-${LNG}-${PV}"
101 if [[ -d "${DIR}" ]] ; then
102 echo "add_subdirectory( ${DIR} )" >> "${S}"/CMakeLists.txt
103 fi
104 done
105 fi
106 }
107
108 src_prepare() {
109 find "${S}" -name CMakeLists.txt -type f \
110 -exec sed -i -e 's:^ *add_subdirectory( *kdepim-runtime *):# no kdepim-runtime:g' {} +
111 find "${S}" -name CMakeLists.txt -type f \
112 -exec sed -i -e 's:^ *add_subdirectory( *kdepim *):# no kdepim:g' {} +
113
114 kde4-base_src_prepare
115 }
116
117 src_configure() {
118 mycmakeargs=(
119 $(cmake-utils_use_build handbook docs)
120 )
121 [[ -n ${A} ]] && kde4-base_src_configure
122 }
123
124 src_compile() {
125 [[ -n ${A} ]] && kde4-base_src_compile
126 }
127
128 src_test() {
129 [[ -n ${A} ]] && kde4-base_src_test
130 }
131
132 src_install() {
133 [[ -n ${A} ]] && kde4-base_src_install
134 }