2020-03-20 12:31:31 +01:00
|
|
|
|
# Copyright 2020 Gentoo Authors
|
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
2020-03-21 18:44:59 +01:00
|
|
|
|
inherit systemd
|
2020-03-20 12:31:31 +01:00
|
|
|
|
|
2020-03-21 16:42:06 +01:00
|
|
|
|
MY_PV="${PV/_p/p}"
|
|
|
|
|
MY_P="${PN}-${MY_PV}"
|
2020-03-20 12:31:31 +01:00
|
|
|
|
|
|
|
|
|
DESCRIPTION="OpenBGPD is a free implementation of BGPv4"
|
|
|
|
|
HOMEPAGE="http://www.openbgpd.org/index.html"
|
2020-03-21 16:42:06 +01:00
|
|
|
|
SRC_URI="mirror://openbsd/OpenBGPD/${PN}-${MY_PV}.tar.gz"
|
2020-03-20 12:31:31 +01:00
|
|
|
|
|
|
|
|
|
LICENSE="ISC"
|
|
|
|
|
SLOT="0"
|
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
|
|
DEPEND=""
|
|
|
|
|
RDEPEND="
|
|
|
|
|
${DEPEND}
|
2020-03-22 15:02:36 +01:00
|
|
|
|
!!net-misc/quagga
|
2020-03-20 12:31:31 +01:00
|
|
|
|
acct-group/_bgpd
|
|
|
|
|
acct-user/_bgpd
|
|
|
|
|
"
|
|
|
|
|
BDEPEND="
|
|
|
|
|
sys-devel/libtool
|
|
|
|
|
"
|
|
|
|
|
|
2020-03-24 21:16:41 +01:00
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
2020-03-20 12:31:31 +01:00
|
|
|
|
|
2020-03-24 21:16:41 +01:00
|
|
|
|
PATCHES=(
|
|
|
|
|
"${FILESDIR}/${P}-config.c.patch"
|
|
|
|
|
)
|
2020-03-20 12:31:31 +01:00
|
|
|
|
|
2020-03-21 16:42:06 +01:00
|
|
|
|
src_install() {
|
2020-03-20 12:31:31 +01:00
|
|
|
|
default
|
2020-03-21 16:42:06 +01:00
|
|
|
|
|
|
|
|
|
newinitd "${FILESDIR}/${PN}-init.d" bgpd
|
|
|
|
|
newconfd "${FILESDIR}/${PN}-conf.d" bgpd
|
2020-03-21 18:44:59 +01:00
|
|
|
|
systemd_newunit "${FILESDIR}/${PN}.service" bgpd.service
|
2020-03-20 12:31:31 +01:00
|
|
|
|
}
|
2020-03-20 18:24:29 +01:00
|
|
|
|
|
|
|
|
|
pkg_postinst() {
|
2020-05-04 18:37:25 +02:00
|
|
|
|
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
|
2020-03-20 18:24:29 +01:00
|
|
|
|
}
|