diff options
author | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2025-09-05 10:47:10 +0100 |
---|---|---|
committer | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2025-09-05 11:10:19 +0100 |
commit | 2878102f2b5755bba41ed3bf4ebb8c64440f879c (patch) | |
tree | b7919032bf566b66a4f20dd27c794ad2e7d8d2af /dev-util/hotspot/hotspot-1.5.1-r2.ebuild | |
parent | Stablise KDDockWidgets (diff) | |
download | kdab-2878102f2b5755bba41ed3bf4ebb8c64440f879c.tar.bz2 kdab-2878102f2b5755bba41ed3bf4ebb8c64440f879c.tar.xz kdab-2878102f2b5755bba41ed3bf4ebb8c64440f879c.zip |
Diffstat (limited to 'dev-util/hotspot/hotspot-1.5.1-r2.ebuild')
-rw-r--r-- | dev-util/hotspot/hotspot-1.5.1-r2.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/dev-util/hotspot/hotspot-1.5.1-r2.ebuild b/dev-util/hotspot/hotspot-1.5.1-r2.ebuild new file mode 100644 index 0000000..11b7855 --- /dev/null +++ b/dev-util/hotspot/hotspot-1.5.1-r2.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit cmake + +RESTRICT="mirror" + +DESCRIPTION="Hotspot - the Linux perf GUI for performance analysis" +HOMEPAGE="https://github.com/KDAB/hotspot" +vperfparser="851ebf0a033e73854c934d150a120f013bae2a66" +vprefixticklabels="6e86393f546429113e4ee78f7702eb820b21a0d2" +SRC_URI="https://github.com/KDAB/${PN}/archive/refs/tags/v${PV}.tar.gz + https://github.com/KDAB/perfparser/archive/${vperfparser}.tar.gz + https://github.com/koenpoppe/PrefixTickLabels/archive/${vprefixticklabels}.tar.gz +" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" + +IUSE="" +REQUIRE_USE="" + +RDEPEND=" + >=dev-qt/qtcore-5.15.0 + >=dev-qt/qtwidgets-5.15.0 + >=dev-qt/qtnetwork-5.15.0 + >=dev-qt/qttest-5.15.0 + virtual/libelf + sys-devel/gettext + kde-frameworks/KDDockWidgets + kde-frameworks/extra-cmake-modules + kde-frameworks/kconfigwidgets:5 + kde-frameworks/kcoreaddons:5 + kde-frameworks/ki18n:5 + kde-frameworks/kio:5 + kde-frameworks/kitemmodels:5 + kde-frameworks/kitemviews:5 + kde-frameworks/kparts:5 + kde-frameworks/ktextwidgets:5 + kde-frameworks/kwindowsystem:5 + kde-frameworks/solid:5 + kde-frameworks/sonnet:5 + kde-frameworks/threadweaver:5 + <dev-util/perf-6.16 + <dev-libs/qcustomplot-2.1.1-r10 + media-gfx/kgraphviewer + " + +DEPEND="${RDEPEND}" + +src_unpack() { + default + rmdir ${S}/3rdparty/perfparser ${S}/3rdparty/PrefixTickLabels + ln -sf ${WORKDIR}/perfparser-${vperfparser} ${S}/3rdparty/perfparser + ln -sf ${WORKDIR}/PrefixTickLabels-${vprefixticklabels} ${S}/3rdparty/PrefixTickLabels +} |