summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Weber <xmw@gentoo.org>2016-09-27 23:57:44 +0200
committerMichael Weber <xmw@gentoo.org>2016-09-27 23:58:08 +0200
commit483250f63414b3a716e664d99c120dbd1a2211b0 (patch)
tree4feeb3dfaceaeb6dae2bcade33dfbfc2744e2d62 /net-misc/radvd
parentnet-misc/radvd: Version bump. (diff)
downloadgentoo-483250f63414b3a716e664d99c120dbd1a2211b0.tar.gz
gentoo-483250f63414b3a716e664d99c120dbd1a2211b0.tar.bz2
gentoo-483250f63414b3a716e664d99c120dbd1a2211b0.zip
net-misc/radvd: drop old.
Package-Manager: portage-2.2.28
Diffstat (limited to 'net-misc/radvd')
-rw-r--r--net-misc/radvd/Manifest1
-rw-r--r--net-misc/radvd/files/radvd-2.10-musl-libc-fix.patch87
-rw-r--r--net-misc/radvd/radvd-2.12.ebuild69
3 files changed, 0 insertions, 157 deletions
diff --git a/net-misc/radvd/Manifest b/net-misc/radvd/Manifest
index d1c07cd1b79c..50d3864faf0b 100644
--- a/net-misc/radvd/Manifest
+++ b/net-misc/radvd/Manifest
@@ -1,5 +1,4 @@
DIST radvd-1.9.8.tar.gz 176288 SHA256 645ccf1c9b16e769ff4179813712e580e2c8786d64a888d8afa1e296c057c1c1 SHA512 25ffa2fe1289ee826432ade3846aa5008e34ff9f0cbe954bf44ebae22198de59b40b7b4a70d19c74117b3280a7ca6a4bf740536f4a08e0bf169e760748548971 WHIRLPOOL 228182cb6fdc6065a728f679ee6d93286c48f186b209b6ff8d553f06317d0e799687c5abf0179cda5c42d2ca72ca32bdacbc31e0a14a06d18316a6538eb09017
-DIST radvd-2.12.tar.gz 210605 SHA256 6b81211e9027e008306ffdcb48948b0035f6e0f3bfcbf0a2a39b1b13f6b9c3fa SHA512 1703b90f2990a1fe2113b5ae1b564ebb25b9106ac13c2268f78aaea804263ca7cc33976fe30fd52f01a91283f66114b37200747d8178c4e1985035361e6143d9 WHIRLPOOL a10351d758397d527cef3e739f6783beb3090175868948b13e365dd1adee671a8cc821bbe8c3bfc6ba8e8622be886567bee68d3460d6220c0b14dffcf35f1b37
DIST radvd-2.13.tar.gz 211392 SHA256 bd009f13e253f546049103fdf829145bf47d4ad9341d49c3e500b1cfadd6d469 SHA512 050fd273727acfac6f6a7eb1245d4a6ef01cbfb4654a922b98f0944931535770154dd564a09a43bc96bd1a575ecd426cee042dc1129dc453cbda03d7975d49ce WHIRLPOOL 03451fb0561130c97cf509cf18ad69a508106e46ced18d351cd6274d009879006c552d4484ac2a470078f420951c60415e40852a2a43e20b90b19e2b89a94ae5
DIST radvd-2.14.tar.gz 211461 SHA256 46d31c05daea11c3d1e3dc092997d3631b3bc72b20a4f279b05304b83dbd7aa8 SHA512 8fdfd776f998b82e9dcbb29a13e44b1ba060f2e4b03bae0167549fb58731f16e80e980f9636e0d7614270b8e6457779ac044b433c5c5d26d9fb72ea9e2d3cb02 WHIRLPOOL 6f2974c4e9d689052b36885c2b82425e346bdd7fd3a928a650f2c71debc7cd5e3c13504759fb5cec20641f4e6fdf35ce6a83fe3023f6efa00efff3da84b01954
DIST radvd-2.15.tar.gz 214256 SHA256 83dd770595e6182757fd652cfc46ee462b73d8d34ba0848a1d481c4d51143607 SHA512 51ed457814f32750f915e22556c739d0a574af6318d469ae77c42fb7dfce8752edc2b70e3dd910d46c6198a5a81e4be4611dd4e379920488f4d4427cda0a7ea0 WHIRLPOOL 3b8d9436b6c37088f7af0de06e12ef93a05ab2b71df0617e63d6ee106b336a22dfad3df07e6c0301da5bf4d8a646a2c2ce2a50d9ca991f541c51ce35ebb2b187
diff --git a/net-misc/radvd/files/radvd-2.10-musl-libc-fix.patch b/net-misc/radvd/files/radvd-2.10-musl-libc-fix.patch
deleted file mode 100644
index c44f28437be4..000000000000
--- a/net-misc/radvd/files/radvd-2.10-musl-libc-fix.patch
+++ /dev/null
@@ -1,87 +0,0 @@
-From 1d8973e13d89802eee0b648451e2b97ac65cf9e0 Mon Sep 17 00:00:00 2001
-From: Reuben Hawkins <reubenhwk@gmail.com>
-Date: Sat, 16 May 2015 09:27:38 -0700
-Subject: [PATCH] device-linux.c: IEEE 802.15.4 musl libc fix
-
-The ARPHRD_IEEE802154 macro's definition and name have been recently
-moved around from kernel header to glibc headers. Include linux/if_arp.h
-if available and then use either ARPHRD_IEEE802154_MONITOR or ARPHRD_IEEE802154_PHY,
-whichever comes first.
----
- configure.ac | 1 +
- device-linux.c | 8 ++++++++
- includes.h | 6 ++++++
- 3 files changed, 15 insertions(+)
-
-diff --git a/configure.ac b/configure.ac
-index 0c1efd6..4bd4c9d 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -156,6 +156,7 @@ AC_HEADER_STDC
- AC_CHECK_HEADERS( \
- getopt.h \
- ifaddrs.h \
-+ linux/if_arp.h \
- machine/limits.h \
- machine/param.h \
- net/if_arp.h \
-diff --git a/device-linux.c b/device-linux.c
-index fa7d978..de83f2e 100644
---- a/device-linux.c
-+++ b/device-linux.c
-@@ -79,10 +79,12 @@ int update_device_info(int sock, struct Interface *iface)
- iface->sllao.if_maxmtu = -1;
- break;
- #endif /* ARPHDR_ARCNET */
-+#ifdef ARPHRD_IEEE802154
- case ARPHRD_IEEE802154:
- iface->sllao.if_hwaddr_len = 64;
- iface->sllao.if_prefix_len = 64;
- break;
-+#endif
- default:
- iface->sllao.if_hwaddr_len = -1;
- iface->sllao.if_prefix_len = -1;
-@@ -371,9 +373,15 @@ static char const *hwstr(unsigned short sa_family)
- case ARPHRD_IEEE802154:
- rc = "ARPHRD_IEEE802154";
- break;
-+#if ARPHRD_IEEE802154_MONITOR
-+ case ARPHRD_IEEE802154_MONITOR:
-+ rc = "ARPHRD_IEEE802154_MONITOR";
-+ break;
-+#elif ARPHRD_IEEE802154_PHY
- case ARPHRD_IEEE802154_PHY:
- rc = "ARPHRD_IEEE802154_PHY";
- break;
-+#endif
- case ARPHRD_VOID:
- rc = "ARPHRD_VOID";
- break;
-diff --git a/includes.h b/includes.h
-index 39a36d2..d2449c4 100644
---- a/includes.h
-+++ b/includes.h
-@@ -81,9 +81,11 @@
- #ifdef HAVE_NET_IF_DL_H
- #include <net/if_dl.h>
- #endif
-+
- #ifdef HAVE_NET_IF_TYPES_H
- #include <net/if_types.h>
- #endif
-+
- #if defined(HAVE_NET_IF_ARP_H) && !defined(ARPHRD_ETHER)
- #include <net/if_arp.h>
- #endif /* defined(HAVE_NET_IF_ARP_H) && !defined(ARPHRD_ETHER) */
-@@ -100,3 +102,7 @@
- #include <ifaddrs.h>
- #endif
-
-+#ifdef HAVE_LINUX_IF_ARP_H
-+#include <linux/if_arp.h>
-+#endif
-+
---
-2.3.6
-
diff --git a/net-misc/radvd/radvd-2.12.ebuild b/net-misc/radvd/radvd-2.12.ebuild
deleted file mode 100644
index 69d0543d4e95..000000000000
--- a/net-misc/radvd/radvd-2.12.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit systemd user eutils readme.gentoo
-
-DESCRIPTION="Linux IPv6 Router Advertisement Daemon"
-HOMEPAGE="http://v6web.litech.org/radvd/"
-SRC_URI="http://v6web.litech.org/radvd/dist/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ppc ~sparc x86 ~x86-fbsd"
-IUSE="kernel_FreeBSD selinux test"
-
-CDEPEND="dev-libs/libdaemon"
-DEPEND="${CDEPEND}
- sys-devel/bison
- sys-devel/flex
- virtual/pkgconfig
- test? ( dev-libs/check )"
-RDEPEND="${CDEPEND}
- selinux? ( sec-policy/selinux-radvd )
-"
-DOCS=( CHANGES README TODO radvd.conf.example )
-
-pkg_setup() {
- enewgroup radvd
- enewuser radvd -1 -1 /dev/null radvd
-
- # force ownership of radvd user and group (bug #19647)
- [[ -d ${ROOT}/var/run/radvd ]] && chown radvd:radvd "${ROOT}"/var/run/radvd
-}
-
-src_configure() {
- econf --with-pidfile=/var/run/radvd/radvd.pid \
- --disable-silent-rules \
- $(use_with test check)
-}
-
-src_install() {
- default
-
- dohtml INTRO.html
-
- newinitd "${FILESDIR}"/${PN}-1.9.1.init ${PN}
- newconfd "${FILESDIR}"/${PN}.conf ${PN}
-
- systemd_dounit "${FILESDIR}"/${PN}.service
- systemd_newtmpfilesd "${FILESDIR}"/${PN}.tmpfilesd ${PN}.conf
-
- if use kernel_FreeBSD ; then
- sed -i -e \
- 's/^SYSCTL_FORWARD=.*$/SYSCTL_FORWARD=net.inet6.ip6.forwarding/g' \
- "${D}"/etc/init.d/${PN} || die
- fi
-
- readme.gentoo_create_doc
-}
-
-DISABLE_AUTOFORMATTING=1
-DOC_CONTENTS="Please create a configuratoion ${ROOT}etc/radvd.conf.
-See ${ROOT}usr/share/doc/${PF} for an example.
-
-grsecurity users should allow a specific group to read /proc
-and add the radvd user to that group, otherwise radvd may
-segfault on startup."