Files
guru/x11-terms/tym/tym-3.5.1-r2.ebuild
Mazunki Hoksaas 663d864400 x11-terms/tym: revbump, fix failing tests
Closes: https://bugs.gentoo.org/920443
Signed-off-by: Mazunki Hoksaas <rolferen@gmail.com>
2024-11-25 20:03:56 +01:00

50 lines
1.0 KiB
Bash

# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
LUA_COMPAT=( lua5-3 luajit )
inherit autotools lua-single xdg
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/endaaman/tym"
else
SRC_URI="https://github.com/endaaman/tym/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
DESCRIPTION="Lua-configurable terminal emulator"
HOMEPAGE="https://github.com/endaaman/tym"
LICENSE="MIT"
SLOT="0"
IUSE="test"
REQUIRED_USE="${LUA_REQUIRED_USE}"
DEPEND="
${LUA_DEPS}
x11-libs/gtk+:3
x11-libs/vte
"
RDEPEND="${DEPEND}
dev-libs/glib
dev-libs/libpcre2
x11-libs/cairo
x11-libs/pango
"
src_prepare() {
default
# the categories provided by eclass do a better job than upstream, and
# having duplicate list of categories fails on QA
sed -i '/^Categories=.*$/d' "${S}"/tym-daemon.desktop "${S}"/tym.desktop || die
}
src_configure() {
eautoreconf
econf --enable-luajit=$(usex lua_single_target_luajit yes no) --enable-debug=$(usex test yes no)
}