mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-01-02 05:45:40 +01:00
37 lines
770 B
Bash
37 lines
770 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=2
|
|
|
|
inherit versionator eutils
|
|
|
|
MY_P=${P/_rc/.rc}
|
|
|
|
DESCRIPTION="A remote security scanner for Linux (openvas-libraries)"
|
|
HOMEPAGE="http://www.openvas.org/"
|
|
SRC_URI="http://wald.intevation.org/frs/download.php/758/${MY_P}.tar.gz"
|
|
EAPI="2"
|
|
SLOT="0"
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="net-libs/gnutls
|
|
>=dev-libs/glib-2.0
|
|
net-libs/gnutls
|
|
net-libs/libpcap
|
|
>=app-crypt/gpgme-1.1.2
|
|
>=net-analyzer/openvas-libraries-3.0.3"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
src_prepare() {
|
|
cmake .
|
|
}
|
|
|
|
src_install() {
|
|
DESTDIR="${D}" emake install || die "failed to install"
|
|
dodoc ChangeLog CHANGES || die
|
|
}
|