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: Thu, 08 Sep 2022 13:22:16
Message-Id: 1662643318.aea002e718eed9e4bcf822bfe2e1db6075f9d14e.hattya@gentoo
1 commit: aea002e718eed9e4bcf822bfe2e1db6075f9d14e
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 8 13:21:58 2022 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 8 13:21:58 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aea002e7
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.11.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 ddbdfffd42f8..12ea8c81fbfb 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.11.tar.gz 644907 BLAKE2B 269f4f815b0bcce2ab0d15840b565cbce2037e4a307d2341333e66034d96d02fa6f9f2eae5e75477a7187af1f01e5b4f0f1db3327aa4b40bbce1a4e0ecb64b07 SHA512 f2fb4afc009ffee63b6f09e42fc6ec9528ba0b06c16d4371db8d2e4e4d0da1795bf6c28f8ccc5bad206b13181a98906eabb474adf331175636de2b8a0119a731
24
25 diff --git a/app-i18n/ibus-m17n/ibus-m17n-1.4.11.ebuild b/app-i18n/ibus-m17n/ibus-m17n-1.4.11.ebuild
26 new file mode 100644
27 index 000000000000..1466a2deebfc
28 --- /dev/null
29 +++ b/app-i18n/ibus-m17n/ibus-m17n-1.4.11.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 +}