summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcelo Góes <vanquirius@gentoo.org>2006-03-09 17:47:48 +0000
committerMarcelo Góes <vanquirius@gentoo.org>2006-03-09 17:47:48 +0000
commitac6737c9535b54e07a43081f66739439ae079261 (patch)
tree216433f406dc5535f3b0415b6aa870f9382d98af /net-analyzer/libnasl
parentAdd ~sparc to KEYWORDS. See bug #124902 (diff)
downloadgentoo-2-ac6737c9535b54e07a43081f66739439ae079261.tar.gz
gentoo-2-ac6737c9535b54e07a43081f66739439ae079261.tar.bz2
gentoo-2-ac6737c9535b54e07a43081f66739439ae079261.zip
2.2.7 version bump for bug 125519. Thanks to ChazeFroy <chazefroy at gmail dot com>.
(Portage version: 2.0.54 vanquished edition)
Diffstat (limited to 'net-analyzer/libnasl')
-rw-r--r--net-analyzer/libnasl/ChangeLog8
-rw-r--r--net-analyzer/libnasl/files/digest-libnasl-2.2.71
-rw-r--r--net-analyzer/libnasl/libnasl-2.2.7.ebuild30
3 files changed, 38 insertions, 1 deletions
diff --git a/net-analyzer/libnasl/ChangeLog b/net-analyzer/libnasl/ChangeLog
index 86a4c7b8cb67..5787632b34ac 100644
--- a/net-analyzer/libnasl/ChangeLog
+++ b/net-analyzer/libnasl/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-analyzer/libnasl
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/libnasl/ChangeLog,v 1.78 2006/03/05 21:13:54 jokey Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/libnasl/ChangeLog,v 1.79 2006/03/09 17:47:48 vanquirius Exp $
+
+*libnasl-2.2.7 (09 Mar 2006)
+
+ 09 Mar 2006; Marcelo Goes <vanquirius@gentoo.org> +libnasl-2.2.7.ebuild:
+ 2.2.7 version bump for bug 125519. Thanks to ChazeFroy <chazefroy at gmail
+ dot com>.
05 Mar 2006; Markus Ullmann <jokey@gentoo.org> libnasl-2.3.1.ebuild:
COPYING cleanup
diff --git a/net-analyzer/libnasl/files/digest-libnasl-2.2.7 b/net-analyzer/libnasl/files/digest-libnasl-2.2.7
new file mode 100644
index 000000000000..f0679c562f85
--- /dev/null
+++ b/net-analyzer/libnasl/files/digest-libnasl-2.2.7
@@ -0,0 +1 @@
+MD5 37f6f0db022dad1e218371909de3e8af libnasl-2.2.7.tar.gz 364755
diff --git a/net-analyzer/libnasl/libnasl-2.2.7.ebuild b/net-analyzer/libnasl/libnasl-2.2.7.ebuild
new file mode 100644
index 000000000000..2cbc3081068d
--- /dev/null
+++ b/net-analyzer/libnasl/libnasl-2.2.7.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/libnasl/libnasl-2.2.7.ebuild,v 1.1 2006/03/09 17:47:48 vanquirius Exp $
+
+inherit toolchain-funcs
+
+DESCRIPTION="A remote security scanner for Linux (libnasl)"
+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"
+IUSE=""
+
+DEPEND="=net-analyzer/nessus-libraries-${PV}"
+
+S="${WORKDIR}/${PN}"
+
+src_compile() {
+ export CC="$(tc-getCC)"
+ econf || die "configuration failed"
+ # emake fails for >= -j2. bug #16471.
+ emake -C nasl cflags
+ emake || die "make failed"
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die "Install failed libnasl"
+}