Gentoo Archives: gentoo-commits

From: "Andreas Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/anthy/
Date: Fri, 24 Nov 2017 00:15:42
Message-Id: 1511482517.4d4176e9aea38a1768b6bd314e79d523b5d9d099.dilfridge@gentoo
1 commit: 4d4176e9aea38a1768b6bd314e79d523b5d9d099
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 24 00:14:49 2017 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 24 00:15:17 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d4176e9
7
8 app-i18n/anthy: Drop old
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.4
11
12 app-i18n/anthy/anthy-9100h-r1.ebuild | 62 ------------------------------------
13 1 file changed, 62 deletions(-)
14
15 diff --git a/app-i18n/anthy/anthy-9100h-r1.ebuild b/app-i18n/anthy/anthy-9100h-r1.ebuild
16 deleted file mode 100644
17 index 2f19573106f..00000000000
18 --- a/app-i18n/anthy/anthy-9100h-r1.ebuild
19 +++ /dev/null
20 @@ -1,62 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="3"
25 -
26 -inherit elisp-common eutils
27 -
28 -DESCRIPTION="Anthy -- free and secure Japanese input system"
29 -HOMEPAGE="http://anthy.osdn.jp/"
30 -SRC_URI="mirror://sourceforge.jp/${PN}/37536/${P}.tar.gz"
31 -
32 -LICENSE="GPL-2 LGPL-2.1"
33 -SLOT="0"
34 -KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
35 -IUSE="canna-2ch emacs static-libs"
36 -
37 -RDEPEND="canna-2ch? ( app-dicts/canna-2ch )
38 - emacs? ( virtual/emacs )"
39 -DEPEND="${RDEPEND}"
40 -
41 -src_prepare() {
42 - epatch "${FILESDIR}"/${PN}-anthy_context_t.patch
43 -
44 - if use canna-2ch; then
45 - einfo "Adding nichan.ctd to anthy.dic."
46 - sed -i \
47 - -e "/set_input_encoding eucjp/aread ${EPREFIX}/var/lib/canna/dic/canna/nichan.ctd" \
48 - mkworddic/dict.args.in || die
49 - fi
50 -}
51 -
52 -src_configure() {
53 - local myconf
54 -
55 - use emacs || myconf="EMACS=no"
56 -
57 - econf \
58 - $(use_enable static-libs static) \
59 - ${myconf} || die
60 -}
61 -
62 -src_install() {
63 - emake DESTDIR="${D}" install || die
64 -
65 - if use emacs; then
66 - elisp-site-file-install "${FILESDIR}"/50anthy-gentoo.el || die
67 - fi
68 -
69 - dodoc AUTHORS DIARY NEWS README ChangeLog || die
70 -
71 - rm -f doc/Makefile*
72 - docinto doc
73 - dodoc doc/* || die
74 -}
75 -
76 -pkg_postinst() {
77 - use emacs && elisp-site-regen
78 -}
79 -
80 -pkg_postrm() {
81 - use emacs && elisp-site-regen
82 -}