diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2003-01-04 03:31:12 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2003-01-04 03:31:12 +0000 |
commit | 17bc1af0a609f7a0614439a50c287596cf6dcef0 (patch) | |
tree | 6b5f815ff53081e81590517e84871507ac843853 /net-analyzer/libnasl | |
parent | Misc fixes (diff) | |
download | gentoo-2-17bc1af0a609f7a0614439a50c287596cf6dcef0.tar.gz gentoo-2-17bc1af0a609f7a0614439a50c287596cf6dcef0.tar.bz2 gentoo-2-17bc1af0a609f7a0614439a50c287596cf6dcef0.zip |
Versionbump
Diffstat (limited to 'net-analyzer/libnasl')
-rw-r--r-- | net-analyzer/libnasl/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/libnasl/files/digest-libnasl-1.2.7 | 1 | ||||
-rw-r--r-- | net-analyzer/libnasl/libnasl-1.2.7.ebuild | 48 |
3 files changed, 55 insertions, 1 deletions
diff --git a/net-analyzer/libnasl/ChangeLog b/net-analyzer/libnasl/ChangeLog index ef8cf1d53b79..f60200781a28 100644 --- a/net-analyzer/libnasl/ChangeLog +++ b/net-analyzer/libnasl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/libnasl # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/libnasl/ChangeLog,v 1.6 2002/12/13 10:59:47 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/libnasl/ChangeLog,v 1.7 2003/01/04 03:31:12 aliz Exp $ + +*libnasl-1.2.7 (04 Jan 2003) + + 04 Jan 2003; Daniel Ahlberg <aliz@gentoo.org> : + Version bump. Found by Raskasi <raskasi@gmx.net>. 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords diff --git a/net-analyzer/libnasl/files/digest-libnasl-1.2.7 b/net-analyzer/libnasl/files/digest-libnasl-1.2.7 new file mode 100644 index 000000000000..e43e05a4dbd3 --- /dev/null +++ b/net-analyzer/libnasl/files/digest-libnasl-1.2.7 @@ -0,0 +1 @@ +MD5 7cbe6ba0a2243e4cdddee186da499153 libnasl-1.2.7.tar.gz 278796 diff --git a/net-analyzer/libnasl/libnasl-1.2.7.ebuild b/net-analyzer/libnasl/libnasl-1.2.7.ebuild new file mode 100644 index 000000000000..22c6ed29ccf1 --- /dev/null +++ b/net-analyzer/libnasl/libnasl-1.2.7.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/libnasl/libnasl-1.2.7.ebuild,v 1.1 2003/01/04 03:31:12 aliz Exp $ + +S=${WORKDIR}/${PN} + +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" + +DEPEND="=net-analyzer/nessus-libraries-${PV}" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc -sparc " + +src_unpack() { + unpack ${A} + cd ${S} + patch -p1 < ${FILESDIR}/nasl.diff +} + +src_compile() { + if [ ! -z ${DEBUG} ]; then + OLD_DEBUG=${DEBUG} + unset DEBUG + econf || die "configuration failed" + DEBUG=${OLD_DEBUG} + unset OLD_DEBUG + else + econf || die "configuration failed" + fi + + emake || die "emake failed" +} + +src_install() { + make \ + prefix=${D}/usr \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/lib \ + mandir=${D}/usr/share/man \ + install || die "Install failed libnasl" + + cd ${S} + docinto libnasl + dodoc COPYING TODO +} |