dev-embedded/usbprog: drop 0.3.0_p20140828-r2

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner 2025-11-05 21:44:31 +01:00
parent 0b6d2f55e5
commit a13f94a201
No known key found for this signature in database
GPG Key ID: AE591BBC73E4DD5E

View File

@ -1,58 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake readme.gentoo-r1
REV="293d559bac55f7c7130ea2769c703c68a19d62c2"
DESCRIPTION="flashtool for the multi purpose programming adapter usbprog"
HOMEPAGE="https://github.com/bwalle/usbprog-tools https://www.aaabbb.de/FirmwareUsbprog/FirmwareUsbprog_en.php"
SRC_URI="https://github.com/bwalle/usbprog-tools/archive/${REV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+gui minimal"
RDEPEND="
!minimal? (
gui? ( dev-qt/qtwidgets:5 )
dev-qt/qtcore:5
dev-qt/qtnetwork:5
dev-qt/qtxml:5
sys-libs/ncurses:=
sys-libs/readline:=
)
virtual/libusb:1
"
DEPEND="${RDEPEND}"
S="${WORKDIR}/usbprog-tools-${REV}"
PATCHES=(
"${FILESDIR}/${P}_versions.xml.patch"
)
DOC_CONTENTS="
Please visit http://www.aaabbb.de/FirmwareUsbprog/FirmwareUsbprog_en.php
for additional info.
"
src_configure() {
local mycmakeargs=(
-DBUILD_ONLY_CORE=$(usex minimal)
-DBUILD_GUI=$(usex gui)
-DUSE_QT5=ON
)
cmake_src_configure
}
src_install() {
cmake_src_install
readme.gentoo_create_doc
}
pkg_postinst() {
readme.gentoo_print_elog
}