blob: 76245a3ea31ebc19884a2fe554c3f0d345694f90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit systemd bash-completion-r1 autotools tmpfiles
DESCRIPTION="Implementation of IEEE 802.1ab (LLDP)"
HOMEPAGE="https://lldpd.github.io/"
SRC_URI="https://github.com/lldpd/lldpd/releases/download/${PV}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0/4.9.1"
KEYWORDS="~amd64 ~x86"
IUSE="cdp doc +dot1 +dot3 edp fdp graph +lldpmed old-kernel sanitizers
seccomp sonmp snmp static-libs test readline valgrind xml"
RESTRICT="!test? ( test )"
RDEPEND="
acct-group/lldpd
acct-user/lldpd
dev-libs/libbsd
>=dev-libs/libevent-2.1.11:=
sys-libs/readline:0=
seccomp? ( sys-libs/libseccomp:= )
snmp? ( net-analyzer/net-snmp:=[extensible(+)] )
xml? ( dev-libs/libxml2:= )
"
DEPEND="${RDEPEND}
test? ( dev-libs/check )
valgrind? ( dev-util/valgrind )
"
BDEPEND="virtual/pkgconfig
doc? (
graph? ( app-doc/doxygen[dot,doc] )
!graph? ( app-doc/doxygen )
)
"
REQUIRED_USE="
graph? ( doc )
test? ( snmp sanitizers )
"
# tests need root
RESTRICT+=" test"
PATCHES=(
"${FILESDIR}"/${PN}-1.0.16-configure-clang16.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
export ac_cv_header_valgrind_valgrind_h=$(usex valgrind)
econf \
--without-embedded-libevent \
--with-privsep-user=${PN} \
--with-privsep-group=${PN} \
--with-privsep-chroot=/run/${PN} \
--with-lldpd-ctl-socket=/run/${PN}.socket \
--with-lldpd-pid-file=/run/${PN}.pid \
$(use_enable cdp) \
$(use_enable doc doxygen-doc) \
$(use_enable doc doxygen-man) \
$(use_enable doc doxygen-pdf) \
$(use_enable doc doxygen-html) \
$(use_enable dot1) \
$(use_enable dot3) \
$(use_enable edp) \
$(use_enable fdp) \
$(use_enable graph doxygen-dot) \
$(use_enable lldpmed) \
$(use_enable old-kernel oldies) \
$(use_enable sonmp) \
$(use_enable static-libs static) \
$(use_with readline) \
$(use_enable sanitizers) \
$(use_with seccomp) \
$(use_with snmp) \
$(use_with xml)
}
src_compile() {
emake
use doc && emake doxygen-doc
}
src_install() {
emake DESTDIR="${D}" install
find "${D}" -name '*.la' -delete || die
newinitd "${FILESDIR}"/${PN}-initd-5 ${PN}
newconfd "${FILESDIR}"/${PN}-confd-1 ${PN}
newbashcomp src/client/completion/lldpcli lldpcli
use doc && dodoc -r doxygen/html
insinto /etc
doins "${FILESDIR}/lldpd.conf"
keepdir /etc/${PN}.d
systemd_dounit "${FILESDIR}"/${PN}.service
newtmpfiles "${FILESDIR}"/tmpfilesd ${PN}.conf
}
pkg_postinst() {
tmpfiles_process ${PN}.conf
}
|