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/jfbterm/
Date: Thu, 07 Oct 2021 14:13:44
Message-Id: 1633616006.afeefcb79935faa54919e8be4bda6b8f8895bf95.hattya@gentoo
1 commit: afeefcb79935faa54919e8be4bda6b8f8895bf95
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 7 14:09:55 2021 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 7 14:13:26 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afeefcb7
7
8 app-i18n/jfbterm: update to EAPI 7
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
12
13 app-i18n/jfbterm/jfbterm-0.4.7-r4.ebuild | 17 ++++++++---------
14 1 file changed, 8 insertions(+), 9 deletions(-)
15
16 diff --git a/app-i18n/jfbterm/jfbterm-0.4.7-r4.ebuild b/app-i18n/jfbterm/jfbterm-0.4.7-r4.ebuild
17 index 70443ef74fd..bcfc43de173 100644
18 --- a/app-i18n/jfbterm/jfbterm-0.4.7-r4.ebuild
19 +++ b/app-i18n/jfbterm/jfbterm-0.4.7-r4.ebuild
20 @@ -1,7 +1,7 @@
21 # Copyright 1999-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=6
25 +EAPI="7"
26
27 inherit autotools flag-o-matic
28
29 @@ -15,10 +15,9 @@ KEYWORDS="amd64 ppc ppc64 sparc x86"
30 IUSE="debug"
31
32 DEPEND="sys-libs/ncurses:0"
33 -RDEPEND="
34 - media-fonts/unifont
35 - media-fonts/font-misc-misc
36 - media-fonts/intlfonts"
37 +RDEPEND="media-fonts/font-misc-misc
38 + media-fonts/intlfonts
39 + media-fonts/unifont"
40
41 PATCHES=(
42 "${FILESDIR}"/${PN}-sigchld-debian.patch
43 @@ -38,15 +37,15 @@ src_configure() {
44 }
45
46 src_install() {
47 - dodir /etc /usr/share/fonts/jfbterm
48 + dodir /etc /usr/share/fonts/${PN}
49 default
50
51 - mv "${ED%/}"/etc/jfbterm.conf{.sample,} || die
52 + mv "${ED}"/etc/${PN}.conf{.sample,} || die
53
54 - doman jfbterm.1 jfbterm.conf.5
55 + doman ${PN}.{1,conf.5}
56
57 # install example config files
58 docinto examples
59 - dodoc jfbterm.conf.sample*
60 + dodoc ${PN}.conf.sample*
61 docompress -x /usr/share/doc/${PF}/examples
62 }