summaryrefslogtreecommitdiff
blob: 27d03c5439ff17f84c7b27c23ed1424e657d606f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=2

inherit

MY_PV=${PV/_beta/b}
MY_P=${PN}-${MY_PV}

DESCRIPTION="Web application security scanner"
HOMEPAGE="http://code.google.com/p/skipfish/"
SRC_URI="http://skipfish.googlecode.com/files/${MY_P}.tgz"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""

DEPEND="dev-libs/openssl
	net-dns/libidn"
RDEPEND="${DEPEND}"

S=${WORKDIR}/${PN}

src_prepare() {
	# Change assets path
	sed -i 's/assets/\/usr\/share\/skipfish\/assets/g' config.h || die "sed failed"
	# Change default dictionary path
	sed -i 's/skipfish.wl/\/usr\/share\/skipfish\/dictionaries\/default.wl/g' config.h || die "sed failed"
}

src_install() {
	dobin skipfish

	insinto /usr/share/${PN}/dictionaries
	doins dictionaries/*.wl
	insinto /usr/share/${PN}/assets
	doins assets/*

	dodoc README dictionaries/README-FIRST ChangeLog
}

pkg_postinst() {
	elog
	elog "Check out /usr/share/${PN}/dictionaries/ for other dictionaries"
	elog "See README-FIRST in /usr/share/doc/${P}/ to pick a dictionary" 
	elog
	elog "Having problems with your scans? Be sure to visit:"
	elog " http://code.google.com/p/skipfish/wiki/KnownIssues"
	elog
}