You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-analyzer/openvas-manager/openvas-manager-4.0.1.ebuild

39 lines
1.1 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/openvas-manager/openvas-manager-4.0.1.ebuild,v 1.1 2013/07/01 10:23:42 hanno Exp $
EAPI=5
inherit cmake-utils
DESCRIPTION="A remote security scanner for Linux (openvas-manager)"
HOMEPAGE="http://www.openvas.org/"
SRC_URI="http://wald.intevation.org/frs/download.php/1331/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND=">=net-analyzer/openvas-libraries-6.0.0
>=dev-db/sqlite-3"
DEPEND="${RDEPEND}
virtual/pkgconfig
dev-util/cmake"
src_configure() {
local mycmakeargs="-DLOCALSTATEDIR=/var -DSYSCONFDIR=/etc"
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
dodoc ChangeLog CHANGES README TODO || die "dodoc failed"
doinitd "${FILESDIR}"/openvasmd || die
}
pkg_postinst() {
elog "To allow openvasmd to work, you need to"
elog "1. create a client certificate with openvas-mkcert-client -n om -i"
elog "2. create an openvasmd database with openvasmd --rebuild"
}