Gentoo Archives: gentoo-commits

From: Ryan Fox <flewkey@××××.party>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/foot-terminfo/
Date: Sat, 28 Aug 2021 02:19:33
Message-Id: 1630116681.932ea0a18d2f9aabec1e2a8cafc9280b7b5743d0.flewkey@gentoo
1 commit: 932ea0a18d2f9aabec1e2a8cafc9280b7b5743d0
2 Author: Ryan Fox <flewkey <AT> 2a03 <DOT> party>
3 AuthorDate: Sat Aug 28 02:11:21 2021 +0000
4 Commit: Ryan Fox <flewkey <AT> 2a03 <DOT> party>
5 CommitDate: Sat Aug 28 02:11:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=932ea0a1
7
8 gui-apps/foot-terminfo: Change install location
9
10 Dickey added a version of foot's terminfo to ncurses, but it lacks
11 certain features. To avoid a package collision with sys-libs/ncurses,
12 we will install terminfo to a non-standard location from now on.
13
14 See https://codeberg.org/dnkl/foot/issues/671
15
16 Package-Manager: Portage-3.0.20, Repoman-3.0.3
17 Signed-off-by: Ryan Fox <flewkey <AT> 2a03.party>
18
19 gui-apps/foot-terminfo/foot-terminfo-9999.ebuild | 6 +++---
20 1 file changed, 3 insertions(+), 3 deletions(-)
21
22 diff --git a/gui-apps/foot-terminfo/foot-terminfo-9999.ebuild b/gui-apps/foot-terminfo/foot-terminfo-9999.ebuild
23 index e2e366268..1727e2d92 100644
24 --- a/gui-apps/foot-terminfo/foot-terminfo-9999.ebuild
25 +++ b/gui-apps/foot-terminfo/foot-terminfo-9999.ebuild
26 @@ -26,7 +26,7 @@ src_compile() {
27 }
28
29 src_install() {
30 - dodir /usr/share/terminfo/f/
31 - cp "${S}/f/foot" "${D}/usr/share/terminfo/f/foot" || die
32 - cp "${S}/f/foot-direct" "${D}/usr/share/terminfo/f/foot-direct" || die
33 + dodir /usr/share/foot/terminfo/f/
34 + cp "${S}/f/foot" "${D}/usr/share/foot/terminfo/f/foot" || die
35 + cp "${S}/f/foot-direct" "${D}/usr/share/foot/terminfo/f/foot-direct" || die
36 }