Skip to content

Commit

Permalink
app-i18n/fbterm: version bump to 1.7_p20190503
Browse files Browse the repository at this point in the history
An example improvement: a correct TERM value inside the terminal
("fbterm" instead of "linux")

Closes: https://bugs.gentoo.org/714002
Closes: gentoo#15467
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Alexey Sokolov <[email protected]>
Signed-off-by: Akinori Hattori <[email protected]>
  • Loading branch information
DarthGandalf authored and hattya committed May 20, 2020
1 parent 8857719 commit 3294fec
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 1 deletion.
1 change: 1 addition & 0 deletions app-i18n/fbterm/Manifest
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
DIST fbterm-1.7.0.tar.gz 188642 BLAKE2B 2f4e0a989a58d6dd67e7696786d820f15b18039d8912b967de55b09aa03c723cad1d76171a264c41487171f6650089f8a7e02e50bed267f2465fc8a6af62c57e SHA512 ba78b5118b5e4c65046f7f91ce88cb4f828e2debb34358df8518e1907a8d601a2be4dfcf144e84494dc30e4828d333574debe8dd3ffb59e2169c3e48ba1f6a10
DIST fbterm-1.7_p20190503.tar.gz 187225 BLAKE2B 9efa290c73dae49e12bb53d44c502a58fa5baaf517248b18ae1218285a3785fe276bf028613eac0a78ccee51c8b392153533dffd1e2b88201cccf8badb6d34e1 SHA512 13a57f8c5fff1d9c70021cd01f554a76e5465ae49b05a5aa49949caf31eb2b8fc231bdfba6ac42840542b73edc4ab66e487eebd0fa9d92761c7193294edadf81
63 changes: 63 additions & 0 deletions app-i18n/fbterm/fbterm-1.7_p20190503.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI="7"

inherit autotools fcaps

DESCRIPTION="Fast terminal emulator for the Linux framebuffer"
HOMEPAGE="https://github.com/gjedeer/fbterm"

MY_COMMIT="ccea326dd73f4d6b6442fde7ba7c2be9cd35c6df"
SRC_URI="https://github.com/gjedeer/fbterm/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/fbterm-${MY_COMMIT}"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="gpm video_cards_vesa"

DEPEND="
media-libs/fontconfig
media-libs/freetype:2
>=sys-libs/ncurses-6.1
gpm? ( sys-libs/gpm )
video_cards_vesa? ( dev-libs/libx86 )
"
BDEPEND="
virtual/pkgconfig
"

FILECAPS=(
cap_sys_tty_config+ep usr/bin/${PN}
)

src_prepare() {
# bug #648472
sed -i "s/terminfo//" Makefile.am || die "Can't remove terminfo"

default
eautoreconf
}

src_configure() {
econf \
$(use_enable gpm) \
$(use_enable video_cards_vesa vesa)
}

src_install() {
default

use filecaps || fperms u+s /usr/bin/${PN}
}

pkg_postinst() {
fcaps_pkg_postinst

elog "${PN} won't work with vga16fb. You have to use other native"
elog "framebuffer drivers or vesa driver."
elog "See ${EPREFIX}/usr/share/doc/${P}/README for details."
elog
elog "To use ${PN}, ensure you are in video group."
}
2 changes: 1 addition & 1 deletion app-i18n/fbterm/metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
<name>Cjk</name>
</maintainer>
<upstream>
<remote-id type="google-code">fbterm</remote-id>
<remote-id type="github">gjedeer/fbterm</remote-id>
</upstream>
</pkgmetadata>

0 comments on commit 3294fec

Please sign in to comment.