summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-04-17 19:41:56 +0100
committerSam James <sam@gentoo.org>2022-04-17 19:59:19 +0100
commit6efa7adc13364982c50e938f659a42d45a716138 (patch)
treea2ff6ccf8baf914d4da23ee72ae6df0414d472b7 /app-mobilephone
parentapp-misc/glastree: drop 1.04 (diff)
downloadgentoo-6efa7adc13364982c50e938f659a42d45a716138.tar.gz
gentoo-6efa7adc13364982c50e938f659a42d45a716138.tar.bz2
gentoo-6efa7adc13364982c50e938f659a42d45a716138.zip
app-mobilephone/heimdall: drop 1.4.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-mobilephone')
-rw-r--r--app-mobilephone/heimdall/Manifest1
-rw-r--r--app-mobilephone/heimdall/heimdall-1.4.2.ebuild51
2 files changed, 0 insertions, 52 deletions
diff --git a/app-mobilephone/heimdall/Manifest b/app-mobilephone/heimdall/Manifest
index db7aa53c6f4a..b2feeb301ec7 100644
--- a/app-mobilephone/heimdall/Manifest
+++ b/app-mobilephone/heimdall/Manifest
@@ -1,2 +1 @@
-DIST heimdall-1.4.2.tar.bz2 5506713 BLAKE2B 775abc8d47f9efac21f28e47d607ab4b07f8948fcca005c78ddb7ed093e51a76f60ac5c04150a3424c360813d180cd1df1ff8a87295918bff872f41123250a58 SHA512 b2b0a8a8db6a52236716fff9748a391388c1b2b1774a26fab9b451b8dab5ff35e8e1403555a65daec180fc961388c7581d170df6e3599a102fd304a133da8674
DIST heimdall-1.4.2.tar.gz 5486693 BLAKE2B 213bfa5bb7ede8d418847916a5ec16c17e4dec7fcb07de296d96e16c929634167afb57e13cee0e8a6e42fbbddcd2f2e0f5069cfbc3e8c3b5721d2d303ef48407 SHA512 c554662f9ccb763a8e9867a0c563618879d2533af985d44db3c237d3ee51add44c1681d13b1a83b72b30ba6e5b32d7c2f9c02b31114c67c5fbe01cbb010acfe7
diff --git a/app-mobilephone/heimdall/heimdall-1.4.2.ebuild b/app-mobilephone/heimdall/heimdall-1.4.2.ebuild
deleted file mode 100644
index ec8238d43d9b..000000000000
--- a/app-mobilephone/heimdall/heimdall-1.4.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake udev
-
-if [[ ${PV} != 9999 ]]; then
- SRC_URI="https://gitlab.com/BenjaminDobell/Heimdall/-/archive/v${PV}/Heimdall-v${PV}.tar.bz2 -> ${P}.tar.bz2"
- KEYWORDS="amd64"
- S="${WORKDIR}/Heimdall-v${PV}"
-else
- inherit git-r3
- EGIT_REPO_URI="https://gitlab.com/BenjaminDobell/Heimdall.git"
-fi
-
-DESCRIPTION="Tool suite used to flash firmware onto Samsung Galaxy S devices"
-HOMEPAGE="https://glassechidna.com.au/heimdall/"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="gui"
-
-RDEPEND="
- >=dev-libs/libusb-1.0.18:1=
- sys-libs/zlib
- 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() {
- dobin "${BUILD_DIR}"/bin/heimdall
- use gui && dobin "${BUILD_DIR}"/bin/heimdall-frontend
-
- insinto "$(get_udevdir)/rules.d"
- doins heimdall/60-heimdall.rules
-
- dodoc README.md Linux/README
-}