blob: ec59e73c619213ba2444545fc5aefd0ad2f5344a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
COMMIT="01dd0a231e2125a40ceba5f59fd945ff29bf2cdc"
SRC_URI="https://github.com/Aetf/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
inherit autotools flag-o-matic systemd toolchain-funcs vcs-snapshot
DESCRIPTION="KMS/DRM based virtual Console Emulator"
HOMEPAGE="https://github.com/Aetf/kmscon"
LICENSE="MIT LGPL-2.1 BSD-2"
SLOT="0"
IUSE="debug doc +drm +fbdev +gles2 +optimizations +pango pixman static-libs systemd +unicode"
COMMON_DEPEND="
>=virtual/udev-172
x11-libs/libxkbcommon
>=dev-libs/libtsm-4.0.0:=
media-libs/mesa[X(+)]
drm? ( x11-libs/libdrm
>=media-libs/mesa-8.0.3[egl,gbm] )
gles2? ( >=media-libs/mesa-8.0.3[gles2] )
systemd? ( sys-apps/systemd )
pango? ( x11-libs/pango dev-libs/glib:2 )
pixman? ( x11-libs/pixman )"
RDEPEND="${COMMON_DEPEND}
x11-misc/xkeyboard-config"
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
x11-base/xorg-proto
doc? ( dev-util/gtk-doc )"
REQUIRED_USE="gles2? ( drm )"
# args - names of renderers to enable
renderers_enable() {
if [[ "x${RENDER}" == "x" ]]; then
RENDER="$1"
shift
else
for i in $@; do
RENDER+=",${i}"
done
fi
}
# args - names of font renderer backends to enable
fonts_enable() {
if [[ "x${FONTS}" == "x" ]]; then
FONTS="$1"
shift
else
for i in $@; do
FONTS+=",${i}"
done
fi
}
# args - names of video backends to enable
video_enable() {
if [[ "x${VIDEO}" == "x" ]]; then
VIDEO="$1"
shift
else
for i in $@; do
VIDEO+=",${i}"
done
fi
}
src_prepare() {
default
eautoreconf
export CC_FOR_BUILD="$(tc-getBUILD_CC)"
}
src_configure() {
# Video backends
if use fbdev; then
video_enable fbdev
fi
if use drm; then
video_enable drm2d
fi
if use gles2; then
video_enable drm3d
fi
# Font rendering backends
if use unicode; then
fonts_enable unifont
fi
if use pango; then
fonts_enable pango
fi
# Console rendering backends
renderers_enable bbulk
if use gles2; then
renderers_enable gltex
fi
if use pixman; then
renderers_enable pixman
fi
# kmscon sets -ffast-math unconditionally
strip-flags
# xkbcommon not in portage
econf \
$(use_enable static-libs static) \
$(use_enable debug) \
$(use_enable optimizations) \
$(use_enable systemd multi-seat) \
--with-video=${VIDEO} \
--with-fonts=${FONTS} \
--with-renderers=${RENDER} \
--with-sessions=dummy,terminal
}
src_install() {
emake DESTDIR="${D}" install
systemd_dounit "${S}/docs"/kmscon{,vt@}.service
}
pkg_postinst() {
grep -e "^ERASECHAR" "${EROOT}"/etc/login.defs && \
ewarn "It is recommended that you comment out the ERASECHAR line in" && \
ewarn " /etc/login.defs for proper backspace functionality at the" && \
ewarn " kmscon login prompt. For details see:" && \
ewarn "https://github.com/dvdhrm/kmscon/issues/69#issuecomment-13827797"
}
|