diff options
author | Aaron Bauman <bman@gentoo.org> | 2020-12-02 10:17:01 -0500 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-12-02 10:17:01 -0500 |
commit | 78495fc91108ef2f974c6b44ba1c22752a0a9b54 (patch) | |
tree | d1ddc32d60c6581dfb39e804a51bed0bce891eec /net-misc/libteam | |
parent | dev-python/aws-sam-translator: Add missing pyyaml dep (diff) | |
download | gentoo-78495fc91108ef2f974c6b44ba1c22752a0a9b54.tar.gz gentoo-78495fc91108ef2f974c6b44ba1c22752a0a9b54.tar.bz2 gentoo-78495fc91108ef2f974c6b44ba1c22752a0a9b54.zip |
net-misc/libteam: drop old
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'net-misc/libteam')
-rw-r--r-- | net-misc/libteam/Manifest | 1 | ||||
-rw-r--r-- | net-misc/libteam/libteam-1.22.ebuild | 54 |
2 files changed, 0 insertions, 55 deletions
diff --git a/net-misc/libteam/Manifest b/net-misc/libteam/Manifest index c939387775fd..51a524d4b820 100644 --- a/net-misc/libteam/Manifest +++ b/net-misc/libteam/Manifest @@ -1,2 +1 @@ -DIST libteam-1.22.tar.gz 544302 BLAKE2B 8c20471506546de6f45989513ed22fe79f694febacbf1a0caeda872e6e8b815f9813cff682eb11060c3bb1b2ef12149f34d15c201a6b50fe438bf9776abda987 SHA512 7f54b7e87c1d3a5150e598052126e1c2f5396096450a68a923c9cfb7bcc48b724cddc61f55e34d1b5df103f5473367eb268877100f10c58d53fc3eaf24749d5b DIST libteam-1.31.tar.gz 176331 BLAKE2B 77aae059b37a018e5503642138aa469f0769d305ec2043642fb1d84ff1d05f6eb90083946ca113cf3f9c21a09a17b3fbda327b714eb96743a10e99b89d5d5c83 SHA512 1382cc3b0a2d0211f33e506e8a6fd8a1847398fa5bba56abfc959da70bcc8417cf1dba9e26a777da5729eb237f51a66b3f9cfa33fb830ed684aa076f4c8cec9e diff --git a/net-misc/libteam/libteam-1.22.ebuild b/net-misc/libteam/libteam-1.22.ebuild deleted file mode 100644 index 67f37cc9413f..000000000000 --- a/net-misc/libteam/libteam-1.22.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -AUTOTOOLS_IN_SOURCE_BUILD=1 -inherit autotools-utils linux-info - -DESCRIPTION="Library and tools set for controlling team network device" -HOMEPAGE="http://libteam.org" -SRC_URI="http://libteam.org/files/${P}.tar.gz" - -LICENSE="LGPL-2.1+" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ppc ppc64 x86" -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_configure() { - local myeconfargs=( - $(use_enable debug) - $(use_enable syslog logging) - $(use_enable dbus) - $(use_enable zmq) - ) - autotools-utils_src_configure -} - -src_install() { - autotools-utils_src_install - - insinto /etc/dbus-1/system.d - doins teamd/dbus/teamd.conf - - if use examples; then - docinto examples - dodoc teamd/example_configs/* - fi -} |