diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2013-11-16 19:43:16 +0100 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-11-16 13:58:39 -0600 |
commit | 9aca669283c47ce7910b1bcde6c4cae941d0349f (patch) | |
tree | bd81dd5e476854427218aece51e9a7b3a6c2ea9a /network/openvswitch | |
parent | 216951f8c84f7e09fdc1165a8446d6ff8c19efb8 (diff) | |
download | slackbuilds-9aca669283c47ce7910b1bcde6c4cae941d0349f.tar.gz |
network/openvswitch: Updated for version 2.0.0.
Install the kernel module only if not available
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'network/openvswitch')
-rw-r--r-- | network/openvswitch/openvswitch.SlackBuild | 13 | ||||
-rw-r--r-- | network/openvswitch/openvswitch.info | 6 |
2 files changed, 10 insertions, 9 deletions
diff --git a/network/openvswitch/openvswitch.SlackBuild b/network/openvswitch/openvswitch.SlackBuild index ac30050473..0cfd750534 100644 --- a/network/openvswitch/openvswitch.SlackBuild +++ b/network/openvswitch/openvswitch.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=openvswitch -VERSION=${VERSION:-1.9.0} +VERSION=${VERSION:-2.0.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -89,11 +89,12 @@ find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -mkdir -p $PKG/lib/modules/${KERNEL}/kernel/extra/openvswitch -install -m 644 datapath/linux/openvswitch.ko \ - $PKG/lib/modules/${KERNEL}/kernel/extra/openvswitch -install -m 644 datapath/linux/brcompat.ko \ - $PKG/lib/modules/${KERNEL}/kernel/extra/openvswitch +# install the kernel module only if not already available +if [ ! -f /lib/modules/$(uname -r)/kernel/net/openvswitch/openvswitch.ko ]; then + mkdir -p $PKG/lib/modules/${KERNEL}/kernel/extra/openvswitch + install -m 644 datapath/linux/openvswitch.ko \ + $PKG/lib/modules/${KERNEL}/kernel/extra/openvswitch +fi mkdir -p $PKG/etc/openvswitch $PKG/etc/rc.d $PKG/var/run/openvswitch sed -e "s,@DOCDIR@,/usr/doc/$PRGNAM-$VERSION,g" $CWD/rc.openvswitch \ diff --git a/network/openvswitch/openvswitch.info b/network/openvswitch/openvswitch.info index 236c893b8c..6ff583e32d 100644 --- a/network/openvswitch/openvswitch.info +++ b/network/openvswitch/openvswitch.info @@ -1,8 +1,8 @@ PRGNAM="openvswitch" -VERSION="1.9.0" +VERSION="2.0.0" HOMEPAGE="http://openvswitch.org" -DOWNLOAD="http://openvswitch.org/releases/openvswitch-1.9.0.tar.gz" -MD5SUM="e9004202b0e10c0de9870f19d2044f11" +DOWNLOAD="http://openvswitch.org/releases/openvswitch-2.0.0.tar.gz" +MD5SUM="7d7a58350e634e515e0fe43c64d64f44" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |