Files
guru/x11-terms/tym/tym-3.5.1.ebuild
Mazunki Hoksaas 5e7033f71a x11-terms/tym: add 3.5.1
Signed-off-by: Mazunki Hoksaas <rolferen@gmail.com>
2024-05-02 21:04:59 +02:00

48 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 lua-single xdg
if [[ ${PV} == 9999 ]]; then
inherit git-r3 autotools
EGIT_REPO_URI="https://github.com/endaaman/tym"
else
SRC_URI="https://github.com/endaaman/tym/releases/download/${PV}/${P}.tar.gz"
KEYWORDS="~amd64"
fi
DESCRIPTION="Lua-configurable terminal emulator"
HOMEPAGE="https://github.com/endaaman/tym"
LICENSE="MIT"
SLOT="0"
REQUIRED_USE="${LUA_REQUIRED_USE}"
DEPEND="
${LUA_DEPS}
x11-libs/gtk+:3
x11-libs/vte
"
RDEPEND="${DEPEND}"
src_prepare() {
default
# see https://github.com/endaaman/tym/issues/115
sed -i '/^CFLAGS=""/d' "${S}"/configure.ac || die
# 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() {
if [[ ${PV} == 9999 ]]; then
eautoreconf
fi
econf --enable-luajit=$(usex lua_single_target_luajit yes no)
}