Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/skipfish: ChangeLog skipfish-1.52_beta.ebuild
Date: Thu, 29 Jul 2010 11:16:10
Message-Id: 20100729111607.454512CE15@corvid.gentoo.org
1 ssuominen 10/07/29 11:16:07
2
3 Modified: ChangeLog
4 Added: skipfish-1.52_beta.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.6 dev-util/skipfish/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/skipfish/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/skipfish/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/skipfish/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/skipfish/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 14 Apr 2010 10:31:30 -0000 1.5
23 +++ ChangeLog 29 Jul 2010 11:16:07 -0000 1.6
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/skipfish
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/skipfish/ChangeLog,v 1.5 2010/04/14 10:31:30 jokey Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/skipfish/ChangeLog,v 1.6 2010/07/29 11:16:07 ssuominen Exp $
29 +
30 +*skipfish-1.52_beta (29 Jul 2010)
31 +
32 + 29 Jul 2010; Samuli Suominen <ssuominen@g.o>
33 + +skipfish-1.52_beta.ebuild:
34 + Version bump.
35
36 *skipfish-1.31_beta (14 Apr 2010)
37
38
39
40
41 1.1 dev-util/skipfish/skipfish-1.52_beta.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/skipfish/skipfish-1.52_beta.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/skipfish/skipfish-1.52_beta.ebuild?rev=1.1&content-type=text/plain
45
46 Index: skipfish-1.52_beta.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/skipfish/skipfish-1.52_beta.ebuild,v 1.1 2010/07/29 11:16:07 ssuominen Exp $
51
52 EAPI=2
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 DEPEND="dev-libs/openssl
67 net-dns/libidn
68 sys-libs/zlib"
69
70 S=${WORKDIR}/${MY_P}
71
72 src_prepare() {
73 sed -i \
74 -e '/CFLAGS_GEN/s:-g -ggdb::' \
75 -e '/CFLAGS_OPT/s:-O3::' \
76 Makefile || die
77
78 sed -i \
79 -e "/ASSETS_DIR/s:assets:/usr/share/doc/${PF}/html:" \
80 config.h || die
81 }
82
83 src_compile() {
84 tc-export CC
85
86 local _debug
87 use debug && _debug=debug
88
89 emake ${_debug} || die
90 }
91
92 src_install() {
93 dobin ${PN} || die
94 doman ${PN}.1 || die
95
96 insinto /usr/share/${PN}/dictionaries
97 doins dictionaries/*.wl || die
98
99 dohtml assets/* || die
100
101 dodoc ChangeLog dictionaries/README-FIRST README
102 }