Gentoo Archives: gentoo-commits

From: "Andreas HAttel (dilfridge)" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/calligra-l10n: ChangeLog calligra-l10n-2.3.83.ebuild calligra-l10n-2.3.82.ebuild
Date: Sat, 29 Oct 2011 17:56:58
Message-Id: 20111029175647.CA2122004B@flycatcher.gentoo.org
1 dilfridge 11/10/29 17:56:47
2
3 Modified: ChangeLog
4 Added: calligra-l10n-2.3.83.ebuild
5 Removed: calligra-l10n-2.3.82.ebuild
6 Log:
7 Version bump; remove old
8
9 (Portage version: 2.1.10.31/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.4 app-office/calligra-l10n/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/calligra-l10n/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/calligra-l10n/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/calligra-l10n/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-office/calligra-l10n/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 17 Oct 2011 15:17:17 -0000 1.3
25 +++ ChangeLog 29 Oct 2011 17:56:47 -0000 1.4
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-office/calligra-l10n
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-office/calligra-l10n/ChangeLog,v 1.3 2011/10/17 15:17:17 scarabeus Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-office/calligra-l10n/ChangeLog,v 1.4 2011/10/29 17:56:47 dilfridge Exp $
31 +
32 +*calligra-l10n-2.3.83 (29 Oct 2011)
33 +
34 + 29 Oct 2011; Andreas K. Huettel <dilfridge@g.o>
35 + -calligra-l10n-2.3.82.ebuild, +calligra-l10n-2.3.83.ebuild:
36 + Version bump; remove old
37
38 *calligra-l10n-2.3.82 (17 Oct 2011)
39
40
41
42
43 1.1 app-office/calligra-l10n/calligra-l10n-2.3.83.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/calligra-l10n/calligra-l10n-2.3.83.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/calligra-l10n/calligra-l10n-2.3.83.ebuild?rev=1.1&content-type=text/plain
47
48 Index: calligra-l10n-2.3.83.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-office/calligra-l10n/calligra-l10n-2.3.83.ebuild,v 1.1 2011/10/29 17:56:47 dilfridge Exp $
53
54 EAPI=4
55
56 inherit kde4-base
57
58 DESCRIPTION="Calligra localization package"
59 HOMEPAGE="http://www.kde.org/"
60 LICENSE="GPL-2"
61
62 DEPEND="sys-devel/gettext"
63 RDEPEND=""
64
65 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
66 IUSE="doc"
67
68 MY_LANGS="ca ca@valencia cs da de el en_GB es et fr it kk nb nds nl pl pt pt_BR ru sv uk zh_TW"
69 URI_BASE="mirror://kde/unstable/${PN/-l10n/}-${PV}/${PN}/"
70 SRC_URI=""
71 SLOT="4"
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 unset MY_LANG
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 ${MY_LANGS}; 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_configure() {
109 local mycmakeargs=(
110 -DBUILD_MESSAGES=ON -DBUILD_DATA=ON
111 $(cmake-utils_use_build doc)
112 )
113 [[ -e "${S}"/CMakeLists.txt ]] && kde4-base_src_configure
114 }
115
116 src_compile() {
117 [[ -e "${S}"/CMakeLists.txt ]] && kde4-base_src_compile
118 }
119
120 src_test() {
121 [[ -e "${S}"/CMakeLists.txt ]] && kde4-base_src_test
122 }
123
124 src_install() {
125 [[ -e "${S}"/CMakeLists.txt ]] && kde4-base_src_install
126 }