diff options
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/Manifest.gz | bin | 54372 -> 54213 bytes | |||
-rw-r--r-- | net-misc/arpd/Manifest | 6 | ||||
-rw-r--r-- | net-misc/arpd/arpd-0.2-r1.ebuild | 49 | ||||
-rw-r--r-- | net-misc/arpd/files/arpd-0.2-buildsystem-libevent-test.patch | 11 | ||||
-rw-r--r-- | net-misc/arpd/files/arpd-0.2-libevent.patch | 28 | ||||
-rw-r--r-- | net-misc/arpd/files/arpd.c.patch | 42 | ||||
-rw-r--r-- | net-misc/arpd/metadata.xml | 5 |
7 files changed, 0 insertions, 141 deletions
diff --git a/net-misc/Manifest.gz b/net-misc/Manifest.gz Binary files differindex a25289d13316..cde7d5914dda 100644 --- a/net-misc/Manifest.gz +++ b/net-misc/Manifest.gz diff --git a/net-misc/arpd/Manifest b/net-misc/arpd/Manifest deleted file mode 100644 index 02f8289ba5d8..000000000000 --- a/net-misc/arpd/Manifest +++ /dev/null @@ -1,6 +0,0 @@ -AUX arpd-0.2-buildsystem-libevent-test.patch 373 BLAKE2B acbb6c7865e032feb87451829322faf5061cbe3387ad15334f86031a4ff103766bb22c99547022f80c87f06ff53a6a95f3cceb2b4adb41d90b56b9c2e5ef6c50 SHA512 c990409996167538fd449bd70a102767f1db217f709b33cba4b7f27d8829d77246c354790820f0195ea0975ae730f4a6ac30e17e5bb7d22e1805f65ef247d14e -AUX arpd-0.2-libevent.patch 423 BLAKE2B 834691198e97f8018a0861ac2938b60840dacb5de3ac2ad5d1a632b94f1582a761e326ddca0bdd0cfc7f245a6c9cfe2ac5601382721c8471dd546b80ac1cec2d SHA512 2bcb236d138fff6433da7385a309e09eea583ee295ddacbadae7bd562b6df972ef0a45636b61dd72f62b375fa08382b9e82b62b220fa351b178b70571c1d86ae -AUX arpd.c.patch 1404 BLAKE2B 9dbae33986d92a0d220baf428cedc24bf1ffb3a3b41edeb8ebaad68d5c60752d1c16902a32ec314b59baf7b9bb5d9ece35b1adc0af5e67f6173bc47741e97eee SHA512 f9a5669525ed2081a47025206fed6b016ef4a7d35b10b2c8a7c7135b0b7eddf060e380a7561c59d23466065614c1d9287cffc3158cb05ad1907fc6ea569def28 -DIST arpd-0.2.tar.gz 49437 BLAKE2B 6739954b5cb1da3d23251b526c5bc39b1563f6d54e74e5ff8d8e9c3f9b0ed1ecedc7caf805e51321849036d3dc49ab2e7f244599c7c2ef2b02d65160a8cf669c SHA512 24bd4626188d74e172a46312790f8453619af2ac634c23379d1922c789ed97ef5db8a73ae13fccd98c94457da79682d6a1d7ccc3236c787f9d2eb15f64716ea2 -EBUILD arpd-0.2-r1.ebuild 967 BLAKE2B 579e1e2a26bd3887b6a222e8fb213cf4028e4564bb79ef344055dd678bd02f98ec6978325a60a70b94652f47f2ccd6e5717d7419075bbc4871d6c3db976aadfc SHA512 cfdbefad1c6634aafa7b91841fee22c44fe981b55ec0db512f86f14ca36de9ae7247870c9ba5ebbd8eb251ae5cf9fe4bb3b2cdfe36344492a49e96bd056e1490 -MISC metadata.xml 168 BLAKE2B 2e0e000b4c3b6ca04c12903fdbe278415c05a822623c52e9aa95cbbf3d50bcb1246b7edbda7d2f6b559af8950c6374e6e0a69b76319964cfe686bf50b0604a57 SHA512 4dcf45d1809e8390a2d8155c8ebfe0dd610203e392aeab0ccd8a10f42cc8532a4925eff32b35e7a6c35598a4efd288229034ec0732299dbd8cfa0acff705fed3 diff --git a/net-misc/arpd/arpd-0.2-r1.ebuild b/net-misc/arpd/arpd-0.2-r1.ebuild deleted file mode 100644 index de6e16c1ce37..000000000000 --- a/net-misc/arpd/arpd-0.2-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools - -DESCRIPTION="ARP server claiming all unassigned addresses (for network monitoring/simulation)" -HOMEPAGE="http://www.citi.umich.edu/u/provos/honeyd/" -SRC_URI="http://www.citi.umich.edu/u/provos/honeyd/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~hppa ppc ~ppc64 sparc x86" -IUSE="" - -DEPEND=" - >=dev-libs/libdnet-1.4 - >=dev-libs/libevent-0.6 - net-libs/libpcap - !sys-apps/iproute2" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/${PN} - -PATCHES=( - "${FILESDIR}"/arpd.c.patch - "${FILESDIR}"/${P}-libevent.patch - - # bug 337481, replace test on libevent.a with libevent.so - "${FILESDIR}"/${P}-buildsystem-libevent-test.patch -) - -src_prepare() { - default - mv configure.{in,ac} || die - eautoreconf -} - -src_configure() { - econf \ - --with-libdnet="${EPREFIX}"/usr \ - --with-libevent="${EPREFIX}"/usr -} - -src_install() { - dosbin arpd - doman arpd.8 -} diff --git a/net-misc/arpd/files/arpd-0.2-buildsystem-libevent-test.patch b/net-misc/arpd/files/arpd-0.2-buildsystem-libevent-test.patch deleted file mode 100644 index 598fd0b73777..000000000000 --- a/net-misc/arpd/files/arpd-0.2-buildsystem-libevent-test.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/configure.in -+++ b/configure.in -@@ -62,7 +62,7 @@ - ;; - *) - AC_MSG_RESULT($withval) -- if test -f $withval/include/event.h -a -f $withval/lib/libevent.a; then -+ if test -f $withval/include/event.h -a -f $withval/lib/libevent.so; then - owd=`pwd` - if cd $withval; then withval=`pwd`; cd $owd; fi - EVENTINC="-I$withval/include" diff --git a/net-misc/arpd/files/arpd-0.2-libevent.patch b/net-misc/arpd/files/arpd-0.2-libevent.patch deleted file mode 100644 index 367ae551ad98..000000000000 --- a/net-misc/arpd/files/arpd-0.2-libevent.patch +++ /dev/null @@ -1,28 +0,0 @@ ---- a/arpd.c -+++ b/arpd.c -@@ -445,9 +445,6 @@ - void - terminate_handler(int sig) - { -- extern int event_gotsig; -- -- event_gotsig = 1; - arpd_sig = sig; - } - -@@ -464,7 +461,6 @@ - main(int argc, char *argv[]) - { - struct event recv_ev; -- extern int (*event_sigcb)(void); - char *dev; - int c, debug; - FILE *fp; -@@ -524,7 +520,6 @@ - perror("signal"); - return (-1); - } -- event_sigcb = arpd_signal; - - event_dispatch(); - diff --git a/net-misc/arpd/files/arpd.c.patch b/net-misc/arpd/files/arpd.c.patch deleted file mode 100644 index b8d2bbdb94b0..000000000000 --- a/net-misc/arpd/files/arpd.c.patch +++ /dev/null @@ -1,42 +0,0 @@ ---- a/arpd.c -+++ b/arpd.c -@@ -265,7 +265,7 @@ - spa->addr_ip, tha->addr_eth, tpa->addr_ip); - - if (op == ARP_OP_REQUEST) { -- syslog(LOG_DEBUG, __FUNCTION__ ": who-has %s tell %s", -+ syslog(LOG_DEBUG, __FUNCTION__, ": who-has %s tell %s", - addr_ntoa(tpa), addr_ntoa(spa)); - } else if (op == ARP_OP_REPLY) { - syslog(LOG_INFO, "arp reply %s is-at %s", -@@ -282,7 +282,7 @@ - int error; - - if (addr_cmp(addr, &arpd_ifent.intf_addr) == 0) { -- syslog(LOG_DEBUG, __FUNCTION__ ": %s at %s", -+ syslog(LOG_DEBUG, __FUNCTION__, ": %s at %s", - addr_ntoa(addr), addr_ntoa(&arpd_ifent.intf_link_addr)); - return (0); - } -@@ -291,10 +291,10 @@ - error = arp_get(arpd_arp, &arpent); - - if (error == -1) { -- syslog(LOG_DEBUG, __FUNCTION__ ": no entry for %s", -+ syslog(LOG_DEBUG, __FUNCTION__, ": no entry for %s", - addr_ntoa(addr)); - } else { -- syslog(LOG_DEBUG, __FUNCTION__ ": %s at %s", -+ syslog(LOG_DEBUG, __FUNCTION__, ": %s at %s", - addr_ntoa(addr), addr_ntoa(&arpent.arp_ha)); - } - return (error); -@@ -423,7 +423,7 @@ - if ((req = SPLAY_FIND(tree, &arpd_reqs, &tmp)) != NULL) { - addr_pack(&src.arp_ha, ADDR_TYPE_ETH, ETH_ADDR_BITS, - ethip->ar_sha, ETH_ADDR_LEN); -- syslog(LOG_DEBUG, __FUNCTION__ ": %s at %s", -+ syslog(LOG_DEBUG, __FUNCTION__, ": %s at %s", - addr_ntoa(&req->pa), addr_ntoa(&src.arp_ha)); - - /* This address is claimed */ diff --git a/net-misc/arpd/metadata.xml b/net-misc/arpd/metadata.xml deleted file mode 100644 index 115e9d64a669..000000000000 --- a/net-misc/arpd/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> -</pkgmetadata> |