mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-22 14:51:14 +02:00
32 lines
738 B
Bash
32 lines
738 B
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI="3"
|
|
|
|
inherit eutils
|
|
|
|
DESCRIPTION="A remote security scanner for Linux (openvas-libraries)"
|
|
HOMEPAGE="http://www.openvas.org/"
|
|
SRC_URI="http://wald.intevation.org/frs/download.php/729/${P}.tar.gz"
|
|
SLOT="3"
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="amd64 ~ppc x86"
|
|
IUSE=""
|
|
|
|
DEPEND=">=net-libs/gnutls-2.0
|
|
net-libs/libpcap
|
|
>=app-crypt/gpgme-1.1.2
|
|
>=dev-libs/glib-2.12
|
|
!net-analyzer/openvas-libnasl"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/gpgme-include.patch
|
|
}
|
|
|
|
src_install() {
|
|
einstall || die "failed to install"
|
|
find "${D}" -name '*.la' -delete
|
|
dodoc ChangeLog CHANGES TODO || die
|
|
}
|