Gentoo Archives: gentoo-commits

From: "Jonathan Callen (abcd)" <abcd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/nbtscan: ChangeLog nbtscan-1.5.1-r1.ebuild
Date: Wed, 26 May 2010 16:22:31
Message-Id: 20100526162225.DF0572CEDD@corvid.gentoo.org
1 abcd 10/05/26 16:22:25
2
3 Modified: ChangeLog nbtscan-1.5.1-r1.ebuild
4 Log:
5 Fix QA violations (quoting, use econf), add prefix keywords
6 (Portage version: 2.2_rc67/cvs/Linux i686)
7
8 Revision Changes Path
9 1.29 net-analyzer/nbtscan/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nbtscan/ChangeLog?rev=1.29&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nbtscan/ChangeLog?rev=1.29&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nbtscan/ChangeLog?r1=1.28&r2=1.29
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nbtscan/ChangeLog,v
18 retrieving revision 1.28
19 retrieving revision 1.29
20 diff -u -r1.28 -r1.29
21 --- ChangeLog 23 Sep 2009 18:21:39 -0000 1.28
22 +++ ChangeLog 26 May 2010 16:22:25 -0000 1.29
23 @@ -1,6 +1,9 @@
24 # ChangeLog for net-analyzer/nbtscan
25 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nbtscan/ChangeLog,v 1.28 2009/09/23 18:21:39 patrick Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nbtscan/ChangeLog,v 1.29 2010/05/26 16:22:25 abcd Exp $
29 +
30 + 26 May 2010; Jonathan Callen <abcd@g.o> nbtscan-1.5.1-r1.ebuild:
31 + Fix QA violations (quoting, use econf), add prefix keywords
32
33 23 Sep 2009; Patrick Lauer <patrick@g.o> nbtscan-1.5.1-r1.ebuild:
34 Remove virtual/libc
35
36
37
38 1.13 net-analyzer/nbtscan/nbtscan-1.5.1-r1.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nbtscan/nbtscan-1.5.1-r1.ebuild?rev=1.13&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nbtscan/nbtscan-1.5.1-r1.ebuild?rev=1.13&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nbtscan/nbtscan-1.5.1-r1.ebuild?r1=1.12&r2=1.13
43
44 Index: nbtscan-1.5.1-r1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nbtscan/nbtscan-1.5.1-r1.ebuild,v
47 retrieving revision 1.12
48 retrieving revision 1.13
49 diff -u -r1.12 -r1.13
50 --- nbtscan-1.5.1-r1.ebuild 23 Sep 2009 18:21:39 -0000 1.12
51 +++ nbtscan-1.5.1-r1.ebuild 26 May 2010 16:22:25 -0000 1.13
52 @@ -1,6 +1,6 @@
53 -# Copyright 1999-2009 Gentoo Foundation
54 +# Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nbtscan/nbtscan-1.5.1-r1.ebuild,v 1.12 2009/09/23 18:21:39 patrick Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nbtscan/nbtscan-1.5.1-r1.ebuild,v 1.13 2010/05/26 16:22:25 abcd Exp $
58
59 inherit eutils
60
61 @@ -11,7 +11,7 @@
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 -KEYWORDS="amd64 ppc sparc x86"
66 +KEYWORDS="amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
67 IUSE=""
68
69 DEPEND=""
70 @@ -20,16 +20,11 @@
71
72 src_unpack() {
73 unpack ${A}
74 - cd ${S}
75 - epatch ${FILESDIR}/${P}-script-whitespace.patch
76 -}
77 -
78 -src_compile() {
79 - ./configure --host=${CHOST} --prefix=/usr || die
80 - emake CFLAGS="${CFLAGS}" || die
81 + cd "${S}"
82 + epatch "${FILESDIR}"/${P}-script-whitespace.patch
83 }
84
85 src_install () {
86 - dobin nbtscan
87 + dobin nbtscan || die
88 dodoc ChangeLog README
89 }