mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Update SRC_URI and HOMEPAGE. Closes: https://bugs.gentoo.org/892908 Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com> Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
59 lines
1.2 KiB
Bash
59 lines
1.2 KiB
Bash
# 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
|
|
}
|