summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Morgan <david.morgan@kdab.com>2019-07-16 13:31:16 +0100
committerDavid Morgan <david.morgan@kdab.com>2019-07-16 13:31:16 +0100
commite10d075e52072877a34ea52cd0004ea2e7b7779d (patch)
treebf925f25b74fb0ed64557be6485e31cb8ecf29cc
parentadd dev-util/perf as hotspot dep (diff)
downloadkdab-e10d075e52072877a34ea52cd0004ea2e7b7779d.tar.bz2
kdab-e10d075e52072877a34ea52cd0004ea2e7b7779d.tar.xz
kdab-e10d075e52072877a34ea52cd0004ea2e7b7779d.zip
add hotspot 1.2.0
-rw-r--r--dev-util/hotspot/Manifest1
-rw-r--r--dev-util/hotspot/hotspot-1.2.0.ebuild50
2 files changed, 51 insertions, 0 deletions
diff --git a/dev-util/hotspot/Manifest b/dev-util/hotspot/Manifest
index bcfc190..03aeac7 100644
--- a/dev-util/hotspot/Manifest
+++ b/dev-util/hotspot/Manifest
@@ -1 +1,2 @@
DIST hotspot-v1.1.0.tar.gz 2773356 BLAKE2B 65b5c030b5c18a5546e347d29901a812ab09507d3e1f4902d361c3b36f76e3fef8bd47d53376a047a41c61baa5e3aff22ca2b7ab5750ea65fbb73def4abe226e SHA512 6f7b07a8cf90fd702829352753292115f04511cf33327cd2bea855495b5e892a91ef26b5a1f54b1131b7b42a1ff49d1ffd836240b6faa42fda0d75998156b64f
+DIST hotspot-v1.2.0.tar.gz 3714273 BLAKE2B 13103251839a25370d0e683ff391297b41ef774dcbc2b1d07453e28389d0f80308a76957e351c6064177eb4edd54dec42e8b2ce4b78505df461e7539b4c33911 SHA512 65b00a8c4ff3a0533691125b9c45f8114fa622aecb809429aae49c500e3e289162f7e02cdb9af469d2a95dae3c9e7bb859311c85db74425497a1676000b928e2
diff --git a/dev-util/hotspot/hotspot-1.2.0.ebuild b/dev-util/hotspot/hotspot-1.2.0.ebuild
new file mode 100644
index 0000000..3c53420
--- /dev/null
+++ b/dev-util/hotspot/hotspot-1.2.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit cmake-utils
+
+RESTRICT="mirror"
+
+DESCRIPTION="Hotspot - the Linux perf GUI for performance analysis"
+HOMEPAGE="https://github.com/KDAB/hotspot"
+SRC_URI="https://github.com/KDAB/hotspot/releases/download/v${PV}/${PN}-v${PV}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE=""
+REQUIRE_USE=""
+
+RDEPEND="
+ >=dev-qt/qtcore-5.6.0
+ >=dev-qt/qtwidgets-5.6.0
+ >=dev-qt/qtnetwork-5.6.0
+ >=dev-qt/qttest-5.6.0
+ virtual/libelf
+ sys-devel/gettext
+ kde-frameworks/extra-cmake-modules
+ kde-frameworks/threadweaver
+ kde-frameworks/ki18n
+ kde-frameworks/kconfigwidgets
+ kde-frameworks/kcoreaddons
+ kde-frameworks/kitemviews
+ kde-frameworks/kitemmodels
+ kde-frameworks/kio
+ kde-frameworks/solid
+ kde-frameworks/kwindowsystem
+ dev-util/perf
+ "
+
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${PN}-v${PV}"
+
+src_configure() {
+ cmake-utils_src_configure
+}
+
+src_install() {
+ cmake-utils_src_install
+}