diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-analyzer/netdiscover | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'net-analyzer/netdiscover')
5 files changed, 104 insertions, 0 deletions
diff --git a/net-analyzer/netdiscover/Manifest b/net-analyzer/netdiscover/Manifest new file mode 100644 index 000000000000..6e9b9a519ffe --- /dev/null +++ b/net-analyzer/netdiscover/Manifest @@ -0,0 +1,2 @@ +DIST netdiscover-0.3-beta6-oui-db-update-20091010.patch.bz2 151434 SHA256 81d06920e0606ec74a497ca4b34b0288572b9be82093bc19e3b812c036fba9f6 SHA512 936f030bac30cf54d1b9b6bb23045c2cad201a21529706436ab0732c356dc4ab27e3f2a8472437f9ac76d9b819ebc6d8faa05405be13d3d6beda5e261ebf93da WHIRLPOOL fe95a550fa41aedb75bad90cbfebe1b14c63b6f1d1edc2caf82a689bc2740d65b07836701e6f1e8e541eabbd3c35c432ba3a8e771d89f5b4e3e6812f835e6fdb +DIST netdiscover-0.3-beta6.tar.gz 411018 SHA256 19c367f823c49999e2c05c485cac0a5d5685d23c6b33deae1e957406571924db SHA512 b8205322c34684642d52bf58f8fffa12a0dea387da713caf2935ba348c74b2e6cac717bf1626c9de816e45dce7c42b6b9584b5253351040af806f7ba262ce4d2 WHIRLPOOL 9386451a26a3fb147aadd772bfc71c89cc67185c54c24b306fc421b43799f00402ff383c96944945b06baf90ad22ff409dc0c57a4370b98a20a89951595310fb diff --git a/net-analyzer/netdiscover/files/netdiscover-0.3_beta6-gentoo.patch b/net-analyzer/netdiscover/files/netdiscover-0.3_beta6-gentoo.patch new file mode 100644 index 000000000000..d70fc36de5a5 --- /dev/null +++ b/net-analyzer/netdiscover/files/netdiscover-0.3_beta6-gentoo.patch @@ -0,0 +1,41 @@ +--- a/configure.in ++++ b/configure.in +@@ -5,7 +5,7 @@ + + AC_INIT(configure.in) + AM_INIT_AUTOMAKE(netdiscover, 0.3-beta6) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + AM_MAINTAINER_MODE + + dnl get system information +@@ -35,7 +35,6 @@ + + AC_ISC_POSIX + AC_PROG_CC +-AM_PROG_CC_STDC + AC_HEADER_STDC + + AM_PROG_LIBTOOL +--- a/Makefile.am ++++ b/Makefile.am +@@ -5,8 +5,8 @@ + + SUBDIRS = src doc + +-netdiscoverdocdir = ${prefix}/doc/netdiscover +-netdiscoverdoc_DATA = \ ++noinstdir = ${prefix}/doc/netdiscover ++noinst_DATA = \ + README\ + COPYING\ + AUTHORS\ +@@ -15,7 +15,7 @@ + NEWS\ + TODO + +-EXTRA_DIST = $(netdiscoverdoc_DATA) ++EXTRA_DIST = $(noinst_DATA) + + + diff --git a/net-analyzer/netdiscover/files/netdiscover-0.3_beta6-misc.patch b/net-analyzer/netdiscover/files/netdiscover-0.3_beta6-misc.patch new file mode 100644 index 000000000000..2b92bfde8629 --- /dev/null +++ b/net-analyzer/netdiscover/files/netdiscover-0.3_beta6-misc.patch @@ -0,0 +1,20 @@ +--- a/src/misc.c ++++ b/src/misc.c +@@ -33,7 +33,7 @@ + + char *search_vendor(unsigned char mac[6]) + { +- char tmac[6]; ++ char tmac[7]; + int i = 0; + + sprintf(tmac, "%02x%02x%02x", mac[0], mac[1], mac[2]); +@@ -42,7 +42,7 @@ + for (i=0; i<6; i++) + tmac[i] = toupper(tmac[i]); + +- for (i=0; i<8436; i++) ++ for (i=0; i<NUM_OUI_RECORDS; i++) + { + if (strcmp(oui_table[i].prefix, tmac) == 0) + return oui_table[i].vendor; diff --git a/net-analyzer/netdiscover/metadata.xml b/net-analyzer/netdiscover/metadata.xml new file mode 100644 index 000000000000..03aa50bab7e3 --- /dev/null +++ b/net-analyzer/netdiscover/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>netmon</herd> +</pkgmetadata> diff --git a/net-analyzer/netdiscover/netdiscover-0.3_beta6-r3.ebuild b/net-analyzer/netdiscover/netdiscover-0.3_beta6-r3.ebuild new file mode 100644 index 000000000000..8e1333ad2d91 --- /dev/null +++ b/net-analyzer/netdiscover/netdiscover-0.3_beta6-r3.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils autotools + +DESCRIPTION="An active/passive address reconnaissance tool" +HOMEPAGE="http://nixgeneration.com/~jaime/netdiscover/" +LICENSE="GPL-2" +SRC_URI=" + http://nixgeneration.com/~jaime/${PN}/releases/${P/_/-}.tar.gz + https://dev.gentoo.org/~jer/${P/_/-}-oui-db-update-20091010.patch.bz2 +" + +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos" + +DEPEND=" + net-libs/libnet:1.1 + >=net-libs/libpcap-0.8.3-r1 +" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${P/_/-} + +DOCS=( AUTHORS ChangeLog README TODO ) + +src_prepare() { + epatch \ + "${WORKDIR}"/${P/_/-}-oui-db-update-20091010.patch \ + "${FILESDIR}"/${P}-gentoo.patch \ + "${FILESDIR}"/${P}-misc.patch + + eautoreconf +} |