diff options
author | Donny Davies <woodchip@gentoo.org> | 2002-01-24 20:01:58 +0000 |
---|---|---|
committer | Donny Davies <woodchip@gentoo.org> | 2002-01-24 20:01:58 +0000 |
commit | 6affc36d141a1153b09cc07d48a450fadd5e4f85 (patch) | |
tree | 5c25f622dc7c910c57c696137e88e94a05fa0e27 /net-analyzer/lcrzoex | |
parent | First version for portage. This library is used by (diff) | |
download | gentoo-2-6affc36d141a1153b09cc07d48a450fadd5e4f85.tar.gz gentoo-2-6affc36d141a1153b09cc07d48a450fadd5e4f85.tar.bz2 gentoo-2-6affc36d141a1153b09cc07d48a450fadd5e4f85.zip |
First version for portage.
This baby is a really groovy network toolbox, see the homepage for
all the nice stuff it does. Could come in very handy for diagnosing
problems.
Diffstat (limited to 'net-analyzer/lcrzoex')
-rw-r--r-- | net-analyzer/lcrzoex/files/digest-lcrzoex-4.03 | 1 | ||||
-rw-r--r-- | net-analyzer/lcrzoex/lcrzoex-4.03.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/net-analyzer/lcrzoex/files/digest-lcrzoex-4.03 b/net-analyzer/lcrzoex/files/digest-lcrzoex-4.03 new file mode 100644 index 000000000000..2ff40f20518e --- /dev/null +++ b/net-analyzer/lcrzoex/files/digest-lcrzoex-4.03 @@ -0,0 +1 @@ +MD5 1d7bfdd7f2ef87372ad8704a3c4ae82b lcrzoex-4.03-src.tgz 176128 diff --git a/net-analyzer/lcrzoex/lcrzoex-4.03.ebuild b/net-analyzer/lcrzoex/lcrzoex-4.03.ebuild new file mode 100644 index 000000000000..19b9ba5006e6 --- /dev/null +++ b/net-analyzer/lcrzoex/lcrzoex-4.03.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author: Donny Davies <woodchip@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/lcrzoex/lcrzoex-4.03.ebuild,v 1.1 2002/01/24 20:01:58 woodchip Exp $ + +DESCRIPTION="Toolbox of over 200 utilities for testing Ethernet/IP networks" +HOMEPAGE="http://www.laurentconstantin.com/en/lcrzoex/" +SRC_URI="http://www.laurentconstantin.com/common/${PN}/download/v4/${P}-src.tgz" +S=${WORKDIR}/${P}-src + +DEPEND="virtual/glibc net-libs/lcrzo" + +src_unpack() { + unpack ${A} ; cd ${S}/src + ./genemake || die "problem creating Makefile" + mv Makefile Makefile.orig + sed -e "s:^GCCOPT=.*:GCCOPT=${CFLAGS}:" Makefile.orig > Makefile +} + +src_compile() { + make -C src || die "compile problem :(" +} + +src_install() { + into /usr + dosbin src/lcrzoex + doman doc/man/lcrzoex_en.1 + dodoc doc/*.txt +} |