mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
SDL2 needs to be built with OpenGL support. Some systems don’t have this USE flag enabled by default, so this now requires it. Revision not bumped; if it compiled correctly already, it’s safe to assume the opengl flag was already enabled. Fixes: https://bugs.gentoo.org/941152 Signed-off-by: Seth M. Price <sprice623@aol.com>
34 lines
785 B
Bash
34 lines
785 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="VT100 terminal hardware simulator"
|
|
HOMEPAGE="https://github.com/larsbrinkhoff/terminal-simulator"
|
|
SRC_URI="https://github.com/larsbrinkhoff/terminal-simulator/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="media-libs/libsdl2[opengl] media-libs/sdl2-image virtual/opengl"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_compile() {
|
|
cd vt100
|
|
emake
|
|
}
|
|
|
|
src_install() {
|
|
exeinto "/usr/libexec/terminal-simulator"
|
|
doexe vt100/vt100
|
|
dobin "${FILESDIR}/vt100"
|
|
|
|
# This directoy is cd'd into because the
|
|
# program looks for a hardcoded relative dir
|
|
insinto "/usr/share/terminal-simulator/vt100"
|
|
doins vt100/*.shader
|
|
|
|
dodoc README.md
|
|
}
|