SwordArMor-gentoo-overlay/net-misc/openbgpd/openbgpd-6.6_p0.ebuild

54 lines
954 B
Bash
Raw Normal View History

# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
MY_PV="${PV/_p/p}"
#MY_PN="openbgpd-portable"
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"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="
${DEPEND}
acct-group/_bgpd
acct-user/_bgpd
"
BDEPEND="
sys-devel/libtool
"
src_unpack() {
default
mv "${WORKDIR}/${MY_P}" "${S}"
}
src_prepare() {
eapply -p0 "${FILESDIR}/${P}-config.c.patch"
default
}
src_install() {
default
newinitd "${FILESDIR}/${PN}-init.d" bgpd
newconfd "${FILESDIR}/${PN}-conf.d" bgpd
}
pkg_postinst() {
ewarn ""
ewarn "OpenBGPD portable (not running on OpenBSD) cant export its RIB to"
ewarn "the FIB. Its only suitable for route-reflectors or route-servers."
ewarn ""
}