From e68d405c5d712af4387159df07e226217bdda049 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 6 Apr 2022 22:33:41 +0100 Subject: gentoo resync : 06.04.2022 --- net-libs/rtrlib/rtrlib-0.8.0.ebuild | 44 +++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 net-libs/rtrlib/rtrlib-0.8.0.ebuild (limited to 'net-libs/rtrlib/rtrlib-0.8.0.ebuild') diff --git a/net-libs/rtrlib/rtrlib-0.8.0.ebuild b/net-libs/rtrlib/rtrlib-0.8.0.ebuild new file mode 100644 index 000000000000..aa20fd8a2970 --- /dev/null +++ b/net-libs/rtrlib/rtrlib-0.8.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="An open-source C implementation of the RPKI/Router Protocol client" +HOMEPAGE="https://rtrlib.realmv6.org/" +SRC_URI="https://github.com/rtrlib/rtrlib/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +IUSE="doc ssh" + +RDEPEND="ssh? ( net-libs/libssh:0= )" +DEPEND=" + ${RDEPEND} + doc? ( app-doc/doxygen[dot] ) +" + +src_prepare() { + # Fix automagic dependency on doxygen, fix path for installing docs + if use doc; then + sed -i -e "s:share/doc/rtrlib:share/doc/${PF}:" CMakeLists.txt || die + else + sed -i -e '/find_package(Doxygen)/d' CMakeLists.txt || die + fi + cmake_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DRTRLIB_TRANSPORT_SSH=$(usex ssh) + ) + cmake_src_configure +} + +src_install() { + cmake_src_install + find "${D}" -name '*.la' -delete || die +} -- cgit v1.2.3