# 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 }