diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2007-04-03 14:35:04 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2007-04-03 14:35:04 +0000 |
commit | 97d8748e8c0abde9d32a6f9434f1657cffe84f93 (patch) | |
tree | d63931706d31f6ea68ebe6d39040822517950f08 /net-analyzer/libnasl | |
parent | Mask =nessus-2.3.1 for bug 169466. This branch was discontinued. Please (diff) | |
download | historical-97d8748e8c0abde9d32a6f9434f1657cffe84f93.tar.gz historical-97d8748e8c0abde9d32a6f9434f1657cffe84f93.tar.bz2 historical-97d8748e8c0abde9d32a6f9434f1657cffe84f93.zip |
2.2.9 version bump for bug 169466. Thanks to Jared Breland <nitro322 at gmail dot com>.
Package-Manager: portage-2.1.2.2
Diffstat (limited to 'net-analyzer/libnasl')
-rw-r--r-- | net-analyzer/libnasl/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/libnasl/files/digest-libnasl-2.2.9 | 3 | ||||
-rw-r--r-- | net-analyzer/libnasl/libnasl-2.2.9.ebuild | 30 |
3 files changed, 40 insertions, 1 deletions
diff --git a/net-analyzer/libnasl/ChangeLog b/net-analyzer/libnasl/ChangeLog index 53660fe902dc..055e7d18c029 100644 --- a/net-analyzer/libnasl/ChangeLog +++ b/net-analyzer/libnasl/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/libnasl # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/libnasl/ChangeLog,v 1.82 2007/03/26 19:27:31 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/libnasl/ChangeLog,v 1.83 2007/04/03 14:33:26 vanquirius Exp $ + +*libnasl-2.2.9 (03 Apr 2007) + + 03 Apr 2007; Marcelo Goes <vanquirius@gentoo.org> +libnasl-2.2.9.ebuild: + 2.2.9 version bump for bug 169466. Thanks to Jared Breland <nitro322 at + gmail dot com>. 26 Mar 2007; Fabian Groffen <grobian@gentoo.org> libnasl-2.3.1.ebuild: Dropped ppc-macos keyword, see you in prefix diff --git a/net-analyzer/libnasl/files/digest-libnasl-2.2.9 b/net-analyzer/libnasl/files/digest-libnasl-2.2.9 new file mode 100644 index 000000000000..b6427ef1f011 --- /dev/null +++ b/net-analyzer/libnasl/files/digest-libnasl-2.2.9 @@ -0,0 +1,3 @@ +MD5 fa0393e940253a95437d38edd6ff1844 libnasl-2.2.9.tar.gz 366960 +RMD160 c7f1d5ebd080ed60cb79838601ada8617ec4b9ec libnasl-2.2.9.tar.gz 366960 +SHA256 2d9cebfe69e40963d790295993e096697a0bed37774b66ee8b14e48c2231fa93 libnasl-2.2.9.tar.gz 366960 diff --git a/net-analyzer/libnasl/libnasl-2.2.9.ebuild b/net-analyzer/libnasl/libnasl-2.2.9.ebuild new file mode 100644 index 000000000000..c6f69efc4140 --- /dev/null +++ b/net-analyzer/libnasl/libnasl-2.2.9.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/libnasl/libnasl-2.2.9.ebuild,v 1.1 2007/04/03 14:33:26 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" +} |