diff options
Diffstat (limited to 'net/bird/files')
-rw-r--r-- | net/bird/files/bird.in | 33 | ||||
-rw-r--r-- | net/bird/files/bird6.in | 33 | ||||
-rw-r--r-- | net/bird/files/patch-sysdep_unix_krt.h | 11 | ||||
-rw-r--r-- | net/bird/files/patch-tools-Makefile.in | 15 | ||||
-rw-r--r-- | net/bird/files/patch-tools-Rules.in | 14 |
5 files changed, 0 insertions, 106 deletions
diff --git a/net/bird/files/bird.in b/net/bird/files/bird.in deleted file mode 100644 index 8922eb3230b8..000000000000 --- a/net/bird/files/bird.in +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh - -# PROVIDE: bird dynamicrouting -# REQUIRE: LOGIN -# KEYWORD: shutdown -# -# Add the following lines to /etc/rc.conf.local or /etc/rc.conf -# to enable this service: -# -# bird_enable (bool): Set to NO by default. -# Set it to YES to enable bird. -# bird_config (path): Set to %%PREFIX%%/etc/bird.conf -# by default. -# - -. /etc/rc.subr - -name="bird" -rcvar=bird_enable - -command=%%PREFIX%%/sbin/${name} - -load_rc_config $name - -extra_commands="reload" - -: ${bird_enable="NO"} -: ${bird_config="%%PREFIX%%/etc/bird.conf"} -: ${bird_group="birdvty"} - -command_args="-P /var/run/${name}.pid -c $bird_config -g $bird_group" - -run_rc_command "$1" diff --git a/net/bird/files/bird6.in b/net/bird/files/bird6.in deleted file mode 100644 index 78a1ce92bda4..000000000000 --- a/net/bird/files/bird6.in +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh - -# PROVIDE: bird6 dynamicrouting -# REQUIRE: LOGIN -# KEYWORD: shutdown -# -# Add the following lines to /etc/rc.conf.local or /etc/rc.conf -# to enable this service: -# -# bird6_enable (bool): Set to NO by default. -# Set it to YES to enable bird6. -# bird6_config (path): Set to %%PREFIX%%/etc/bird6.conf -# by default. -# - -. /etc/rc.subr - -name="bird6" -rcvar=bird6_enable - -command=%%PREFIX%%/sbin/${name} - -load_rc_config $name - -extra_commands="reload" - -: ${bird6_enable="NO"} -: ${bird6_config="%%PREFIX%%/etc/bird6.conf"} -: ${bird6_group="birdvty"} - -command_args="-P /var/run/${name}.pid -c $bird6_config -g $bird6_group" - -run_rc_command "$1" diff --git a/net/bird/files/patch-sysdep_unix_krt.h b/net/bird/files/patch-sysdep_unix_krt.h deleted file mode 100644 index a877ca5bf974..000000000000 --- a/net/bird/files/patch-sysdep_unix_krt.h +++ /dev/null @@ -1,11 +0,0 @@ ---- sysdep/unix/krt.h.orig 2020-08-20 21:22:44 UTC -+++ sysdep/unix/krt.h -@@ -112,7 +112,7 @@ struct kif_proto { - struct kif_state sys; /* Sysdep state */ - }; - --struct kif_proto *kif_proto; -+extern struct kif_proto *kif_proto; - - #define KIF_CF ((struct kif_config *)p->p.cf) - diff --git a/net/bird/files/patch-tools-Makefile.in b/net/bird/files/patch-tools-Makefile.in deleted file mode 100644 index 6fafb2fc1761..000000000000 --- a/net/bird/files/patch-tools-Makefile.in +++ /dev/null @@ -1,15 +0,0 @@ ---- tools/Makefile.in.orig 2016-04-29 09:13:23 UTC -+++ tools/Makefile.in -@@ -77,11 +77,7 @@ install: all - if test -n "@CLIENT@" ; then \ - $(INSTALL_PROGRAM) $(exedir)/birdc $(DESTDIR)/$(sbindir)/birdc@SUFFIX@ ; \ - fi -- if ! test -f $(DESTDIR)/@CONFIG_FILE@ ; then \ -- $(INSTALL_DATA) $(srcdir)/doc/bird.conf.example $(DESTDIR)/@CONFIG_FILE@ ; \ -- else \ -- echo "Not overwriting old bird@SUFFIX@.conf" ; \ -- fi -+ $(INSTALL_DATA) $(srcdir)/doc/bird.conf.example $(DESTDIR)/@CONFIG_FILE@.example - - install-docs: - $(INSTALL) -d $(DESTDIR)/$(docdir) diff --git a/net/bird/files/patch-tools-Rules.in b/net/bird/files/patch-tools-Rules.in deleted file mode 100644 index 2b08b297d996..000000000000 --- a/net/bird/files/patch-tools-Rules.in +++ /dev/null @@ -1,14 +0,0 @@ ---- tools/Rules.in.orig 2016-04-29 09:13:23 UTC -+++ tools/Rules.in -@@ -66,10 +66,8 @@ else - subdir: all.o - - all.o: $(objs) --# $(LD) -r -o $@ $^ --# Changed to $(CC) because $(LD) has problems with crosscompiling - @echo LD -r -o $@ $^ -- @$(CC) -nostdlib -r -o $@ $^ -+ $(LD) -r -o $@ $^ - - endif - |