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/fbterm/
Date: Sat, 05 Aug 2017 13:16:01
Message-Id: 1501938339.3cf62dcec3a68b9adc1c8c460ea943d26b0a66f8.hattya@gentoo
1 commit: 3cf62dcec3a68b9adc1c8c460ea943d26b0a66f8
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 5 13:05:39 2017 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 5 13:05:39 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cf62dce
7
8 app-i18n/fbterm: drop old
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 app-i18n/fbterm/fbterm-1.7-r1.ebuild | 56 ------------------------------------
13 1 file changed, 56 deletions(-)
14
15 diff --git a/app-i18n/fbterm/fbterm-1.7-r1.ebuild b/app-i18n/fbterm/fbterm-1.7-r1.ebuild
16 deleted file mode 100644
17 index ff834875c8f..00000000000
18 --- a/app-i18n/fbterm/fbterm-1.7-r1.ebuild
19 +++ /dev/null
20 @@ -1,56 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="5"
25 -inherit autotools-utils
26 -
27 -DESCRIPTION="Fast terminal emulator for the Linux framebuffer"
28 -HOMEPAGE="https://fbterm.googlecode.com/"
29 -SRC_URI="https://fbterm.googlecode.com/files/${P}.0.tar.gz"
30 -
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -KEYWORDS="~amd64 ~arm ~arm64 ~x86"
34 -IUSE="caps gpm video_cards_vesa"
35 -
36 -RDEPEND="caps? ( sys-libs/libcap )
37 - gpm? ( sys-libs/gpm )
38 - video_cards_vesa? ( dev-libs/libx86 )
39 - media-libs/fontconfig
40 - media-libs/freetype:2"
41 -DEPEND="${RDEPEND}
42 - sys-libs/ncurses
43 - virtual/pkgconfig"
44 -
45 -AUTOTOOLS_IN_SOURCE_BUILD=1
46 -
47 -DOCS=( AUTHORS NEWS README )
48 -
49 -src_configure() {
50 - local myeconfargs=(
51 - $(use_enable gpm)
52 - $(use_enable video_cards_vesa vesa)
53 - )
54 - autotools-utils_src_configure
55 -}
56 -
57 -src_install() {
58 - autotools-utils_src_install
59 - $(type -P tic) -o "${ED}/usr/share/terminfo/" \
60 - "${S}"/terminfo/fbterm || die "Failed to generate terminfo database"
61 - if use caps; then
62 - setcap "cap_sys_tty_config+ep" "${ED}"/usr/bin/fbterm
63 - else
64 - fperms u+s /usr/bin/fbterm
65 - fi
66 -}
67 -
68 -pkg_postinst() {
69 - einfo
70 - einfo " ${PN} won't work with vga16fb. You have to use other native"
71 - einfo " framebuffer drivers or vesa driver."
72 - einfo " See ${EPREFIX}/usr/share/doc/${P}/README for details."
73 - einfo " To use ${PN}, ensure you are in video group."
74 - einfo " To input CJK merge app-i18n/fbterm-ucimf"
75 - einfo
76 -}