gentoo-ebuilds/app-mobilephone/heimdall/heimdall-2.2.2.ebuild
Sam James 90008a0082
app-mobilephone/heimdall: Stabilize 2.2.2 amd64, #955641
Signed-off-by: Sam James <sam@gentoo.org>
2025-06-07 15:44:59 +01:00

58 lines
1,001 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake udev
DESCRIPTION="Tool suite used to flash firmware onto Samsung devices"
HOMEPAGE="
https://git.sr.ht/~grimler/Heimdall
https://glassechidna.com.au/heimdall/
https://github.com/Benjamin-Dobell/Heimdall
"
if [[ ${PV} != 9999 ]]; then
SRC_URI="https://git.sr.ht/~grimler/Heimdall/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/Heimdall-v${PV}"
KEYWORDS="amd64 ~arm64"
else
inherit git-r3
EGIT_REPO_URI="https://git.sr.ht/~grimler/Heimdall"
fi
LICENSE="MIT"
SLOT="0"
IUSE="gui"
RDEPEND="
sys-libs/zlib
virtual/libusb:1=
gui? (
dev-qt/qtbase:6[gui,widgets]
)"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
src_configure() {
local mycmakeargs=(
-DDISABLE_FRONTEND=$(usex !gui)
)
cmake_src_configure
}
src_install() {
cmake_src_install
udev_dorules heimdall/60-heimdall.rules
}
pkg_postinst() {
udev_reload
}
pkg_postrm() {
udev_reload
}