# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit xdg cmake DESCRIPTION="Raspberry Pi Imaging Utility" HOMEPAGE="https://github.com/raspberrypi/rpi-imager" if [[ "${PV}" == *9999* ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/raspberrypi/${PN}.git" else SRC_URI="https://github.com/raspberrypi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64" fi RESTRICT="mirror" LICENSE="Apache-2.0" SLOT="0" IUSE="debug" RDEPEND=" app-arch/libarchive dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtquickcontrols2:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 dev-qt/qtsvg:5 net-misc/curl net-libs/gnutls sys-fs/udisks:2 dev-build/cmake " DEPEND=" ${RDEPEND} " S="${S}/src/" src_configure() { local CMAKE_BUILD_TYPE local CMAKE_USE_DIR local BUILD_DIR if use debug; then CMAKE_BUILD_TYPE="Debug" else CMAKE_BUILD_TYPE="Release" fi cmake_src_configure }