mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 23:23:00 -04:00
39 lines
788 B
Bash
39 lines
788 B
Bash
# Copyright 2020-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit xdg
|
|
|
|
DESCRIPTION="Graphical UI to help manage Linux game overlays (MangoHud)."
|
|
HOMEPAGE="https://github.com/benjamimgois/goverlay"
|
|
|
|
if [[ ${PV} == *9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/benjamimgois/${PN}.git"
|
|
EGIT3_STORE_DIR="${T}"
|
|
else
|
|
SRC_URI="https://github.com/benjamimgois/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
|
|
KEYWORDS="~amd64"
|
|
fi
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
|
|
RDEPEND="
|
|
games-util/mangohud
|
|
"
|
|
|
|
BDEPEND="
|
|
>=dev-lang/lazarus-3.0[qt6]
|
|
"
|
|
|
|
src_prepare() {
|
|
sed -i 's#/usr/local#/usr#g' Makefile || die "Failed to repalace prefix"
|
|
eapply_user
|
|
}
|
|
|
|
src_compile() {
|
|
emake LAZBUILDOPTS="--lazarusdir=/usr/share/lazarus"
|
|
}
|