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 autotools git-r3 systemd
|
2020-03-20 12:31:31 +01:00
|
|
|
|
|
|
|
|
|
DESCRIPTION="OpenBGPD is a free implementation of BGPv4"
|
2020-05-04 18:37:25 +02:00
|
|
|
|
HOMEPAGE="http://www.openbgpd.org/"
|
|
|
|
|
EGIT_REPO_URI="https://github.com/${PN}-portable/${PN}-portable.git"
|
2020-03-20 12:31:31 +01:00
|
|
|
|
|
|
|
|
|
LICENSE="ISC"
|
|
|
|
|
SLOT="0"
|
2020-03-21 16:42:06 +01:00
|
|
|
|
KEYWORDS=""
|
2020-03-20 12:31:31 +01:00
|
|
|
|
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="
|
|
|
|
|
dev-util/byacc
|
|
|
|
|
sys-devel/libtool
|
|
|
|
|
"
|
|
|
|
|
|
2020-05-04 18:37:25 +02:00
|
|
|
|
PATCHES=(
|
|
|
|
|
"${FILESDIR}/${P}-update.patch"
|
|
|
|
|
"${FILESDIR}/${P}-config.c.patch"
|
|
|
|
|
)
|
|
|
|
|
|
2020-03-20 12:31:31 +01:00
|
|
|
|
src_unpack() {
|
2020-03-24 20:51:33 +01:00
|
|
|
|
git-r3_src_unpack
|
|
|
|
|
|
|
|
|
|
cd "${WORKDIR}"
|
2020-03-20 12:31:31 +01:00
|
|
|
|
|
2020-03-24 20:51:33 +01:00
|
|
|
|
EGIT_REPO_URI="https://github.com/openbgpd-portable/openbgpd-openbsd.git"
|
2020-03-20 12:31:31 +01:00
|
|
|
|
EGIT_BRANCH=$(cat "${S}"/OPENBSD_BRANCH)
|
2020-03-24 20:51:33 +01:00
|
|
|
|
EGIT_CHECKOUT_DIR="${S}/openbsd"
|
2020-03-20 12:31:31 +01:00
|
|
|
|
git-r3_fetch
|
|
|
|
|
git-r3_checkout
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
|
default
|
|
|
|
|
./autogen.sh
|
|
|
|
|
eautoreconf
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
|
export YACC=byacc
|
|
|
|
|
default
|
|
|
|
|
}
|
2020-03-20 18:24:29 +01:00
|
|
|
|
|
2020-03-21 16:42:06 +01:00
|
|
|
|
src_install() {
|
|
|
|
|
default
|
|
|
|
|
|
|
|
|
|
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-21 16:42:06 +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
|
|
|
|
}
|