Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/scim-tables: ChangeLog scim-tables-0.5.8-r1.ebuild
Date: Wed, 24 Sep 2008 12:48:01
Message-Id: E1KiTmf-0001JI-Kr@stork.gentoo.org
1 matsuu 08/09/24 12:47:57
2
3 Modified: ChangeLog
4 Added: scim-tables-0.5.8-r1.ebuild
5 Log:
6 Revert --without-arts, bug #235872.
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.26-gentoo-r1 x86_64)
8
9 Revision Changes Path
10 1.55 app-i18n/scim-tables/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-tables/ChangeLog?rev=1.55&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-tables/ChangeLog?rev=1.55&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-tables/ChangeLog?r1=1.54&r2=1.55
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/ChangeLog,v
19 retrieving revision 1.54
20 retrieving revision 1.55
21 diff -u -r1.54 -r1.55
22 --- ChangeLog 9 Jun 2008 12:39:53 -0000 1.54
23 +++ ChangeLog 24 Sep 2008 12:47:57 -0000 1.55
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-i18n/scim-tables
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/ChangeLog,v 1.54 2008/06/09 12:39:53 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/ChangeLog,v 1.55 2008/09/24 12:47:57 matsuu Exp $
29 +
30 +*scim-tables-0.5.8-r1 (24 Sep 2008)
31 +
32 + 24 Sep 2008; MATSUU Takuto <matsuu@g.o>
33 + +scim-tables-0.5.8-r1.ebuild:
34 + Revert --without-arts, bug #235872.
35
36 09 Jun 2008; Diego Pettenò <flameeyes@g.o>
37 +files/scim-tables-0.5.8+gcc-4.3.patch, scim-tables-0.5.8.ebuild:
38
39
40
41 1.1 app-i18n/scim-tables/scim-tables-0.5.8-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-tables/scim-tables-0.5.8-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-tables/scim-tables-0.5.8-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: scim-tables-0.5.8-r1.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/app-i18n/scim-tables/scim-tables-0.5.8-r1.ebuild,v 1.1 2008/09/24 12:47:57 matsuu Exp $
51
52 inherit kde-functions eutils base autotools
53
54 DESCRIPTION="Smart Common Input Method (SCIM) Generic Table Input Method Server"
55 HOMEPAGE="http://www.scim-im.org/"
56 SRC_URI="mirror://sourceforge/scim/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
61 IUSE="kde nls"
62 LANGS="am ar bn gu hi ja kn ko ml ne pa ru ta te th uk vi zh"
63 for i in ${LANGS} ; do
64 IUSE="${IUSE} linguas_${i}"
65 done
66
67 RDEPEND="x11-libs/libXt
68 >=app-i18n/scim-1.4.0
69 kde? ( >=app-i18n/skim-1.2.0 )
70 nls? ( virtual/libintl )"
71 DEPEND="${RDEPEND}
72 dev-util/pkgconfig
73 nls? ( sys-devel/gettext )"
74
75 PATCHES=(
76 "${FILESDIR}"/${P}+gcc-4.3.patch
77 )
78
79 pkg_setup() {
80 if ! built_with_use '>=app-i18n/scim-1.4.0' gtk ; then
81 eerror ">=app-i18n/scim-1.4.0 with gtk USE flag is required by ${PF}."
82 # die "Please reemerge >=app-i18n/scim-1.4.0 with USE=\"gtk\"."
83 fi
84
85 elog "Not all languages are going to be compiled."
86 elog "Please set LINGUAS to your preferred language(s)."
87 elog "Supported LINGUAS values are:"
88 elog "${LANGS}"
89 }
90
91 src_unpack() {
92 base_src_unpack
93
94 strip-linguas ${LANGS}
95 local use_languages="additional ${LINGUAS}"
96 elog "Languages being compiled are: ${use_languages}"
97
98 cd "${S}"
99 sed -i -e "/^SUBDIRS/s/.*/SUBDIRS = ${use_languages}/g" \
100 tables/Makefile.am || die "sed ${m} failed"
101
102 eautoreconf
103 }
104
105 src_compile() {
106 econf \
107 $(use_enable kde skim-support) \
108 $(use_enable nls) \
109 --disable-static \
110 --disable-dependency-tracking \
111 --without-arts || die "econf failed"
112 emake || die "make failed"
113 }
114
115 src_install() {
116 emake DESTDIR="${D}" install || die "install failed"
117 dodoc README ChangeLog AUTHORS
118 }