blob: 08baadc02e0c96bd6b379a2698f857ce9dd17e83 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/openvas-libraries/openvas-libraries-4.0.5.ebuild,v 1.2 2012/03/27 11:17:06 scarabeus Exp $
EAPI=4
inherit cmake-utils
DESCRIPTION="A remote security scanner for Linux (openvas-libraries)"
HOMEPAGE="http://www.openvas.org/"
SRC_URI="http://wald.intevation.org/frs/download.php/872/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND=">=dev-libs/glib-2.12
net-libs/gnutls
net-libs/libpcap
app-crypt/gpgme
!net-analyzer/openvas-libnasl"
DEPEND="${RDEPEND}
sys-devel/bison
sys-devel/flex
dev-util/pkgconfig
dev-util/cmake"
DOCS="ChangeLog CHANGES README"
CMAKE_IN_SOURCE_BUILD=1
src_prepare() {
sed \
-e 's:-Werror::g' \
-i CMakeLists.txt \
-i */CMakeLists.txt || die
}
src_configure() {
local mycmakeargs=(
"-DLOCALSTATEDIR=${EPREFIX}/var"
"-DSYSCONFDIR=${EPREFIX}/etc"
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
keepdir /var/cache/openvas/
}
|