diff options
author | Nick Hadaway <raker@gentoo.org> | 2003-01-17 03:38:30 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2003-01-17 03:38:30 +0000 |
commit | 5b45353dff7a0673206d97eea1242cf3b93f60b1 (patch) | |
tree | 9c9b0abb1fbc62e728c386ab4997e714ba1c41b4 /net-analyzer/libnasl/libnasl-1.2.7.ebuild | |
parent | Marked stable for x86. fixed doc location (diff) | |
download | historical-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/libnasl/libnasl-1.2.7.ebuild')
-rw-r--r-- | net-analyzer/libnasl/libnasl-1.2.7.ebuild | 16 |
1 files changed, 6 insertions, 10 deletions
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 } |