blob: f556cf7c1c034227fb545805c038584e8f313434 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils qmake-utils
DESCRIPTION="Visual process manager - Qt version of ps/top"
HOMEPAGE="http://qps.kldp.net/projects/qps/"
SRC_URI="http://kldp.net/frs/download.php/5963/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
DEPEND="dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4"
RDEPEND="${DEPEND}"
src_prepare() {
default
sed -i -e '/strip/d' ${PN}.pro || die "sed failed"
}
src_configure() {
eqmake4 ${PN}.pro
}
src_install() {
dobin ${PN}
doman ${PN}.1
einstalldocs
newicon icon/icon.xpm ${PN}.xpm
make_desktop_entry ${PN} ${PN} ${PN} "System;"
}
|