diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2002-11-05 19:29:05 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2002-11-05 19:29:05 +0000 |
commit | 61f743d4e1d6723e0d9c740d1de4be909285c290 (patch) | |
tree | 38f073537d7af0d5096a186b35f3149a9c4860e9 /net-analyzer/nessus-plugins | |
parent | added X to DEPEND (diff) | |
download | historical-61f743d4e1d6723e0d9c740d1de4be909285c290.tar.gz historical-61f743d4e1d6723e0d9c740d1de4be909285c290.tar.bz2 historical-61f743d4e1d6723e0d9c740d1de4be909285c290.zip |
Version bumps
Diffstat (limited to 'net-analyzer/nessus-plugins')
-rw-r--r-- | net-analyzer/nessus-plugins/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/nessus-plugins/files/digest-nessus-plugins-1.2.6 | 1 | ||||
-rw-r--r-- | net-analyzer/nessus-plugins/nessus-plugins-1.2.6.ebuild | 38 |
3 files changed, 45 insertions, 1 deletions
diff --git a/net-analyzer/nessus-plugins/ChangeLog b/net-analyzer/nessus-plugins/ChangeLog index 4537da7610a6..e597782becd9 100644 --- a/net-analyzer/nessus-plugins/ChangeLog +++ b/net-analyzer/nessus-plugins/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/nessus-plugins # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nessus-plugins/ChangeLog,v 1.2 2002/08/22 14:38:12 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nessus-plugins/ChangeLog,v 1.3 2002/11/05 19:29:05 aliz Exp $ + +*nessus-plugins-1.2.6 (05 Nov 2002) + + 05 Nov 2002; Daniel Ahlberg <aliz@gentoo.org> : + Version bump. *nessus-plugins-1.2.4 (22 Aug 2002) diff --git a/net-analyzer/nessus-plugins/files/digest-nessus-plugins-1.2.6 b/net-analyzer/nessus-plugins/files/digest-nessus-plugins-1.2.6 new file mode 100644 index 000000000000..e219df5af96d --- /dev/null +++ b/net-analyzer/nessus-plugins/files/digest-nessus-plugins-1.2.6 @@ -0,0 +1 @@ +MD5 846f981530aeb69107a631228942cc45 nessus-plugins-1.2.6.tar.gz 886230 diff --git a/net-analyzer/nessus-plugins/nessus-plugins-1.2.6.ebuild b/net-analyzer/nessus-plugins/nessus-plugins-1.2.6.ebuild new file mode 100644 index 000000000000..c75c90745ecd --- /dev/null +++ b/net-analyzer/nessus-plugins/nessus-plugins-1.2.6.ebuild @@ -0,0 +1,38 @@ +# Copyright 2000-2002 Achim Gottinger +# Distributed under the GPL by Gentoo Technologies, Inc. +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nessus-plugins/nessus-plugins-1.2.6.ebuild,v 1.1 2002/11/05 19:29:05 aliz Exp $ + +S=${WORKDIR}/${PN} + +DESCRIPTION="A remote security scanner for Linux (nessus-plugins)" +HOMEPAGE="http://www.nessus.org/" +SRC_URI="ftp://ftp.nessus.org/pub/nessus/nessus-${PV}/src/${P}.tar.gz" + +DEPEND="=net-analyzer/nessus-core-${PV}" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc -sparc -sparc64" + +src_compile() { + + econf || die "configure failed" + + emake || die "emake failed" + +} + +src_install() { + + make \ + prefix=${D}/usr \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/lib \ + mandir=${D}/usr/share/man \ + install || die "make install failed" + + cd ${S} + docinto nessus-plugins + dodoc docs/*.txt plugins/accounts/accounts.txt + +} |