Gentoo Archives: gentoo-commits

From: "Jorge Manuel B. S. Vicetto (jmbsvicetto)" <jmbsvicetto@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/kde-l10n: ChangeLog kde-l10n-4.1.2.ebuild
Date: Thu, 02 Oct 2008 12:31:27
Message-Id: E1KlNL1-0000NC-5L@stork.gentoo.org
1 jmbsvicetto 08/10/02 12:31:23
2
3 Modified: ChangeLog
4 Added: kde-l10n-4.1.2.ebuild
5 Log:
6 Add kde-4.1.2 into the tree from the kde-testing overlay.
7 (Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 x86_64)
8
9 Revision Changes Path
10 1.11 kde-base/kde-l10n/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/ChangeLog?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/ChangeLog?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/ChangeLog?r1=1.10&r2=1.11
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- ChangeLog 9 Jun 2008 15:11:20 -0000 1.10
23 +++ ChangeLog 2 Oct 2008 12:31:22 -0000 1.11
24 @@ -1,6 +1,12 @@
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.10 2008/06/09 15:11:20 keytoaster Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.11 2008/10/02 12:31:22 jmbsvicetto Exp $
29 +
30 +*kde-l10n-4.1.2 (02 Oct 2008)
31 +
32 + 02 Oct 2008; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
33 + +kde-l10n-4.1.2.ebuild:
34 + Add kde-4.1.2 into the tree from the kde-testing overlay.
35
36 09 Jun 2008; Tobias Heinlein <keytoaster@g.o>
37 -kde-l10n-4.0.2.ebuild, -kde-l10n-4.0.3.ebuild:
38
39
40
41 1.1 kde-base/kde-l10n/kde-l10n-4.1.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.1.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.1.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kde-l10n-4.1.2.ebuild
47 ===================================================================
48 # Copyright 1999-2008 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.2.ebuild,v 1.1 2008/10/02 12:31:22 jmbsvicetto 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 ~x86"
64 IUSE=""
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 LANG DIR
81 if [[ -z ${A} ]]; then
82 echo
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 echo
87 elog "${P} supports these language codes:"
88 elog "${MY_LANGS}"
89 echo
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 LANG in ${LINGUAS}; do
98 DIR="${PN}-${LANG}-${PV}"
99 [[ -d "${DIR}" ]] && echo "add_subdirectory( ${DIR} )" >> "${S}"/CMakeLists.txt
100 done
101 fi
102 }
103 src_configure() {
104 [[ -n ${A} ]] && kde4-base_src_configure
105 }
106 src_compile() {
107 [[ -n ${A} ]] && kde4-base_src_compile
108 }
109
110 src_install() {
111 [[ -n ${A} ]] && kde4-base_src_install
112 }