net-misc/libteam: add 1.23

Signed-off-by: Craig Andrews <candrews@gentoo.org>
This commit is contained in:
Craig Andrews
2023-09-05 10:48:27 -04:00
parent f571d35d15
commit 03ea5e5f07
2 changed files with 63 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST libteam-1.23.tar.gz 173445 BLAKE2B 143e43cb092ac9aab8b152101c4c91c995436a6b02cf85fb710fa095a0bbd46fe70666149cfa9d86135b5496dd0287296e55d68f511aa5965c1d4f22f61ded57 SHA512 f78ceca4606b93e75fafdd97aa3cc44153fc42d31209f216c3da9c71abf38a2e4a690c71b8631ae09e02d7285d6bbd8292983fdc69eb921b0537a75558bc89f5
DIST libteam-1.31.tar.gz 176331 BLAKE2B 77aae059b37a018e5503642138aa469f0769d305ec2043642fb1d84ff1d05f6eb90083946ca113cf3f9c21a09a17b3fbda327b714eb96743a10e99b89d5d5c83 SHA512 1382cc3b0a2d0211f33e506e8a6fd8a1847398fa5bba56abfc959da70bcc8417cf1dba9e26a777da5729eb237f51a66b3f9cfa33fb830ed684aa076f4c8cec9e

View File

@@ -0,0 +1,62 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools linux-info
if [[ ${PV} == *9999 ]] ; then
EGIT_REPO_URI="https://github.com/pirko/${PN}.git"
inherit git-r3
else
SRC_URI="https://github.com/jpirko/libteam/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64 ~arm arm64 ~loong ppc ppc64 ~riscv x86"
fi
DESCRIPTION="Library and tools set for controlling team network device"
HOMEPAGE="http://libteam.org"
LICENSE="LGPL-2.1+"
SLOT="0"
IUSE="dbus debug examples static-libs +syslog zmq"
DEPEND=">=dev-libs/jansson-2.4:=
dev-libs/libdaemon
>=dev-libs/libnl-3.2.19[utils]
dbus? ( sys-apps/dbus )
zmq? ( >=net-libs/zeromq-3.2.0 )
"
RDEPEND="${DEPEND}
syslog? ( virtual/logger )"
CONFIG_CHECK="~NET_TEAM ~NET_TEAM_MODE_ROUNDROBIN ~NET_TEAM_MODE_ACTIVEBACKUP ~NET_TEAM_MODE_BROADCAST ~NET_TEAM_MODE_RANDOM ~NET_TEAM_MODE_LOADBALANCE"
ERROR_NET_TEAM="NET_TEAM is not enabled in this kernel!
Only >=3.3.0 kernel version support in team mode"
DOCS=( README )
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
$(use_enable debug) \
$(use_enable syslog logging) \
$(use_enable dbus) \
$(use_enable zmq)
}
src_install() {
default
insinto /etc/dbus-1/system.d
doins teamd/dbus/teamd.conf
if use examples; then
docinto examples
dodoc teamd/example_configs/*
fi
}