blob: 1df63c17e8d3946c92b6296c2c043a9b431aa3c1 (
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
39
40
41
42
43
44
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PLOCALES="ca cs de es fr it ru"
inherit cmake-utils l10n
MY_P=${PN}4-${PV}
DESCRIPTION="A Qt4 frontend to nmap"
HOMEPAGE="http://www.nmapsi4.org/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="kde"
DEPEND="
dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
dev-qt/qtwebkit:4
kde? ( kde-base/kdelibs:4 )
"
RDEPEND="${DEPEND}
>=net-analyzer/nmap-6.00
net-dns/bind-tools
"
S=${WORKDIR}/${MY_P}
DOCS=(AUTHORS HACKING NEWS TODO Translation)
src_prepare() {
l10n_for_each_disabled_locale_do nmapsi_disable_locale
}
nmapsi_disable_locale() {
sed -i -e "/ts\/${PN}4_${1}\.ts/d" src/CMakeLists.txt || die
}
|