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/ibus-anthy: ibus-anthy-1.5.4.ebuild ChangeLog
Date: Tue, 24 Dec 2013 14:48:27
Message-Id: 20131224144824.9C7832004C@flycatcher.gentoo.org
1 naota 13/12/24 14:48:24
2
3 Modified: ChangeLog
4 Added: ibus-anthy-1.5.4.ebuild
5 Log:
6 version bump.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key F8551514)
9
10 Revision Changes Path
11 1.46 app-i18n/ibus-anthy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?rev=1.46&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?rev=1.46&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?r1=1.45&r2=1.46
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v
20 retrieving revision 1.45
21 retrieving revision 1.46
22 diff -u -r1.45 -r1.46
23 --- ChangeLog 5 Sep 2013 18:22:03 -0000 1.45
24 +++ ChangeLog 24 Dec 2013 14:48:24 -0000 1.46
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-i18n/ibus-anthy
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v 1.45 2013/09/05 18:22:03 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v 1.46 2013/12/24 14:48:24 naota Exp $
30 +
31 +*ibus-anthy-1.5.4 (24 Dec 2013)
32 +
33 + 24 Dec 2013; Naohiro Aota <naota@g.o> +ibus-anthy-1.5.4.ebuild:
34 + version bump.
35
36 05 Sep 2013; Michał Górny <mgorny@g.o> ibus-anthy-1.5.0.ebuild:
37 Clean up PYTHON_COMPAT from old implementations.
38
39
40
41 1.1 app-i18n/ibus-anthy/ibus-anthy-1.5.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.5.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.5.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ibus-anthy-1.5.4.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.5.4.ebuild,v 1.1 2013/12/24 14:48:24 naota Exp $
51
52 EAPI=5
53 PYTHON_DEPEND="2:2.5"
54 PYTHON_COMPAT=( python{2_6,2_7} )
55 inherit eutils python-single-r1 autotools gnome2-utils
56
57 DESCRIPTION="Japanese input method Anthy IMEngine for IBus Framework"
58 HOMEPAGE="http://code.google.com/p/ibus/"
59 SRC_URI="http://ibus.googlecode.com/files/${P}.tar.gz
60 https://raw.github.com/ibus/ibus-anthy/${PV}/engine/anthy.i"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65 IUSE="deprecated nls"
66
67 RDEPEND="${PYTHON_DEPS}
68 >=app-i18n/ibus-1.5.0
69 app-i18n/anthy
70 deprecated? ( >=dev-python/pygtk-2.15.2 )
71 nls? ( virtual/libintl )"
72 DEPEND="${RDEPEND}
73 dev-libs/gobject-introspection
74 dev-util/intltool
75 virtual/pkgconfig
76 deprecated? ( dev-lang/swig )
77 nls? ( >=sys-devel/gettext-0.16.1 )"
78
79 src_prepare() {
80 >py-compile #397497
81 cp "${DISTDIR}"/anthy.i "${S}"/engine # deal with packaging bug
82 }
83
84 src_configure() {
85 econf --enable-private-png \
86 $(use_enable deprecated pygtk2-anthy) \
87 $(use_enable nls)
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install
92
93 dodoc AUTHORS ChangeLog NEWS README
94
95 find "${ED}" -name '*.la' -type f -delete || die
96
97 python_optimize
98 }
99
100 pkg_preinst() {
101 gnome2_icon_savelist
102 }
103
104 pkg_postinst() {
105 elog
106 elog "app-dicts/kasumi is not required but probably useful for you."
107 elog
108 elog "# emerge app-dicts/kasumi"
109 elog
110 }
111
112 pkg_postrm() {
113 gnome2_icon_cache_update
114 }