diff options
author | Michael Boman <mboman@gentoo.org> | 2004-02-28 05:40:05 +0000 |
---|---|---|
committer | Michael Boman <mboman@gentoo.org> | 2004-02-28 05:40:05 +0000 |
commit | 600f315e3505f7fcf296a79f6f54be503c627015 (patch) | |
tree | cd55579d0ff270dfd0b2d478e602222f10ed5492 /net-analyzer | |
parent | Bumped to version 5.9.0 (required for bug 42960). Added the software to the n... (diff) | |
download | gentoo-2-600f315e3505f7fcf296a79f6f54be503c627015.tar.gz gentoo-2-600f315e3505f7fcf296a79f6f54be503c627015.tar.bz2 gentoo-2-600f315e3505f7fcf296a79f6f54be503c627015.zip |
New upstream version, closes 42960.
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/netwox/ChangeLog | 10 | ||||
-rw-r--r-- | net-analyzer/netwox/Manifest | 4 | ||||
-rw-r--r-- | net-analyzer/netwox/files/digest-netwox-5.9.0 | 1 | ||||
-rw-r--r-- | net-analyzer/netwox/metadata.xml | 11 | ||||
-rw-r--r-- | net-analyzer/netwox/netwox-5.9.0.ebuild | 37 |
5 files changed, 60 insertions, 3 deletions
diff --git a/net-analyzer/netwox/ChangeLog b/net-analyzer/netwox/ChangeLog index 392854116bc4..891e1afe285b 100644 --- a/net-analyzer/netwox/ChangeLog +++ b/net-analyzer/netwox/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/netwox -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netwox/ChangeLog,v 1.3 2004/01/05 22:03:15 robbat2 Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netwox/ChangeLog,v 1.4 2004/02/28 05:40:05 mboman Exp $ + +*netwox-5.9.0 (28 Feb 2004) + + 28 Feb 2004; Michael Boman <mboman@gentoo.org> metadata.xml, + netwox-5.9.0.ebuild: + New upstream version, closes 42960. 05 Jan 2004; Robin H. Johnson <robbat2@gentoo.org> : add missing manifest diff --git a/net-analyzer/netwox/Manifest b/net-analyzer/netwox/Manifest index cda545e04c15..c245e041c86b 100644 --- a/net-analyzer/netwox/Manifest +++ b/net-analyzer/netwox/Manifest @@ -1,3 +1,5 @@ -MD5 0bb1f25dabdb18874328e880eef930a3 files/digest-netwox-5.6.0 65 MD5 69a1ca41c0bd9ea0c7c5a0c119c3e7cb netwox-5.6.0.ebuild 891 MD5 c23ea01f1f0abbe00a8d2e2c7c5712e9 ChangeLog 545 +MD5 69a1ca41c0bd9ea0c7c5a0c119c3e7cb netwox-5.9.0.ebuild 891 +MD5 93834a182ad80699bc2f58f8f45958fc files/digest-netwox-5.9.0 65 +MD5 0bb1f25dabdb18874328e880eef930a3 files/digest-netwox-5.6.0 65 diff --git a/net-analyzer/netwox/files/digest-netwox-5.9.0 b/net-analyzer/netwox/files/digest-netwox-5.9.0 new file mode 100644 index 000000000000..dd6a4c276922 --- /dev/null +++ b/net-analyzer/netwox/files/digest-netwox-5.9.0 @@ -0,0 +1 @@ +MD5 09dee483d173d8c3eae950f6c863e40a netwox-5.9.0-src.tgz 266400 diff --git a/net-analyzer/netwox/metadata.xml b/net-analyzer/netwox/metadata.xml new file mode 100644 index 000000000000..bc8add436336 --- /dev/null +++ b/net-analyzer/netwox/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>netmon</herd> +<maintainer> + <email>mboman@gentoo.org</email> + <name>Michael Boman</name> + <description>Interim Maintainer</description> +</maintainer> +<longdescription>Toolbox of over 400 utilities for testing Ethernet/IP networks</longdescription> +</pkgmetadata> diff --git a/net-analyzer/netwox/netwox-5.9.0.ebuild b/net-analyzer/netwox/netwox-5.9.0.ebuild new file mode 100644 index 000000000000..ff0477e5ae28 --- /dev/null +++ b/net-analyzer/netwox/netwox-5.9.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netwox/netwox-5.9.0.ebuild,v 1.1 2004/02/28 05:40:05 mboman Exp $ + +DESCRIPTION="Toolbox of over 400 utilities for testing Ethernet/IP networks" +HOMEPAGE="http://www.laurentconstantin.com/en/netw/netwox/" +SRC_URI="http://www.laurentconstantin.com/common/netw/${PN}/download/v${PV/.*}/${P}-src.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="=net-libs/netwib-${PV}*" + +S=${WORKDIR}/${P}-src + +src_unpack() { + unpack ${A} + cd ${S}/src + + sed -i \ + -e 's:/usr/local:/usr:g' \ + -e "s:-O2:${CFLAGS}:" \ + genemake config.dat + ./genemake || die "problem creating Makefile" +} + +src_compile() { + cd src + emake -j1 || die "compile problem" +} + +src_install() { + dodoc README.TXT doc/*.txt + cd src + make install DESTDIR=${D} || die +} |