Gentoo Archives: gentoo-commits

From: "Naohiro Aota (naota)" <naota@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/scim-tables: scim-tables-0.5.12.ebuild ChangeLog
Date: Mon, 04 Mar 2013 10:48:14
Message-Id: 20130304104810.02E8A2171D@flycatcher.gentoo.org
1 naota 13/03/04 10:48:09
2
3 Modified: ChangeLog
4 Added: scim-tables-0.5.12.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key F8551514)
9
10 Revision Changes Path
11 1.69 app-i18n/scim-tables/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/scim-tables/ChangeLog?rev=1.69&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/scim-tables/ChangeLog?rev=1.69&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/scim-tables/ChangeLog?r1=1.68&r2=1.69
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/ChangeLog,v
20 retrieving revision 1.68
21 retrieving revision 1.69
22 diff -u -r1.68 -r1.69
23 --- ChangeLog 14 Aug 2012 13:51:17 -0000 1.68
24 +++ ChangeLog 4 Mar 2013 10:48:09 -0000 1.69
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-i18n/scim-tables
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/ChangeLog,v 1.68 2012/08/14 13:51:17 naota Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/ChangeLog,v 1.69 2013/03/04 10:48:09 naota Exp $
31 +
32 +*scim-tables-0.5.12 (04 Mar 2013)
33 +
34 + 04 Mar 2013; Naohiro Aota <naota@g.o> +scim-tables-0.5.12.ebuild:
35 + Version bump
36
37 *scim-tables-0.5.11 (14 Aug 2012)
38
39
40
41
42 1.1 app-i18n/scim-tables/scim-tables-0.5.12.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/scim-tables/scim-tables-0.5.12.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/scim-tables/scim-tables-0.5.12.ebuild?rev=1.1&content-type=text/plain
46
47 Index: scim-tables-0.5.12.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/scim-tables-0.5.12.ebuild,v 1.1 2013/03/04 10:48:09 naota Exp $
52
53 inherit autotools base eutils
54
55 DESCRIPTION="Smart Common Input Method (SCIM) Generic Table Input Method Server"
56 HOMEPAGE="http://www.scim-im.org/"
57 SRC_URI="mirror://sourceforge/scim/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE="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=">=app-i18n/scim-1.4.7-r2
69 nls? ( virtual/libintl )"
70 DEPEND="${RDEPEND}
71 virtual/pkgconfig
72 nls? ( sys-devel/gettext )"
73
74 PATCHES=( "${FILESDIR}/${PN}-0.5.8+gcc-4.3.patch" )
75
76 pkg_setup() {
77 elog "Not all languages are going to be compiled."
78 elog "Please set LINGUAS to your preferred language(s)."
79 elog "Supported LINGUAS values are:"
80 elog "${LANGS}"
81 }
82
83 src_unpack() {
84 base_src_unpack
85
86 strip-linguas ${LANGS}
87 local use_languages="additional ${LINGUAS}"
88 elog "Languages being compiled are: ${use_languages}"
89
90 cd "${S}"
91 sed -i -e "/^SUBDIRS/s/.*/SUBDIRS = ${use_languages}/g" \
92 tables/Makefile.{am,in} || die "sed ${m} failed"
93
94 AT_NO_RECURSIVE=yes AT_M4DIR=${S}/m4 eautoreconf
95 }
96
97 src_compile() {
98 econf \
99 --disable-skim-support \
100 $(use_enable nls) \
101 --disable-static \
102 --disable-dependency-tracking \
103 --without-arts || die "econf failed"
104 emake || die "make failed"
105 }
106
107 src_install() {
108 emake DESTDIR="${D}" install || die "install failed"
109 dodoc README ChangeLog AUTHORS
110 }