mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-22 06:41:01 +02:00
31 lines
643 B
Bash
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"
|
|
}
|