Index: head/net/openvswitch/Makefile =================================================================== --- head/net/openvswitch/Makefile (revision 393138) +++ head/net/openvswitch/Makefile (revision 393139) @@ -1,27 +1,30 @@ # Created by: Edward Tomasz Napierala # $FreeBSD$ PORTNAME= openvswitch -PORTVERSION= 2.3.1 +PORTVERSION= 2.3.2 CATEGORIES= net MASTER_SITES= http://openvswitch.org/releases/ MAINTAINER= kevlo@FreeBSD.org COMMENT= Production quality, multilayer virtual switch LICENSE= APACHE20 + +BROKEN_FreeBSD_8= does not build on FreeBSD < 10.x +BROKEN_FreeBSD_9= does not build on FreeBSD < 10.x USES= cpe gmake libtool perl5 pkgconfig python USE_OPENSSL= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-shared --localstatedir=/var \ --with-dbdir=/var/db/${PORTNAME} \ --with-openssl=${OPENSSLBASE} USE_RC_SUBR= ovs-vswitchd ovsdb-server LDFLAGS+= -lpthread post-install: ${INSTALL_DATA} ${WRKSRC}/vswitchd/vswitch.ovsschema ${STAGEDIR}${PREFIX}/share/openvswitch/ .include Index: head/net/openvswitch/distinfo =================================================================== --- head/net/openvswitch/distinfo (revision 393138) +++ head/net/openvswitch/distinfo (revision 393139) @@ -1,2 +1,2 @@ -SHA256 (openvswitch-2.3.1.tar.gz) = 21174901c311d54703b4a7f498be0c42e5d2cc68bdecb0090dbb555e2af4bcd2 -SIZE (openvswitch-2.3.1.tar.gz) = 3266916 +SHA256 (openvswitch-2.3.2.tar.gz) = 386b11df94d06c68d391ee4091832360095bd3a14c72d454325fab284dad9887 +SIZE (openvswitch-2.3.2.tar.gz) = 3277164 Index: head/net/openvswitch/files/patch-lib-netdev-bsd.c =================================================================== --- head/net/openvswitch/files/patch-lib-netdev-bsd.c (revision 393138) +++ head/net/openvswitch/files/patch-lib-netdev-bsd.c (nonexistent) @@ -1,24 +0,0 @@ ---- lib/netdev-bsd.c.orig 2015-04-08 13:49:06.863643000 +0800 -+++ lib/netdev-bsd.c 2015-04-08 13:50:53.973989000 +0800 -@@ -1771,7 +1771,7 @@ - ifr_get_flags(const struct ifreq *ifr) - { - #ifdef HAVE_STRUCT_IFREQ_IFR_FLAGSHIGH -- return (ifr->ifr_flagshigh << 16) | ifr->ifr_flags; -+ return (ifr->ifr_flagshigh << 16) | (ifr->ifr_flags & 0xffff); - #else - return ifr->ifr_flags; - #endif -@@ -1780,9 +1780,11 @@ - static void - ifr_set_flags(struct ifreq *ifr, int flags) - { -- ifr->ifr_flags = flags; - #ifdef HAVE_STRUCT_IFREQ_IFR_FLAGSHIGH -+ ifr->ifr_flags = flags & 0xffff; - ifr->ifr_flagshigh = flags >> 16; -+#else -+ ifr->ifr_flags = flags; - #endif - } - Property changes on: head/net/openvswitch/files/patch-lib-netdev-bsd.c ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/net/openvswitch/pkg-plist =================================================================== --- head/net/openvswitch/pkg-plist (revision 393138) +++ head/net/openvswitch/pkg-plist (revision 393139) @@ -1,119 +1,119 @@ bin/ovs-appctl bin/ovs-benchmark bin/ovs-dpctl bin/ovs-dpctl-top bin/ovs-l3ping bin/ovs-ofctl bin/ovs-parse-backtrace bin/ovs-pcap bin/ovs-pki bin/ovs-tcpundump bin/ovs-test bin/ovs-vlan-test bin/ovs-vsctl bin/ovsdb-client bin/ovsdb-tool bin/vtep-ctl -lib/libofproto-2.3.1.so +lib/libofproto-2.3.2.so lib/libofproto.a lib/libofproto.so -lib/libopenvswitch-2.3.1.so +lib/libopenvswitch-2.3.2.so lib/libopenvswitch.a lib/libopenvswitch.so -lib/libovsdb-2.3.1.so +lib/libovsdb-2.3.2.so lib/libovsdb.a lib/libovsdb.so -lib/libsflow-2.3.1.so +lib/libsflow-2.3.2.so lib/libsflow.a lib/libsflow.so man/man1/ovs-benchmark.1.gz man/man1/ovs-pcap.1.gz man/man1/ovs-tcpundump.1.gz man/man1/ovsdb-client.1.gz man/man1/ovsdb-server.1.gz man/man1/ovsdb-tool.1.gz man/man5/ovs-vswitchd.conf.db.5.gz man/man5/vtep.5.gz man/man8/ovs-appctl.8.gz man/man8/ovs-bugtool.8.gz man/man8/ovs-ctl.8.gz man/man8/ovs-dpctl-top.8.gz man/man8/ovs-dpctl.8.gz man/man8/ovs-l3ping.8.gz man/man8/ovs-ofctl.8.gz man/man8/ovs-parse-backtrace.8.gz man/man8/ovs-pki.8.gz man/man8/ovs-test.8.gz man/man8/ovs-vlan-bug-workaround.8.gz man/man8/ovs-vlan-test.8.gz man/man8/ovs-vsctl.8.gz man/man8/ovs-vswitchd.8.gz man/man8/vtep-ctl.8.gz sbin/ovs-bugtool sbin/ovs-vswitchd sbin/ovsdb-server %%DATADIR%%/bugtool-plugins/kernel-info/openvswitch.xml %%DATADIR%%/bugtool-plugins/network-status/openvswitch.xml %%DATADIR%%/bugtool-plugins/system-configuration.xml %%DATADIR%%/bugtool-plugins/system-configuration/openvswitch.xml %%DATADIR%%/bugtool-plugins/system-logs/openvswitch.xml %%DATADIR%%/python/ovs/__init__.py %%DATADIR%%/python/ovs/daemon.py %%DATADIR%%/python/ovs/db/__init__.py %%DATADIR%%/python/ovs/db/data.py %%DATADIR%%/python/ovs/db/error.py %%DATADIR%%/python/ovs/db/idl.py %%DATADIR%%/python/ovs/db/parser.py %%DATADIR%%/python/ovs/db/schema.py %%DATADIR%%/python/ovs/db/types.py %%DATADIR%%/python/ovs/dirs.py %%DATADIR%%/python/ovs/fatal_signal.py %%DATADIR%%/python/ovs/json.py %%DATADIR%%/python/ovs/jsonrpc.py %%DATADIR%%/python/ovs/ovsuuid.py %%DATADIR%%/python/ovs/poller.py %%DATADIR%%/python/ovs/process.py %%DATADIR%%/python/ovs/reconnect.py %%DATADIR%%/python/ovs/socket_util.py %%DATADIR%%/python/ovs/stream.py %%DATADIR%%/python/ovs/timeval.py %%DATADIR%%/python/ovs/unixctl/__init__.py %%DATADIR%%/python/ovs/unixctl/client.py %%DATADIR%%/python/ovs/unixctl/server.py %%DATADIR%%/python/ovs/util.py %%DATADIR%%/python/ovs/version.py %%DATADIR%%/python/ovs/vlog.py %%DATADIR%%/python/ovstest/__init__.py %%DATADIR%%/python/ovstest/args.py %%DATADIR%%/python/ovstest/rpcserver.py %%DATADIR%%/python/ovstest/tcp.py %%DATADIR%%/python/ovstest/tests.py %%DATADIR%%/python/ovstest/udp.py %%DATADIR%%/python/ovstest/util.py %%DATADIR%%/python/ovstest/vswitch.py %%DATADIR%%/scripts/ovs-bugtool-bfd-show %%DATADIR%%/scripts/ovs-bugtool-bond-show %%DATADIR%%/scripts/ovs-bugtool-cfm-show %%DATADIR%%/scripts/ovs-bugtool-coverage-show %%DATADIR%%/scripts/ovs-bugtool-daemons-ver %%DATADIR%%/scripts/ovs-bugtool-lacp-show %%DATADIR%%/scripts/ovs-bugtool-list-dbs %%DATADIR%%/scripts/ovs-bugtool-memory-show %%DATADIR%%/scripts/ovs-bugtool-ovs-appctl-dpif %%DATADIR%%/scripts/ovs-bugtool-ovs-ofctl-dump-flows %%DATADIR%%/scripts/ovs-bugtool-ovs-ofctl-show %%DATADIR%%/scripts/ovs-bugtool-ovsdb-dump %%DATADIR%%/scripts/ovs-bugtool-tc-class-show %%DATADIR%%/scripts/ovs-bugtool-vsctl-show %%DATADIR%%/scripts/ovs-check-dead-ifs %%DATADIR%%/scripts/ovs-ctl %%DATADIR%%/scripts/ovs-lib %%DATADIR%%/scripts/ovs-save %%DATADIR%%/scripts/ovs-vtep %%DATADIR%%/vswitch.ovsschema %%DATADIR%%/vtep.ovsschema +@dir /var/db/openvswitch @dir /var/lib/openvswitch/pki @dir /var/lib/openvswitch -@dir /var/lib @dir /var/log/openvswitch @dir /var/run/openvswitch