diff options
Diffstat (limited to 'net-analyzer/knocker/knocker-0.6.6.ebuild')
-rw-r--r-- | net-analyzer/knocker/knocker-0.6.6.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/net-analyzer/knocker/knocker-0.6.6.ebuild b/net-analyzer/knocker/knocker-0.6.6.ebuild new file mode 100644 index 000000000000..8829d1254c30 --- /dev/null +++ b/net-analyzer/knocker/knocker-0.6.6.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /home/cvsroot/gentoo-x86/skel.ebuild,v 1.6 2002/05/07 03:58:19 drobbi +ns Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="Knocker is an easy to use security port scanner written in C" + +SRC_URI="http://telia.dl.sourceforge.net/sourceforge/knocker/${P}.tar.gz" + +HOMEPAGE="http://knocker.sourceforge.net" + +LICENSE="GPL-2" + +DEPEND="virtual/glibc" +RDEPEND="${DEPEND}" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + + emake || die "emake died" +} + +src_install () { + make DESTDIR=${D} install || die + + dodoc ChangeLog AUTHORS README BUGS TO-DO NEWS +} |