summaryrefslogtreecommitdiff
path: root/app-mobilephone
diff options
context:
space:
mode:
authorPetr Vaněk <arkamar@gentoo.org>2025-05-14 22:51:27 +0200
committerPetr Vaněk <arkamar@gentoo.org>2025-05-14 22:55:27 +0200
commit36c899762af84fe75e0e23c285da8a0850ebb291 (patch)
treea6cee4a078dca402714d430bb9e5fdc13e955d45 /app-mobilephone
parent0083db8fbd0ee88ecd2db21a1cdf17ab48365972 (diff)
downloadgentoo-36c899762af84fe75e0e23c285da8a0850ebb291.tar.gz
gentoo-36c899762af84fe75e0e23c285da8a0850ebb291.tar.bz2
gentoo-36c899762af84fe75e0e23c285da8a0850ebb291.zip
app-mobilephone/heimdall: drop 9999
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'app-mobilephone')
-rw-r--r--app-mobilephone/heimdall/heimdall-9999.ebuild60
1 files changed, 0 insertions, 60 deletions
diff --git a/app-mobilephone/heimdall/heimdall-9999.ebuild b/app-mobilephone/heimdall/heimdall-9999.ebuild
deleted file mode 100644
index 4869617d580c..000000000000
--- a/app-mobilephone/heimdall/heimdall-9999.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2024 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/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
- )"
-
-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
-}