pentoo-overlay/net-analyzer/whatweb/whatweb-0.4.5.ebuild
2010-08-19 15:21:47 +00:00

31 lines
643 B
Bash

# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
DESCRIPTION="Next generation web scanner, identifies what software websites are running"
HOMEPAGE="http://www.morningstarsecurity.com/research/whatweb"
SRC_URI="http://www.morningstarsecurity.com/downloads/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-lang/ruby"
RDEPEND="${DEPEND}"
src_prepare() {
# fix install
sed -i 's|disabled-plugins||g' Makefile || die
}
src_compile() {
# do nothing
true
}
src_install() {
DESTDIR="${D}" emake install || die "install failed"
}