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.27_beta.ebuild
Date: Tue, 30 Mar 2010 18:24:47
Message-Id: E1Nwg7H-0002ef-Gk@stork.gentoo.org
1 ssuominen 10/03/30 18:24:43
2
3 Modified: ChangeLog
4 Added: skipfish-1.27_beta.ebuild
5 Log:
6 Version bump by Alex Legler.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 dev-util/skipfish/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/skipfish/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/skipfish/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/skipfish/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/skipfish/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 26 Mar 2010 19:46:58 -0000 1.3
23 +++ ChangeLog 30 Mar 2010 18:24:43 -0000 1.4
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.3 2010/03/26 19:46:58 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/skipfish/ChangeLog,v 1.4 2010/03/30 18:24:43 ssuominen Exp $
29 +
30 +*skipfish-1.27_beta (30 Mar 2010)
31 +
32 + 30 Mar 2010; Samuli Suominen <ssuominen@g.o>
33 + +skipfish-1.27_beta.ebuild:
34 + Version bump by Alex Legler.
35
36 *skipfish-1.26_beta (26 Mar 2010)
37
38
39
40
41 1.1 dev-util/skipfish/skipfish-1.27_beta.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/skipfish/skipfish-1.27_beta.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/skipfish/skipfish-1.27_beta.ebuild?rev=1.1&content-type=text/plain
45
46 Index: skipfish-1.27_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.27_beta.ebuild,v 1.1 2010/03/30 18:24:43 ssuominen Exp $
51
52 EAPI=2
53 inherit toolchain-funcs
54
55 DESCRIPTION="A fully automated, active web application security reconnaissance tool"
56 HOMEPAGE="http://code.google.com/p/skipfish/"
57 SRC_URI="http://${PN}.googlecode.com/files/${P/_beta/b}.tgz"
58
59 LICENSE="Apache-2.0 LGPL-3"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="debug"
63
64 DEPEND="dev-libs/openssl
65 net-dns/libidn
66 sys-libs/zlib"
67
68 S=${WORKDIR}/${PN}
69
70 src_prepare() {
71 sed -i \
72 -e '/CFLAGS_GEN/s:-g -ggdb::' \
73 -e '/CFLAGS_OPT/s:-O3::' \
74 Makefile || die
75
76 sed -i \
77 -e "/ASSETS_DIR/s:assets:/usr/share/doc/${PF}/html:" \
78 config.h || die
79 }
80
81 src_compile() {
82 tc-export CC
83
84 local _debug
85 use debug && _debug=debug
86
87 emake ${_debug} || die
88 }
89
90 src_install() {
91 dobin ${PN} || die
92 doman ${PN}.1 || die
93
94 insinto /usr/share/${PN}/dictionaries
95 doins dictionaries/*.wl || die
96
97 dohtml assets/* || die
98
99 dodoc ChangeLog dictionaries/README-FIRST README
100 }