summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Hadaway <raker@gentoo.org>2003-01-17 03:38:30 +0000
committerNick Hadaway <raker@gentoo.org>2003-01-17 03:38:30 +0000
commit5b45353dff7a0673206d97eea1242cf3b93f60b1 (patch)
tree9c9b0abb1fbc62e728c386ab4997e714ba1c41b4 /net-analyzer
parentMarked stable for x86. fixed doc location (diff)
downloadhistorical-5b45353dff7a0673206d97eea1242cf3b93f60b1.tar.gz
historical-5b45353dff7a0673206d97eea1242cf3b93f60b1.tar.bz2
historical-5b45353dff7a0673206d97eea1242cf3b93f60b1.zip
Marked stable for x86. Changed to epatch. Fixed doc install directory.
Changed to DEBUGBUILD
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/libnasl/ChangeLog6
-rw-r--r--net-analyzer/libnasl/libnasl-1.2.7.ebuild16
2 files changed, 11 insertions, 11 deletions
diff --git a/net-analyzer/libnasl/ChangeLog b/net-analyzer/libnasl/ChangeLog
index f60200781a28..15f74ff97256 100644
--- a/net-analyzer/libnasl/ChangeLog
+++ b/net-analyzer/libnasl/ChangeLog
@@ -1,9 +1,13 @@
# 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.7 2003/01/04 03:31:12 aliz Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/libnasl/ChangeLog,v 1.8 2003/01/17 03:38:30 raker Exp $
*libnasl-1.2.7 (04 Jan 2003)
+ 16 Jan 2003; Nick Hadaway <raker@gentoo.org> libnasl-1.2.7.ebuild :
+ Fixed doc location. Changed to epatch. Changed to DEBUGBUILD.
+ Marked stable for x86.
+
04 Jan 2003; Daniel Ahlberg <aliz@gentoo.org> :
Version bump. Found by Raskasi <raskasi@gmx.net>.
diff --git a/net-analyzer/libnasl/libnasl-1.2.7.ebuild b/net-analyzer/libnasl/libnasl-1.2.7.ebuild
index 22c6ed29ccf1..96774a9d8c20 100644
--- a/net-analyzer/libnasl/libnasl-1.2.7.ebuild
+++ b/net-analyzer/libnasl/libnasl-1.2.7.ebuild
@@ -1,27 +1,26 @@
# 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 $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/libnasl/libnasl-1.2.7.ebuild,v 1.2 2003/01/17 03:38:30 raker 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 "
+KEYWORDS="x86 ~ppc -sparc "
+
+inherit eutils
src_unpack() {
unpack ${A}
cd ${S}
- patch -p1 < ${FILESDIR}/nasl.diff
+ epatch ${FILESDIR}/nasl.diff || die
}
src_compile() {
- if [ ! -z ${DEBUG} ]; then
+ if [ ! -z ${DEBUGBUILD} ]; then
OLD_DEBUG=${DEBUG}
unset DEBUG
econf || die "configuration failed"
@@ -30,7 +29,6 @@ src_compile() {
else
econf || die "configuration failed"
fi
-
emake || die "emake failed"
}
@@ -41,8 +39,6 @@ src_install() {
localstatedir=${D}/var/lib \
mandir=${D}/usr/share/man \
install || die "Install failed libnasl"
-
cd ${S}
- docinto libnasl
dodoc COPYING TODO
}