89 lines
1.7 KiB
Bash
89 lines
1.7 KiB
Bash
# Copyright 2020-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools fcaps
|
|
|
|
DESCRIPTION="A routing daemon implementing OSPF, RIPv2 & BGP for IPv4 & IPv6"
|
|
HOMEPAGE="https://bird.network.cz"
|
|
MY_PV="${PV/_/}"
|
|
SRC_URI="https://bird.network.cz/download/3.0pre/bird-${MY_PV}.tar.gz"
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
IUSE="+client custom-cflags debug libssh"
|
|
|
|
RDEPEND="
|
|
client? (
|
|
sys-libs/ncurses:=
|
|
sys-libs/readline:=
|
|
)
|
|
filecaps? (
|
|
acct-group/bird
|
|
acct-user/bird
|
|
)
|
|
libssh? ( net-libs/libssh:= )"
|
|
BDEPEND="
|
|
sys-devel/bison
|
|
sys-devel/flex
|
|
sys-devel/m4
|
|
"
|
|
|
|
FILECAPS=(
|
|
CAP_NET_ADMIN usr/sbin/bird
|
|
CAP_NET_BIND_SERVICE usr/sbin/bird
|
|
CAP_NET_RAW usr/sbin/bird
|
|
)
|
|
|
|
S="${WORKDIR}/${PN}-${MY_PV}"
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
# This export makes compilation and test phases verbose
|
|
export VERBOSE=1
|
|
|
|
# lto must be enabled by default as bird is mono-threaded and use several
|
|
# optimisations to be fast, at it may very likely be exposed to several
|
|
# thounsand BGP updates per seconds
|
|
# Although, we make it possible to desactivate it if wanted
|
|
if use custom-cflags; then
|
|
export bird_cv_c_lto=no
|
|
fi
|
|
|
|
local myargs=(
|
|
--localstatedir="${EPREFIX}/var"
|
|
$(use_enable client)
|
|
$(use_enable debug)
|
|
$(use_enable libssh)
|
|
)
|
|
|
|
econf "${myargs[@]}"
|
|
}
|
|
|
|
src_install() {
|
|
if use client; then
|
|
dobin birdc
|
|
fi
|
|
|
|
dobin birdcl
|
|
dosbin bird
|
|
|
|
newinitd "${FILESDIR}/initd-${PN}-2" ${PN}
|
|
newconfd "${FILESDIR}/confd-${PN}-2" ${PN}
|
|
|
|
dodoc doc/bird.conf.example
|
|
}
|
|
|
|
pkg_postinst() {
|
|
use filecaps && \
|
|
einfo "If you want to run bird as non-root, edit"
|
|
einfo "'${EROOT}/etc/conf.d/bird' and set BIRD_GROUP and BIRD_USER with"
|
|
einfo "the wanted username."
|
|
}
|