From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3C119138350 for ; Tue, 24 Mar 2020 20:01:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6FB23E08A8; Tue, 24 Mar 2020 20:01:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 506B8E08A8 for ; Tue, 24 Mar 2020 20:01:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B041934EB60 for ; Tue, 24 Mar 2020 20:01:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C93E9C for ; Tue, 24 Mar 2020 20:01:23 +0000 (UTC) From: "Alarig Le Lay" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alarig Le Lay" Message-ID: <1585080077.41e3b454c6b1b034b60f6073769040102e0021c9.AlarigLeLay@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-misc/openbgpd/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-misc/openbgpd/openbgpd-9999.ebuild X-VCS-Directories: net-misc/openbgpd/ X-VCS-Committer: AlarigLeLay X-VCS-Committer-Name: Alarig Le Lay X-VCS-Revision: 41e3b454c6b1b034b60f6073769040102e0021c9 X-VCS-Branch: dev Date: Tue, 24 Mar 2020 20:01:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b612fd3a-c43f-4be6-a78f-7ba431b05ab4 X-Archives-Hash: 299ad61755e181dcddd7087c9ff57e23 commit: 41e3b454c6b1b034b60f6073769040102e0021c9 Author: Alarig Le Lay swordarmor fr> AuthorDate: Tue Mar 24 20:01:17 2020 +0000 Commit: Alarig Le Lay swordarmor fr> CommitDate: Tue Mar 24 20:01:17 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=41e3b454 net-misc/openbgpd: Re-adding a corrected git version Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Alarig Le Lay swordarmor.fr> net-misc/openbgpd/openbgpd-9999.ebuild | 69 ++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) diff --git a/net-misc/openbgpd/openbgpd-9999.ebuild b/net-misc/openbgpd/openbgpd-9999.ebuild new file mode 100644 index 0000000..a7ba284 --- /dev/null +++ b/net-misc/openbgpd/openbgpd-9999.ebuild @@ -0,0 +1,69 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools git-r3 systemd + +DESCRIPTION="OpenBGPD is a free implementation of BGPv4" +HOMEPAGE="http://www.openbgpd.org/index.html" +EGIT_REPO_URI="https://github.com/openbgpd-portable/openbgpd-portable.git" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="" +IUSE="" + +DEPEND="" +RDEPEND=" + ${DEPEND} + !!net-misc/quagga + acct-group/_bgpd + acct-user/_bgpd +" +BDEPEND=" + dev-util/byacc + sys-devel/autoconf + sys-devel/automake + sys-devel/libtool +" + +src_unpack() { + git-r3_src_unpack + + cd "${WORKDIR}" + + EGIT_REPO_URI="https://github.com/openbgpd-portable/openbgpd-openbsd.git" + EGIT_BRANCH=$(cat "${S}"/OPENBSD_BRANCH) + EGIT_CHECKOUT_DIR="${S}/openbsd" + git-r3_fetch + git-r3_checkout +} + +src_prepare() { + eapply -p0 "${FILESDIR}/${P}-update.patch" + eapply -p0 "${FILESDIR}/${P}-config.c.patch" + default + ./autogen.sh + eautoreconf +} + +src_configure() { + export YACC=byacc + default +} + +src_install() { + default + + newinitd "${FILESDIR}/${PN}-init.d" bgpd + newconfd "${FILESDIR}/${PN}-conf.d" bgpd + systemd_newunit "${FILESDIR}/${PN}.service" bgpd.service +} + +pkg_postinst() { + ewarn "" + ewarn "OpenBGPD portable (not running on OpenBSD) can’t export its RIB to" + ewarn "the FIB. It’s only suitable for route-reflectors or route-servers." + ewarn "" +}