blob: c8eb8daa2166e175516706be6887999f58ca9bf4 (
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
52
53
54
55
56
57
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nessus-client/nessus-client-1.0.2-r1.ebuild,v 1.1 2010/08/22 23:19:39 jer Exp $
EAPI="2"
inherit eutils toolchain-funcs
MY_PN="NessusClient"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="A client for the Nessus vulnerability scanner"
HOMEPAGE="http://www.nessus.org/"
SRC_URI="mirror://gentoo/${MY_P}.tar.gz
mirror://gentoo/nessus-client.png.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc"
DEPEND="!net-analyzer/nessus-core
dev-libs/openssl
>=x11-libs/gtk+-2.8.8"
RDEPEND="doc? ( app-text/htmldoc )"
S="${WORKDIR}/${MY_P}"
src_prepare() {
cp -av Makefile{,.orig}
epatch "${FILESDIR}"/${P}-make.patch
sed \
-e "/NESSUS_DOCDIR/s|/doc/NessusClient|/doc/${PF}|g" \
-i nessus.tmpl.in \
|| die "sed failed"
}
src_configure() {
tc-export CC
econf || die "econf failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc CHANGES README_SSL VERSION
doicon "${WORKDIR}"/${PN}.png
make_desktop_entry NessusClient "Nessus Client" nessus-client "Application;Network;"
}
pkg_postinst() {
if ! use doc ; then
elog "If you do not have documentation installed, nessus-client"
elog "will complain. To install documentation, please emerge with"
elog "the doc useflag set. Beware that it will emerge app-text/htmldoc,"
elog "a big package."
fi
}
|