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.ebuild
Date: Sun, 24 Feb 2008 15:59:19
Message-Id: E1JTJG0-0005Z1-6O@stork.gentoo.org
1 matsuu 08/02/24 15:59:16
2
3 Modified: ChangeLog
4 Added: scim-tables-0.5.8.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.53 app-i18n/scim-tables/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-tables/ChangeLog?rev=1.53&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-tables/ChangeLog?rev=1.53&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-tables/ChangeLog?r1=1.52&r2=1.53
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/ChangeLog,v
19 retrieving revision 1.52
20 retrieving revision 1.53
21 diff -u -r1.52 -r1.53
22 --- ChangeLog 16 Nov 2007 18:01:35 -0000 1.52
23 +++ ChangeLog 24 Feb 2008 15:59:15 -0000 1.53
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-i18n/scim-tables
26 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/ChangeLog,v 1.52 2007/11/16 18:01:35 matsuu Exp $
28 +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/ChangeLog,v 1.53 2008/02/24 15:59:15 matsuu Exp $
30 +
31 +*scim-tables-0.5.8 (24 Feb 2008)
32 +
33 + 24 Feb 2008; MATSUU Takuto <matsuu@g.o> +scim-tables-0.5.8.ebuild:
34 + Version bumped.
35
36 16 Nov 2007; <matsuu@g.o> -files/scim-tables-qt335.patch,
37 -scim-tables-0.5.3.ebuild, -scim-tables-0.5.6-r1.ebuild,
38
39
40
41 1.1 app-i18n/scim-tables/scim-tables-0.5.8.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-tables/scim-tables-0.5.8.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.ebuild?rev=1.1&content-type=text/plain
45
46 Index: scim-tables-0.5.8.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.ebuild,v 1.1 2008/02/24 15:59:15 matsuu Exp $
51
52 inherit kde-functions eutils
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 mirror://gentoo/kde-admindir-3.5.3.tar.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
62 IUSE="kde nls"
63 LANGS="am ar bn gu hi ja kn ko ml ne pa ru ta te th uk vi zh"
64 for i in ${LANGS} ; do
65 IUSE="${IUSE} linguas_${i}"
66 done
67
68 RDEPEND="x11-libs/libXt
69 >=app-i18n/scim-1.4.0
70 kde? ( >=app-i18n/skim-1.2.0 )
71 nls? ( virtual/libintl )"
72 DEPEND="${RDEPEND}
73 dev-util/pkgconfig
74 nls? ( sys-devel/gettext )"
75
76 pkg_setup() {
77 if ! built_with_use '>=app-i18n/scim-1.4.0' gtk ; then
78 eerror ">=app-i18n/scim-1.4.0 with gtk USE flag is required by ${PF}."
79 die "Please reemerge >=app-i18n/scim-1.4.0 with USE=\"gtk\"."
80 fi
81
82 elog "Not all languages are going to be compiled."
83 elog "Please set LINGUAS to your preferred language(s)."
84 elog "Supported LINGUAS values are:"
85 elog "${LANGS}"
86 }
87
88 src_compile() {
89 strip-linguas ${LANGS}
90 local use_languages="additional ${LINGUAS}"
91 elog "Languages being compiled are: ${use_languages}"
92
93 for m in Makefile.in Makefile.am ; do
94 sed -e "/^SUBDIRS/s/.*/SUBDIRS = ${use_languages}/g" \
95 tables/${m} > "${T}"/${m} || die "sed ${m} failed"
96 cp "${T}"/${m} tables/${m} || die "mv ${m} failed"
97 done
98
99 econf \
100 $(use_enable kde skim-support) \
101 $(use_enable nls) \
102 --disable-static \
103 --disable-dependency-tracking \
104 --without-arts || die "econf failed"
105 emake || die "make failed"
106 }
107
108 src_install() {
109 emake DESTDIR="${D}" install || die "install failed"
110 dodoc README ChangeLog AUTHORS
111 }
112
113
114
115 --
116 gentoo-commits@l.g.o mailing list