Gentoo Archives: gentoo-commits

From: "Samuli Suominen (drac)" <drac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/xprobe: xprobe-0.3.ebuild ChangeLog
Date: Sat, 03 May 2008 12:04:40
Message-Id: E1JsGTm-00050K-9o@stork.gentoo.org
1 drac 08/05/03 12:04:38
2
3 Modified: xprobe-0.3.ebuild ChangeLog
4 Log:
5 Fix building with GCC 4.3 wrt #219629. Thanks to Peter Alfredsen. Also prevent pre-stripping with simple sed.
6 (Portage version: 2.1.5_rc6)
7
8 Revision Changes Path
9 1.6 net-analyzer/xprobe/xprobe-0.3.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/xprobe/xprobe-0.3.ebuild?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/xprobe/xprobe-0.3.ebuild?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/xprobe/xprobe-0.3.ebuild?r1=1.5&r2=1.6
14
15 Index: xprobe-0.3.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/xprobe/xprobe-0.3.ebuild,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- xprobe-0.3.ebuild 20 Mar 2007 20:37:23 -0000 1.5
22 +++ xprobe-0.3.ebuild 3 May 2008 12:04:37 -0000 1.6
23 @@ -1,11 +1,15 @@
24 -# Copyright 1999-2007 Gentoo Foundation
25 +# Copyright 1999-2008 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/xprobe/xprobe-0.3.ebuild,v 1.5 2007/03/20 20:37:23 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/xprobe/xprobe-0.3.ebuild,v 1.6 2008/05/03 12:04:37 drac Exp $
29 +
30 +inherit eutils
31 +
32 +MY_P=${PN}2-${PV}
33
34 -MY_P="${PN}2-${PV}"
35 DESCRIPTION="Active OS fingerprinting tool - this is Xprobe2"
36 -HOMEPAGE="http://www.sys-security.com/index.php?page=xprobe"
37 +HOMEPAGE="http://sys-security.com/blog/xprobe2"
38 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
39 +
40 LICENSE="GPL-2"
41 SLOT="0"
42 KEYWORDS="~amd64 ~ppc ~sparc x86"
43 @@ -13,9 +17,16 @@
44
45 DEPEND="net-libs/libpcap"
46
47 -S="${WORKDIR}/${MY_P}"
48 +S=${WORKDIR}/${MY_P}
49 +
50 +src_unpack() {
51 + unpack ${A}
52 + cd "${S}"
53 + epatch "${FILESDIR}"/${P}-gcc43.patch
54 + sed -i -e 's:strip:true:' src/Makefile.in || die "sed failed."
55 +}
56
57 -src_install () {
58 - make DESTDIR=${D} install || die
59 - dodoc AUTHORS CREDITS CHANGELOG TODO README docs/*
60 +src_install() {
61 + emake DESTDIR="${D}" install || die "emake install failed."
62 + dodoc AUTHORS CHANGELOG CREDITS README TODO docs/*.{txt,pdf}
63 }
64
65
66
67 1.24 net-analyzer/xprobe/ChangeLog
68
69 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/xprobe/ChangeLog?rev=1.24&view=markup
70 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/xprobe/ChangeLog?rev=1.24&content-type=text/plain
71 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/xprobe/ChangeLog?r1=1.23&r2=1.24
72
73 Index: ChangeLog
74 ===================================================================
75 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/xprobe/ChangeLog,v
76 retrieving revision 1.23
77 retrieving revision 1.24
78 diff -u -r1.23 -r1.24
79 --- ChangeLog 1 Apr 2007 17:48:50 -0000 1.23
80 +++ ChangeLog 3 May 2008 12:04:37 -0000 1.24
81 @@ -1,6 +1,11 @@
82 # ChangeLog for net-analyzer/xprobe
83 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
84 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/xprobe/ChangeLog,v 1.23 2007/04/01 17:48:50 vanquirius Exp $
85 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
86 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/xprobe/ChangeLog,v 1.24 2008/05/03 12:04:37 drac Exp $
87 +
88 + 03 May 2008; Samuli Suominen <drac@g.o>
89 + +files/xprobe-0.3-gcc43.patch, xprobe-0.3.ebuild:
90 + Fix building with GCC 4.3 wrt #219629. Thanks to Peter Alfredsen. Also
91 + prevent pre-stripping with simple sed.
92
93 01 Apr 2007; Marcelo Goes <vanquirius@g.o> -xprobe-0.2.2.ebuild:
94 Remove old ebuild.
95
96
97
98 --
99 gentoo-commits@l.g.o mailing list