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/nessus-core/nessus-core-2.2.9-r1.ebuild

66 lines
1.5 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
inherit toolchain-funcs eutils autotools
DESCRIPTION="A remote security scanner for Linux (nessus-core)"
HOMEPAGE="http://www.nessus.org/"
SRC_URI="ftp://ftp.nessus.org/pub/nessus/nessus-${PV}/src/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="debug gtk prelude tcpd"
RDEPEND="
~net-analyzer/nessus-libraries-${PV}
~net-analyzer/libnasl-${PV}
tcpd? ( sys-apps/tcp-wrappers )
gtk? ( x11-libs/gtk+:2 )
prelude? ( dev-libs/libprelude )
!net-analyzer/nessus-client"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S="${WORKDIR}"/${PN}
DOCS="README* UPGRADE_README CHANGES doc/*.txt doc/ntp/*"
src_prepare() {
tc-export CC
epatch \
"${FILESDIR}"/${PV}-gentoo.patch \
"${FILESDIR}"/${PV}-crash.patch \
"${FILESDIR}"/${P}-open.patch
sed -i -e "/^LDFLAGS/s:$:${LDFLAGS}:g" nessus.tmpl.in || die
sed -i -e 's:CFLAGS="-g"; ::' configure.in || die
eautoreconf
}
src_configure() {
econf \
$(use_enable tcpd tcpwrappers) \
$(use_enable debug) \
$(use_enable gtk)
}
src_compile() {
emake -C nessus cflags
emake -C nessusd cflags
default
}
src_install() {
default
newinitd "${FILESDIR}"/nessusd-r7 nessusd
keepdir /var/lib/nessus/logs
keepdir /var/lib/nessus/users
# newer version is provided by nessus-libraries
# should be fixed upstream in version 2.2.6
rm "${ED}"/usr/include/nessus/includes.h
}