diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-06-21 20:42:02 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-06-21 20:42:02 +0000 |
commit | 3ca803b6ab44a433514fd6cad95f559531114a80 (patch) | |
tree | 566eb0c9a32621dd370145cf938eb1ebfa554d31 /net-analyzer | |
parent | Remove the RPM dependancies. Only things that still have them are (diff) | |
download | gentoo-2-3ca803b6ab44a433514fd6cad95f559531114a80.tar.gz gentoo-2-3ca803b6ab44a433514fd6cad95f559531114a80.tar.bz2 gentoo-2-3ca803b6ab44a433514fd6cad95f559531114a80.zip |
*** empty log message ***
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/ngrep/files/digest-ngrep-1.40 | 1 | ||||
-rw-r--r-- | net-analyzer/ngrep/ngrep-1.40.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/net-analyzer/ngrep/files/digest-ngrep-1.40 b/net-analyzer/ngrep/files/digest-ngrep-1.40 new file mode 100644 index 000000000000..febbba4ecfda --- /dev/null +++ b/net-analyzer/ngrep/files/digest-ngrep-1.40 @@ -0,0 +1 @@ +MD5 4837f3d3b30e12ee067cb3fd2b874798 ngrep-1.40.tar.gz diff --git a/net-analyzer/ngrep/ngrep-1.40.ebuild b/net-analyzer/ngrep/ngrep-1.40.ebuild new file mode 100644 index 000000000000..4114e3c997c0 --- /dev/null +++ b/net-analyzer/ngrep/ngrep-1.40.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ngrep/ngrep-1.40.ebuild,v 1.1 2001/06/21 20:42:02 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/ngrep +DESCRIPTION="A grep for network layers" +SRC_URI="http://prdownloads.sourceforge.net/ngrep/${A}" +HOMEPAGE="http://ngrep.sourceforge.net" + +DEPEND="virtual/glibc + >=net-libs/libpcap-0.5.2" + +RDEPEND="virtual/glibc" + +#src_unpack() { +# unpack ${A} +# patch -p0 < ${FILESDIR}/${PF}-gentoo.diff +#} + +src_compile() { + + try ./configure --host=${CHOST} --prefix=/usr + try make +} + +src_install() { + + into /usr + dobin ngrep + doman ngrep.8 + dodoc BUGS CHANGES COPYRIGHT CREDITS README TODO USAGE +} + + + |