blob: 4fc704228fa692d023be92503af20b101ff2fb85 (
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
|
# Copyright 1999-2007 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.ebuild,v 1.1 2007/01/21 17:49:25 cedk Exp $
inherit eutils
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=""
DEPEND="!net-analyzer/nessus-core
dev-libs/openssl
media-libs/glitz
>=x11-libs/gtk+-2.8.8"
S="${WORKDIR}/${MY_P}"
src_compile() {
econf || die "econf failed"
emake -j1 || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc CHANGES README_SSL VERSION
doicon "${WORKDIR}"/${PN}.png
make_desktop_entry NessusClient "Nessus Client" /usr/share/pixmaps/nessus-client.png "Application;Network;"
}
|