Diff tipcutils-2.0.3 with a tipcutils-3.0.6

/usr/portage/net-misc/tipcutils/tipcutils-3.0.6.ebuild 2023-10-09 14:52:34.712368482 +0300
1 1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
DESCRIPTION="Utilities for TIPC (Transparent Inter-Process Communication)"
7 7
HOMEPAGE="https://tipc.sourceforge.net"
8
SRC_URI="mirror://sourceforge/tipc/${P}.tar.gz"
8
SRC_URI="mirror://sourceforge/tipc/${P/-/_}.tgz"
9
S="${WORKDIR}"/${PN}
9 10

  
10 11
LICENSE="|| ( BSD-2 GPL-2 )"
11 12
SLOT="0"
12 13
KEYWORDS="~amd64 ~x86"
13 14

  
14
DEPEND=">=sys-kernel/linux-headers-2.6.39"
15
RDEPEND="
16
	dev-libs/libdaemon:=
17
	net-libs/libmnl:=
18
"
19
DEPEND="
20
	${RDEPEND}
21
	>=sys-kernel/linux-headers-2.6.39
22
"
15 23

  
16
DOCS=( README )
24
src_configure() {
25
	CONFIG_SHELL="${BROOT}"/bin/bash econf
26
}
27

  
28
src_compile() {
29
	emake clean
30
	emake
31
}
Thank you!