Gentoo Archives: gentoo-commits

From: "Michael Palimaka (kensington)" <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/nmapsi: nmapsi-0.4.1.ebuild ChangeLog nmapsi-0.3.2.ebuild
Date: Thu, 31 Jan 2013 12:02:14
Message-Id: 20130131120210.445102171E@flycatcher.gentoo.org
1 kensington 13/01/31 12:02:09
2
3 Modified: ChangeLog
4 Added: nmapsi-0.4.1.ebuild
5 Removed: nmapsi-0.3.2.ebuild
6 Log:
7 Version bump. Remove old.
8
9 (Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
10
11 Revision Changes Path
12 1.9 net-analyzer/nmapsi/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmapsi/ChangeLog?rev=1.9&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmapsi/ChangeLog?rev=1.9&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmapsi/ChangeLog?r1=1.8&r2=1.9
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmapsi/ChangeLog,v
21 retrieving revision 1.8
22 retrieving revision 1.9
23 diff -u -r1.8 -r1.9
24 --- ChangeLog 25 Dec 2012 10:40:22 -0000 1.8
25 +++ ChangeLog 31 Jan 2013 12:02:09 -0000 1.9
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-analyzer/nmapsi
28 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmapsi/ChangeLog,v 1.8 2012/12/25 10:40:22 pesa Exp $
30 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmapsi/ChangeLog,v 1.9 2013/01/31 12:02:09 kensington Exp $
32 +
33 +*nmapsi-0.4.1 (31 Jan 2013)
34 +
35 + 31 Jan 2013; Michael Palimaka <kensington@g.o> +nmapsi-0.4.1.ebuild,
36 + -files/nmapsi-0.3.1-gcc-4.7.patch, -nmapsi-0.3.2.ebuild:
37 + Version bump. Remove old.
38
39 *nmapsi-0.4 (25 Dec 2012)
40
41
42
43
44 1.1 net-analyzer/nmapsi/nmapsi-0.4.1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmapsi/nmapsi-0.4.1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmapsi/nmapsi-0.4.1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: nmapsi-0.4.1.ebuild
50 ===================================================================
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmapsi/nmapsi-0.4.1.ebuild,v 1.1 2013/01/31 12:02:09 kensington Exp $
54
55 EAPI=5
56
57 PLOCALES="ca cs de es fr it ru"
58
59 inherit cmake-utils l10n
60
61 MY_P=${PN}4-${PV}
62
63 DESCRIPTION="A Qt4 frontend to nmap"
64 HOMEPAGE="http://www.nmapsi4.org/"
65 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.xz"
66
67 LICENSE="GPL-2"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE="kde"
71
72 DEPEND="
73 x11-libs/qt-core:4
74 x11-libs/qt-dbus:4
75 x11-libs/qt-gui:4
76 x11-libs/qt-webkit:4
77 kde? ( kde-base/kdelibs:4 )
78 "
79 RDEPEND="${DEPEND}
80 >=net-analyzer/nmap-6.00
81 net-dns/bind-tools
82 "
83
84 S=${WORKDIR}/${MY_P}
85
86 DOCS=( AUTHORS HACKING NEWS TODO Translation )
87
88 src_prepare() {
89 l10n_for_each_disabled_locale_do nmapsi_disable_locale
90 }
91
92 src_configure() {
93 local mycmakeargs=(
94 $(cmake-utils_use_build kde KDELIBS)
95 )
96 cmake-utils_src_configure
97 }
98
99 nmapsi_disable_locale() {
100 sed -i -e "/ts\/${PN}4_${1}\.ts/d" src/CMakeLists.txt || die
101 }