gentoo/dev-util/qdevicemonitor/qdevicemonitor-1.0.1-r3.ebuild
Alexander Lopatin 2a9a39625a
dev-util/qdevicemonitor: fix build with Qt 6
Closes: https://bugs.gentoo.org/948065
Signed-off-by: Alexander Lopatin <alopatindev@codonaft.com>
Closes: https://github.com/gentoo/gentoo/pull/40136
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
2025-01-15 18:16:19 +01:00

56 lines
1.2 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit desktop qmake-utils
DESCRIPTION="Crossplatform log viewer for Android, iOS and text files"
HOMEPAGE="https://github.com/alopatindev/qdevicemonitor"
if [[ ${PV} == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/alopatindev/${PN}"
else
SRC_URI="https://github.com/alopatindev/qdevicemonitor/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-3"
SLOT="0"
IUSE=""
RDEPEND="
app-pda/usbmuxd
dev-qt/qtbase:6[gui,widgets]
dev-util/android-tools"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-qt-5.11.patch
"${FILESDIR}"/${P}-crash-after-fresh-install.patch
"${FILESDIR}"/${P}-screen-geometry-is-deprecated.patch
"${FILESDIR}"/${P}-endl-is-deprecated.patch
"${FILESDIR}"/${P}-disable-warnings-as-errors.patch
"${FILESDIR}"/${P}-disable-pedantic-errors.patch
"${FILESDIR}"/${P}-qt-6.patch
)
src_configure() {
cd "${PN}" || die
export VERSION_WITH_BUILD_NUMBER="${PV}"
eqmake6
}
src_compile() {
cd "${PN}" || die
emake
}
src_install() {
dobin "${PN}/${PN}"
dodoc README.md
newicon -s scalable "icons/app_icon.svg" "${PN}.svg"
domenu "icons/${PN}.desktop"
}