openbgpd #1
11
acct-group/_bgpd/_bgpd-0.ebuild
Normal file
11
acct-group/_bgpd/_bgpd-0.ebuild
Normal file
|
@ -0,0 +1,11 @@
|
|||
# Copyright 2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit acct-group
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
# BGP port 179
|
||||
ACCT_GROUP_ID=179
|
8
acct-group/_bgpd/metadata.xml
Normal file
8
acct-group/_bgpd/metadata.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>alarig@swordarmor.fr</email>
|
||||
<name>Alarig Le Lay</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
16
acct-user/_bgpd/_bgpd-0.ebuild
Normal file
16
acct-user/_bgpd/_bgpd-0.ebuild
Normal file
|
@ -0,0 +1,16 @@
|
|||
# Copyright 2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit acct-user
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
DESCRIPTION="User for OpenBGPD"
|
||||
# BGP port 179
|
||||
ACCT_USER_ID=179
|
||||
ACCT_USER_GROUPS=( _bgpd )
|
||||
ACCT_USER_HOME=/var/empty
|
||||
|
||||
acct-user_add_deps
|
8
acct-user/_bgpd/metadata.xml
Normal file
8
acct-user/_bgpd/metadata.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>alarig@swordarmor.fr</email>
|
||||
<name>Alarig Le Lay</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
1
net-misc/openbgpd/Manifest
Normal file
1
net-misc/openbgpd/Manifest
Normal file
|
@ -0,0 +1 @@
|
|||
DIST openbgpd-6.6.tar.gz 57895 BLAKE2B af4b9dce9cf97e8e47ef4e64bc8f319620920e3c6d4115a626827e82babd78b5d5aad177748edf5de7b9587644d5e0fb27d9707b4fc09e939f3f31adcacb6f5d SHA512 0726c8ad61d49519ab96b9cb1986c2ae84386095dcb9bbe368f86bc3aa3db4623aa11aac2c7e4e66f9e49dcaac6fc498571a2301f9697abcf64715b128321dff
|
13
net-misc/openbgpd/files/openbgpd-6.5-update.patch
Normal file
13
net-misc/openbgpd/files/openbgpd-6.5-update.patch
Normal file
|
@ -0,0 +1,13 @@
|
|||
--- update.sh 2020-03-20 15:14:46.462983445 +0100
|
||||
+++ update.sh 2020-03-20 15:14:56.473090379 +0100
|
||||
@@ -13,10 +13,6 @@
|
||||
git clone "${OPENBGPD_GIT}/openbsd"
|
||||
fi
|
||||
fi
|
||||
-(cd openbsd
|
||||
- git fetch
|
||||
- git checkout "${openbsd_branch}"
|
||||
- git pull --rebase)
|
||||
|
||||
# setup source paths
|
||||
dir=`pwd`
|
12
net-misc/openbgpd/files/openbgpd-6.6-config.c.patch
Normal file
12
net-misc/openbgpd/files/openbgpd-6.6-config.c.patch
Normal file
|
@ -0,0 +1,12 @@
|
|||
--- openbsd/src/usr.sbin/bgpd/config.c 2020-03-20 17:55:04.089577745 +0100
|
||||
+++ openbsd/src/usr.sbin/bgpd/config.c 2020-03-20 17:56:01.480205070 +0100
|
||||
@@ -343,7 +343,8 @@
|
||||
fatal("getifaddrs");
|
||||
|
||||
for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
|
||||
- if (ifa->ifa_addr->sa_family != AF_INET)
|
||||
+ if (ifa->ifa_addr == NULL ||
|
||||
+ ifa->ifa_addr->sa_family != AF_INET)
|
||||
continue;
|
||||
cur = ((struct sockaddr_in *)ifa->ifa_addr)->sin_addr.s_addr;
|
||||
if ((cur & localnet) == localnet) /* skip 127/8 */
|
13
net-misc/openbgpd/files/openbgpd-6.6-update.patch
Normal file
13
net-misc/openbgpd/files/openbgpd-6.6-update.patch
Normal file
|
@ -0,0 +1,13 @@
|
|||
--- update.sh 2020-03-20 15:14:46.462983445 +0100
|
||||
+++ update.sh 2020-03-20 15:14:56.473090379 +0100
|
||||
@@ -13,10 +13,6 @@
|
||||
git clone "${OPENBGPD_GIT}/openbsd"
|
||||
fi
|
||||
fi
|
||||
-(cd openbsd
|
||||
- git fetch
|
||||
- git checkout "${openbsd_branch}"
|
||||
- git pull --rebase)
|
||||
|
||||
# setup source paths
|
||||
dir=`pwd`
|
8
net-misc/openbgpd/metadata.xml
Normal file
8
net-misc/openbgpd/metadata.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<name>Alarig Le Lay</name>
|
||||
<email>alarig@swordarmor.fr</email>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
58
net-misc/openbgpd/openbgpd-6.6.ebuild
Normal file
58
net-misc/openbgpd/openbgpd-6.6.ebuild
Normal file
|
@ -0,0 +1,58 @@
|
|||
# Copyright 2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit autotools git-r3
|
||||
|
||||
MY_P="${P}p0"
|
||||
MY_PV="${PV}p0"
|
||||
MY_PN="openbgpd-portable-${MY_PV}"
|
||||
|
||||
DESCRIPTION="OpenBGPD is a free implementation of BGPv4"
|
||||
HOMEPAGE="http://www.openbgpd.org/index.html"
|
||||
SRC_URI="https://github.com/openbgpd-portable/openbgpd-portable/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
EGIT_REPO_URI="https://github.com/openbgpd-portable/openbgpd-openbsd.git"
|
||||
EGIT3_STORE_DIR="${S}/git"
|
||||
EGIT_CHECKOUT_DIR="${S}/openbsd"
|
||||
|
||||
LICENSE="ISC"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
acct-group/_bgpd
|
||||
acct-user/_bgpd
|
||||
"
|
||||
BDEPEND="
|
||||
dev-util/byacc
|
||||
sys-devel/autoconf
|
||||
sys-devel/automake
|
||||
sys-devel/libtool
|
||||
"
|
||||
|
||||
src_unpack() {
|
||||
unpack ${A}
|
||||
mv "${WORKDIR}/${MY_PN}" "${S}"
|
||||
|
||||
EGIT_BRANCH=$(cat "${S}"/OPENBSD_BRANCH)
|
||||
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
|
||||
}
|
Loading…
Reference in a new issue