blob: ed56c4754c1c02e56e112f1a113f6f20015dd609 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit eutils qt4-r2
DESCRIPTION="graphically depicts the DNSSEC results from a lookup via logfiles"
HOMEPAGE="http://www.dnssec-tools.org"
SRC_URI="http://www.dnssec-tools.org/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="=net-dns/dnssec-validator-${PV}[threads]
dev-qt/qtcore:4"
DEPEND="${RDEPEND}"
src_configure() {
eqmake4 ${PN}.pro PREFIX=/usr
}
src_install() {
qt4-r2_src_install
doicon icons/dnssec-nodes.*
make_desktop_entry ${PN}
doman man/${PN}.1
}
|