Gentoo Archives: gentoo-commits

From: Akinori Hattori <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-m17n/
Date: Sat, 06 Aug 2022 01:05:13
Message-Id: 1659747871.3c68132792911e33e5bd86b9a1c3bfdc4f7c1d01.hattya@gentoo
1 commit: 3c68132792911e33e5bd86b9a1c3bfdc4f7c1d01
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 6 01:04:31 2022 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 6 01:04:31 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c681327
7
8 app-i18n/ibus-m17n: new upstream release
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
12
13 app-i18n/ibus-m17n/Manifest | 1 +
14 app-i18n/ibus-m17n/ibus-m17n-1.4.10.ebuild | 45 ++++++++++++++++++++++++++++++
15 2 files changed, 46 insertions(+)
16
17 diff --git a/app-i18n/ibus-m17n/Manifest b/app-i18n/ibus-m17n/Manifest
18 index ddf007d5628d..187fefbea844 100644
19 --- a/app-i18n/ibus-m17n/Manifest
20 +++ b/app-i18n/ibus-m17n/Manifest
21 @@ -1 +1,2 @@
22 +DIST ibus-m17n-1.4.10.tar.gz 642940 BLAKE2B f00b4392925a6ad24e5cbfc266d13a68e4b7641a4f70c93bb381d4bea13d03b40af659e2ba27533ce7514477aed2744eaac0b1aa25d7c4280fda8adf1ee5dde7 SHA512 7e8ab477de7fb75fbbcdd25d6f13b0dc1fdaae6ab23a2c5c18de7eadcd88c3ff4d441a32f58d4b4bde0d20685d45dd57fa24c5e61361ad5b6bbb29075949d396
23 DIST ibus-m17n-1.4.9.tar.gz 494921 BLAKE2B c0adc4ff702b7a9828c6d966b52eca90f7f538786f17a9e8273dd13bcdfab59c24e59b2f680f1582bf4dc077dcc2e3c774258d09f58fc296b32d090ee42531af SHA512 6a7d7316fc98e832282302a5d54eb40b6e879f98d6910db8d2c834be6c23ebda30ccbc5ed116caa3d91148e5bb2260c49f670c8c7fb2c6215d31f3e6794cd3ab
24
25 diff --git a/app-i18n/ibus-m17n/ibus-m17n-1.4.10.ebuild b/app-i18n/ibus-m17n/ibus-m17n-1.4.10.ebuild
26 new file mode 100644
27 index 000000000000..1466a2deebfc
28 --- /dev/null
29 +++ b/app-i18n/ibus-m17n/ibus-m17n-1.4.10.ebuild
30 @@ -0,0 +1,45 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="8"
35 +
36 +inherit gnome2-utils xdg
37 +
38 +DESCRIPTION="M17N engine for IBus"
39 +HOMEPAGE="https://github.com/ibus/ibus/wiki"
40 +SRC_URI="https://github.com/ibus/${PN}/releases/download/${PV}/${P}.tar.gz"
41 +
42 +LICENSE="GPL-2+"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE="gtk nls"
46 +
47 +DEPEND="app-i18n/ibus
48 + dev-libs/m17n-lib
49 + gtk? ( x11-libs/gtk+:3 )
50 + nls? ( virtual/libintl )"
51 +RDEPEND="${DEPEND}
52 + >=dev-db/m17n-db-1.7"
53 +BDEPEND="sys-devel/gettext
54 + virtual/pkgconfig"
55 +
56 +src_configure() {
57 + econf \
58 + $(use_enable nls) \
59 + $(use_with gtk gtk 3.0)
60 +}
61 +
62 +pkg_preinst() {
63 + xdg_pkg_preinst
64 + gnome2_schemas_savelist
65 +}
66 +
67 +pkg_postinst() {
68 + xdg_pkg_postinst
69 + gnome2_schemas_update
70 +}
71 +
72 +pkg_postrm() {
73 + xdg_pkg_postrm
74 + gnome2_schemas_update
75 +}