blob: 7423e1f7b1ce505bb8b582e68592f93136f9ee49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/openvas-administrator/openvas-administrator-1.3.2.ebuild,v 1.1 2013/11/10 18:31:53 hanno Exp $
EAPI=5
inherit cmake-utils
DESCRIPTION="A remote security scanner for Linux (openvas-administrator)"
HOMEPAGE="http://www.openvas.org/"
SRC_URI="http://wald.intevation.org/frs/download.php/1442/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
IUSE=""
RDEPEND=">=net-analyzer/openvas-libraries-6.0.0"
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 || die "dodoc failed"
doinitd "${FILESDIR}"/openvasad
}
pkg_postinst() {
elog "You need to create an admin user for openvasad to work:"
elog "openvasad -c 'add_user' -n [username] -r Admin"
}
|