summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/dhcpcd/files')
-rw-r--r--net-misc/dhcpcd/files/dhcpcd-5.6.2-if-bsd.patch30
-rw-r--r--net-misc/dhcpcd/files/dhcpcd.initd-127
2 files changed, 0 insertions, 57 deletions
diff --git a/net-misc/dhcpcd/files/dhcpcd-5.6.2-if-bsd.patch b/net-misc/dhcpcd/files/dhcpcd-5.6.2-if-bsd.patch
deleted file mode 100644
index c24a2fa3d894..000000000000
--- a/net-misc/dhcpcd/files/dhcpcd-5.6.2-if-bsd.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-Fixes building on FreeBSD.
-https://bugs.gentoo.org/show_bug.cgi?id=438942
-
-From upstream:
-http://roy.marples.name/projects/dhcpcd/changeset/4d6bbabd08d1a1696f5db67af60c9883c4c367f4
-
-git-committer: Roy Marples <roy@marples.name> (10/24/12 13:59:20)
-Message: Fix compile fr systems without RTF_CLONING such as FreeBSD-8
-
-
-Index: if-bsd.c
-===================================================================
---- if-bsd.c (revision 84ad87e1287453ca05a7cbd5775322374e07a7ee)
-+++ if-bsd.c (revision 4d6bbabd08d1a1696f5db67af60c9883c4c367f4)
-@@ -363,6 +363,8 @@
- IN6_IS_ADDR_UNSPECIFIED(&rt->net))
- rtm.hdr.rtm_flags |= RTF_GATEWAY;
-+#ifdef RTF_CLONING
- else
- rtm.hdr.rtm_flags |= RTF_CLONING;
-+#endif
-
- rtm.hdr.rtm_addrs = RTA_DST | RTA_GATEWAY | RTA_NETMASK;
-@@ -371,5 +373,5 @@
-
- ADDADDR(&rt->dest);
-- if (rtm.hdr.rtm_flags & (RTF_HOST | RTF_CLONING)) {
-+ if (!(rtm.hdr.rtm_flags & RTF_GATEWAY)) {
- /* Make us a link layer socket for the host gateway */
- memset(&su, 0, sizeof(su));
diff --git a/net-misc/dhcpcd/files/dhcpcd.initd-1 b/net-misc/dhcpcd/files/dhcpcd.initd-1
deleted file mode 100644
index 5d350c078391..000000000000
--- a/net-misc/dhcpcd/files/dhcpcd.initd-1
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2011 Roy Marples <roy@marples.name>
-# All rights reserved. Released under the 2-clause BSD license.
-
-command=/sbin/dhcpcd
-pidfile=/var/run/dhcpcd.pid
-command_args=-q
-name="DHCP Client Daemon"
-
-depend()
-{
- if [ "${RC_VERSION:-0}" != "0" ]; then
- provide net
- need localmount
- use logger network
- after bootmisc modules
- before dns
- fi
-}
-
-if [ "${RC_VERSION:-0}" = "0" ]; then
- start()
- {
- eerror "This script cannot be used for baselayout-1."
- return 1
- }
-fi