diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-07-19 14:31:28 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-07-19 14:34:42 +0300 |
commit | 805dc9e652c18badbb0a09e0776dad294c228703 (patch) | |
tree | 1f9f76c4d4d4e5702ae637269dd86e4381eaccc3 /net-misc | |
parent | sci-electronics/vbs: treeclean (diff) | |
download | gentoo-805dc9e652c18badbb0a09e0776dad294c228703.tar.gz gentoo-805dc9e652c18badbb0a09e0776dad294c228703.tar.bz2 gentoo-805dc9e652c18badbb0a09e0776dad294c228703.zip |
net-misc/arpd: treeclean
Bug: https://bugs.gentoo.org/934242
Bug: https://bugs.gentoo.org/430816
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/arpd/Manifest | 1 | ||||
-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 |
6 files changed, 0 insertions, 136 deletions
diff --git a/net-misc/arpd/Manifest b/net-misc/arpd/Manifest deleted file mode 100644 index 6fa7ee7fb6cb..000000000000 --- a/net-misc/arpd/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST arpd-0.2.tar.gz 49437 BLAKE2B 6739954b5cb1da3d23251b526c5bc39b1563f6d54e74e5ff8d8e9c3f9b0ed1ecedc7caf805e51321849036d3dc49ab2e7f244599c7c2ef2b02d65160a8cf669c SHA512 24bd4626188d74e172a46312790f8453619af2ac634c23379d1922c789ed97ef5db8a73ae13fccd98c94457da79682d6a1d7ccc3236c787f9d2eb15f64716ea2 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> |