diff options
author | David Morgan <david.morgan@kdab.com> | 2018-08-20 18:14:02 +0100 |
---|---|---|
committer | David Morgan <david.morgan@kdab.com> | 2018-08-20 18:14:02 +0100 |
commit | 3a171ca716702b9a7ac423200fc86fee351f75e0 (patch) | |
tree | 00f0c414035b0bb4326fa5a50844aafbe008fd5a /dev-util/hotspot/hotspot-1.1.0.ebuild | |
parent | add gammaray 2.9.1 (diff) | |
download | kdab-3a171ca716702b9a7ac423200fc86fee351f75e0.tar.bz2 kdab-3a171ca716702b9a7ac423200fc86fee351f75e0.tar.xz kdab-3a171ca716702b9a7ac423200fc86fee351f75e0.zip |
add hotspot v1.1.0
Diffstat (limited to 'dev-util/hotspot/hotspot-1.1.0.ebuild')
-rw-r--r-- | dev-util/hotspot/hotspot-1.1.0.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/dev-util/hotspot/hotspot-1.1.0.ebuild b/dev-util/hotspot/hotspot-1.1.0.ebuild new file mode 100644 index 0000000..31dbd67 --- /dev/null +++ b/dev-util/hotspot/hotspot-1.1.0.ebuild @@ -0,0 +1,49 @@ +# 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 + " + +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${PN}-v${PV}" + +src_configure() { + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install +} |