blob: c1178a568fed628b9839d1c1a8ca84a01de11ff4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils
DESCRIPTION="Tool to poke around in a Qt-application and also to manipulate the application to some extent"
HOMEPAGE="http://www.kdab.com/gammaray"
MY_PN="GammaRay"
SRC_URI="https://github.com/KDAB/${MY_PN}/archive/v${PV}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
DEPEND="
dev-qt/qtcore
dev-qt/qtgui
"
RDEPEND="${DEPEND}"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
|