guru/app-admin/himitsu-ssh/himitsu-ssh-0.4.ebuild
Haelwenn (lanodan) Monnier 527693bf42
app-admin/himitsu-ssh: add 0.4
Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
2024-07-14 18:25:53 +02:00

40 lines
836 B
Bash

# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
if [[ "${PV}" = "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/himitsu-ssh"
else
SRC_URI="https://git.sr.ht/~sircmpwn/himitsu-ssh/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
DESCRIPTION="SSH integration for Himitsu"
HOMEPAGE="https://git.sr.ht/~sircmpwn/himitsu-ssh"
LICENSE="GPL-3"
SLOT="0"
RDEPEND="
>=app-admin/himitsu-0.8:=
>=dev-hare/hare-ssh-0.24.2:=
"
DEPEND="
${RDEPEND}
>=dev-lang/hare-0.24.2:=
"
BDEPEND="app-text/scdoc"
# All binaries are hare-built
QA_FLAGS_IGNORED=".*"
src_configure() {
sed -i 's;^PREFIX=.*;PREFIX=/usr;' Makefile || die
}
src_test() {
# Don't run tests if there's none (which is the case of 0.3)
grep -r '@test fn' . && emake check
}