# Template file for 'openvswitch'
pkgname=openvswitch
version=3.6.1
revision=1
archs="i686* x86_64* ppc64*"
build_style=gnu-configure
configure_args="--with-rundir=/run/openvswitch"
pycompile_dirs="usr/share/openvswitch/python"
hostmakedepends="pkg-config python3"
makedepends="openssl-devel libcap-ng-devel"
depends="python3"
checkdepends="iproute2"
short_desc="Production quality, multilayer virtual switch"
maintainer="Orphaned <orphan@voidlinux.org>"
license="Apache-2.0"
homepage="http://openvswitch.org/"
distfiles="http://openvswitch.org/releases/${pkgname}-${version}.tar.gz"
checksum=78dc0a7208ae7ebe21b82e38e21abfe7162f9170ae101b71bc382be3d2d24d00
python_version=3
_completiondir="/usr/share/bash-completion/completions"
make_install_args+=" completiondir=${_completiondir}"
# test can hang in containers
make_check=extended

post_install() {
	for cmd in ovs-appctl ovs-vsctl; do
		chmod 0644 ${DESTDIR}${_completiondir}/$cmd-bashcomp.bash
		mv ${DESTDIR}${_completiondir}/$cmd-bashcomp.bash \
		   ${DESTDIR}${_completiondir}/$cmd
	done
	for cmd in ovs-ofctl ovs-dpctl ovsdb-tool; do
		ln -s ovs-appctl ${DESTDIR}${_completiondir}/$cmd
	done
	vsv ovsdb-server
	vsv ovs-vswitchd
}

openvswitch-devel_package() {
	depends="${sourcepkg}>=${version}_${revision}"
	short_desc+=" - development files"
	pkg_install() {
		vmove usr/include
		vmove usr/lib/pkgconfig
		vmove usr/lib/*.a
	}
}
