diff options
author | mat <mat@FreeBSD.org> | 2016-03-18 00:20:07 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-03-18 00:20:07 +0800 |
commit | 330ddfabc1946b49aac33ffe38f96774c15e6078 (patch) | |
tree | ce1e9b2cb5b0f51cbf4dfcf2d785b6238ab67251 /net | |
parent | f58914cedf5bd420917c6429d607ca33fa917f1c (diff) | |
download | freebsd-ports-gnome-330ddfabc1946b49aac33ffe38f96774c15e6078.tar.gz freebsd-ports-gnome-330ddfabc1946b49aac33ffe38f96774c15e6078.tar.zst freebsd-ports-gnome-330ddfabc1946b49aac33ffe38f96774c15e6078.zip |
Update to 1.0.20160315.
PR: 208064
Submitted by: pi
Sponsored by: Absolight
Diffstat (limited to 'net')
-rw-r--r-- | net/quagga/Makefile | 3 | ||||
-rw-r--r-- | net/quagga/distinfo | 4 | ||||
-rw-r--r-- | net/quagga/files/patch-zebra_kernel__socket.c | 29 | ||||
-rw-r--r-- | net/quagga/pkg-plist | 5 |
4 files changed, 6 insertions, 35 deletions
diff --git a/net/quagga/Makefile b/net/quagga/Makefile index 787dd26d6f7b..5fec5d6d54a3 100644 --- a/net/quagga/Makefile +++ b/net/quagga/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= quagga -PORTVERSION= 0.99.24.1 -PORTREVISION= 2 +PORTVERSION= 1.0.20160315 CATEGORIES= net ipv6 MASTER_SITES= SAVANNAH diff --git a/net/quagga/distinfo b/net/quagga/distinfo index f715cca09924..4ca42d758e1b 100644 --- a/net/quagga/distinfo +++ b/net/quagga/distinfo @@ -1,2 +1,2 @@ -SHA256 (quagga-0.99.24.1.tar.xz) = 6fd6baadb136a801c29c1dd72d0fe69da9f19ae498e87bff7057778361e43b14 -SIZE (quagga-0.99.24.1.tar.xz) = 1779120 +SHA256 (quagga-1.0.20160315.tar.xz) = d284af5dd875dbba90ab875d40db5d68fdc9ede17a76f2af525f85344be56767 +SIZE (quagga-1.0.20160315.tar.xz) = 1819488 diff --git a/net/quagga/files/patch-zebra_kernel__socket.c b/net/quagga/files/patch-zebra_kernel__socket.c deleted file mode 100644 index 0c5e65f8bba5..000000000000 --- a/net/quagga/files/patch-zebra_kernel__socket.c +++ /dev/null @@ -1,29 +0,0 @@ -From 3e07588e6c2d11464b458cef3965ae31b5f99181 Mon Sep 17 00:00:00 2001 -From: Greg Troxel <gdt@ir.bbn.com> -Date: Mon, 23 Mar 2015 15:16:29 -0400 -Subject: [PATCH] Fix alignment assumptions on non-RT_ROUNDUP platforms. - -The comment said that apple uses int and BSD traditionally used long, -but the code was backwards. This fixes apple to be int, and otherwise -long. That should make FreeBSD, which aligns to long, work correctly, -even without using SA_SIZE. - -(cherry picked from commit 941789e470199df4f612368f669ecc0fd096fb9a) ---- - zebra/kernel_socket.c | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) - ---- zebra/kernel_socket.c.orig 2015-03-07 06:58:00 UTC -+++ zebra/kernel_socket.c -@@ -78,9 +78,9 @@ extern struct zebra_t zebrad; - - /* OS X (Xcode as of 2014-12) is known not to define RT_ROUNDUP */ - #ifdef __APPLE__ --#define ROUNDUP_TYPE long --#else - #define ROUNDUP_TYPE int -+#else -+#define ROUNDUP_TYPE long - #endif - - #define ROUNDUP(a) \ diff --git a/net/quagga/pkg-plist b/net/quagga/pkg-plist index 81afca378203..1198af0df1bb 100644 --- a/net/quagga/pkg-plist +++ b/net/quagga/pkg-plist @@ -1,9 +1,11 @@ %%PIMD%%bin/test_igmpv3_join bin/vtysh +bin/bgp_btoa include/quagga/buffer.h include/quagga/checksum.h include/quagga/command.h include/quagga/distribute.h +include/quagga/fifo.h include/quagga/filter.h include/quagga/getopt.h include/quagga/hash.h @@ -44,6 +46,7 @@ include/quagga/table.h include/quagga/thread.h include/quagga/vector.h include/quagga/version.h +include/quagga/vrf.h include/quagga/vty.h include/quagga/workqueue.h include/quagga/zassert.h @@ -72,7 +75,6 @@ man/man8/ripd.8.gz man/man8/ripngd.8.gz man/man8/watchquagga.8.gz man/man8/zebra.8.gz -sbin/babeld sbin/bgpd %%ISISD%%sbin/isisd sbin/ospf6d @@ -83,7 +85,6 @@ sbin/ripd sbin/ripngd sbin/watchquagga sbin/zebra -%%EXAMPLESDIR%%/babeld.conf.sample %%EXAMPLESDIR%%/bgpd.conf.sample %%EXAMPLESDIR%%/bgpd.conf.sample2 %%ISISD%%%%EXAMPLESDIR%%/isisd.conf.sample |