Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/skipfish: skipfish-2.07_beta.ebuild ChangeLog
Date: Tue, 05 Jun 2012 17:45:05
Message-Id: 20120605174448.D9B742004B@flycatcher.gentoo.org
1 xmw 12/06/05 17:44:48
2
3 Modified: ChangeLog
4 Added: skipfish-2.07_beta.ebuild
5 Log:
6 Version bump (thanks Paolo Pedroni, bug 419731)
7
8 (Portage version: 2.1.10.63/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.10 dev-util/skipfish/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/skipfish/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/skipfish/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/skipfish/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/skipfish/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 14 May 2012 16:21:54 -0000 1.9
24 +++ ChangeLog 5 Jun 2012 17:44:48 -0000 1.10
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-util/skipfish
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/skipfish/ChangeLog,v 1.9 2012/05/14 16:21:54 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/skipfish/ChangeLog,v 1.10 2012/06/05 17:44:48 xmw Exp $
30 +
31 +*skipfish-2.07_beta (05 Jun 2012)
32 +
33 + 05 Jun 2012; Michael Weber <xmw@g.o> +skipfish-2.07_beta.ebuild:
34 + Version bump (thanks Paolo Pedroni, bug 419731)
35
36 *skipfish-2.06_beta (14 May 2012)
37
38
39
40
41 1.1 dev-util/skipfish/skipfish-2.07_beta.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/skipfish/skipfish-2.07_beta.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/skipfish/skipfish-2.07_beta.ebuild?rev=1.1&content-type=text/plain
45
46 Index: skipfish-2.07_beta.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/skipfish/skipfish-2.07_beta.ebuild,v 1.1 2012/06/05 17:44:48 xmw Exp $
51
52 EAPI=4
53 inherit toolchain-funcs
54
55 MY_P=${P/_beta/b}
56
57 DESCRIPTION="A fully automated, active web application security reconnaissance tool"
58 HOMEPAGE="http://code.google.com/p/skipfish/"
59 SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tgz"
60
61 LICENSE="Apache-2.0 LGPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="debug"
65
66 RDEPEND="dev-libs/openssl:0
67 net-dns/libidn
68 sys-libs/zlib"
69 DEPEND="${RDEPEND}"
70
71 S=${WORKDIR}/${MY_P}
72
73 src_prepare() {
74 sed -i \
75 -e '/CFLAGS_GEN/s:-g -ggdb::' \
76 -e '/CFLAGS_OPT/s:-O3::' \
77 Makefile || die
78
79 sed -i \
80 -e "/ASSETS_DIR/s:assets:/usr/share/doc/${PF}/html:" \
81 config.h || die
82 }
83
84 src_compile() {
85 tc-export CC
86
87 local _debug
88 use debug && _debug=debug
89
90 emake ${_debug}
91 }
92
93 src_install() {
94 dobin ${PN}
95 doman ${PN}.1
96
97 insinto /usr/share/${PN}/dictionaries
98 doins dictionaries/*.wl
99
100 dohtml assets/*
101
102 dodoc ChangeLog dictionaries/README-FIRST README
103 }