Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-dicts/ipadic/
Date: Wed, 16 Sep 2020 11:41:10
Message-Id: 1600256436.63c56614e14aa344ef0423afa7d7423eee29b87e.soap@gentoo
1 commit: 63c56614e14aa344ef0423afa7d7423eee29b87e
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 16 11:40:36 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 16 11:40:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63c56614
7
8 app-dicts/ipadic: Port to EAPI 7
9
10 Closes: https://bugs.gentoo.org/742053
11 Package-Manager: Portage-3.0.7, Repoman-3.0.1
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 app-dicts/ipadic/ipadic-2.7.0-r2.ebuild | 17 +++++++++--------
15 1 file changed, 9 insertions(+), 8 deletions(-)
16
17 diff --git a/app-dicts/ipadic/ipadic-2.7.0-r2.ebuild b/app-dicts/ipadic/ipadic-2.7.0-r2.ebuild
18 index fba0b8b37b2..54a6d1d4850 100644
19 --- a/app-dicts/ipadic/ipadic-2.7.0-r2.ebuild
20 +++ b/app-dicts/ipadic/ipadic-2.7.0-r2.ebuild
21 @@ -1,23 +1,25 @@
22 # Copyright 1999-2020 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI="4"
26 -inherit autotools eutils
27 +EAPI=7
28 +
29 +inherit autotools
30
31 DESCRIPTION="Japanese dictionary for ChaSen"
32 HOMEPAGE="http://sourceforge.jp/projects/ipadic/"
33 SRC_URI="mirror://sourceforge.jp/${PN}/24435/${P}.tar.gz"
34
35 LICENSE="ipadic"
36 -KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
37 SLOT="0"
38 -IUSE=""
39 +KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
40
41 -DEPEND=">=app-text/chasen-2.3.1"
42 -RDEPEND=""
43 +BDEPEND=">=app-text/chasen-2.3.1"
44 +
45 +PATCHES=( "${FILESDIR}"/${PF}-gentoo.patch )
46
47 src_prepare() {
48 - epatch "${FILESDIR}/${PF}-gentoo.patch"
49 + default
50 + mv configure.{in,ac} || die
51 eautoreconf
52 }
53
54 @@ -26,5 +28,4 @@ src_install() {
55
56 insinto /etc
57 doins chasenrc
58 - dodoc AUTHORS ChangeLog NEWS README
59 }