mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-19 07:48:56 -04:00
60 lines
1.5 KiB
Bash
60 lines
1.5 KiB
Bash
# Copyright 2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="A Layer Two Peer-to-Peer VPN"
|
|
|
|
inherit systemd cmake
|
|
|
|
HOMEPAGE="http://www.ntop.org/n2n/"
|
|
SRC_URI="https://github.com/ntop/n2n/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
RESTRICT="mirror"
|
|
IUSE="
|
|
+openssl
|
|
caps
|
|
pcap
|
|
zstd
|
|
upnp
|
|
"
|
|
DEPEND="
|
|
acct-user/n2n
|
|
acct-group/n2n
|
|
openssl? ( dev-libs/openssl )
|
|
caps? ( sys-libs/libcap )
|
|
pcap? ( net-libs/libpcap )
|
|
zstd? ( app-arch/zstd )
|
|
upnp? ( net-libs/miniupnpc net-libs/libnatpmp )
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
mycmakeargs=(
|
|
-DBUILD_SHARED_LIBS=OFF
|
|
-DN2N_OPTION_USE_OPENSSL="$(usex openssl ON OFF)"
|
|
-DN2N_OPTION_USE_OPENSSL="$(usex openssl ON OFF)"
|
|
-DN2N_OPTION_USE_CAPLIB="$(usex cap ON OFF)"
|
|
-DN2N_OPTION_USE_PCAPLIB="$(usex pcap ON OFF)"
|
|
-DN2N_OPTION_USE_ZSTD="$(usex zstd ON OFF)"
|
|
-DN2N_OPTION_USE_PORTMAPPING="$(usex upnp ON OFF)"
|
|
)
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
cmake_src_install
|
|
rm -r "${D:?}/usr/share" || die
|
|
doman "${S}/edge.8"
|
|
doman "${S}/n2n.7"
|
|
doman "${S}/supernode.1"
|
|
keepdir /var/log/n2n
|
|
systemd_newunit "${S}/packages/etc/systemd/system/edge@.service.in" n2n-edge@.service
|
|
systemd_newunit "${S}/packages/etc/systemd/system/supernode.service.in" n2n-supernode.service
|
|
insinto /etc/n2n
|
|
newins "${S}/packages/etc/n2n/edge.conf.sample" edge-example.conf
|
|
doins "${S}/packages/etc/n2n/supernode.conf.sample"
|
|
}
|