2024-09-23 12:56:41 +02:00
|
|
|
|
# Copyright 2020-2024 Gentoo Authors
|
2023-11-04 13:27:15 +01:00
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
2024-09-23 12:56:41 +02:00
|
|
|
|
EAPI=8
|
2023-11-04 13:27:15 +01:00
|
|
|
|
|
|
|
|
|
inherit systemd
|
|
|
|
|
|
|
|
|
|
MY_PV="${PV/_p/p}"
|
|
|
|
|
MY_P="${PN}-${MY_PV}"
|
|
|
|
|
|
|
|
|
|
DESCRIPTION="OpenBGPD is a free implementation of BGPv4"
|
|
|
|
|
HOMEPAGE="http://www.openbgpd.org/index.html"
|
|
|
|
|
SRC_URI="mirror://openbsd/OpenBGPD/${PN}-${MY_PV}.tar.gz"
|
|
|
|
|
|
2024-09-23 12:56:41 +02:00
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
|
|
2023-11-04 13:27:15 +01:00
|
|
|
|
LICENSE="ISC"
|
|
|
|
|
SLOT="0"
|
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
|
!!net-misc/frr
|
|
|
|
|
acct-group/_bgpd
|
|
|
|
|
acct-user/_bgpd
|
2024-09-23 12:56:41 +02:00
|
|
|
|
dev-libs/libevent
|
|
|
|
|
net-libs/libmnl
|
2023-11-04 13:27:15 +01:00
|
|
|
|
"
|
2024-09-23 12:56:41 +02:00
|
|
|
|
DEPEND="${RDEPEND}"
|
2023-11-04 13:27:15 +01:00
|
|
|
|
BDEPEND="
|
2024-09-23 12:56:41 +02:00
|
|
|
|
dev-build/libtool
|
2023-11-04 13:27:15 +01:00
|
|
|
|
"
|
|
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
|
default
|
|
|
|
|
|
|
|
|
|
newinitd "${FILESDIR}/${PN}-init.d" bgpd
|
|
|
|
|
newconfd "${FILESDIR}/${PN}-conf.d" bgpd
|
|
|
|
|
systemd_newunit "${FILESDIR}/${PN}.service" bgpd.service
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pkg_postinst() {
|
|
|
|
|
if [ -z "${REPLACING_VERSIONS}" ]; then
|
|
|
|
|
ewarn ""
|
|
|
|
|
ewarn "OpenBGPD portable (not running on OpenBSD) can’t export its RIB"
|
|
|
|
|
ewarn "to the FIB. It’s only suitable for route-reflectors or"
|
|
|
|
|
ewarn "route-servers."
|
|
|
|
|
ewarn ""
|
|
|
|
|
fi
|
|
|
|
|
}
|