add snx-rs

This commit is contained in:
root 2025-03-30 14:05:43 +03:00
parent b41661eed3
commit 503d08e29d
5 changed files with 110 additions and 0 deletions

6
net-vpn/snx-rs/Manifest Normal file
View file

@ -0,0 +1,6 @@
AUX conf.d.snx-rs 33 BLAKE2B f89257f503139f113948c7ec4fc6ad8e11cb1a75b2f6aaf0066a6b314556be04eb7ec0ae41aa5e43932b33cd4d8bfb14769c49a0d2375591e878b13db2ee63e7 SHA512 6ec70fe761d408ae8edd77d94eeeafc0d8625ef4f51de4a5e04ea314dda59e727e3e237d04ea1b90916bb0e71961778900b51476798ce34ea8e01ef4f9bddc74
AUX init.d.snx-rs 314 BLAKE2B eaaa3b99b28ab2c7bffbdb026de2c4b1d6a26293cfe3010a9c4f4d998dc8452248406fc2a3df6038eff48335297030c519751b40a13c862f6168152efb7b530f SHA512 4c9969a60c520bc024508c903dfd335a21a8a5d819527e75950e909ffd36d779c53dce07b625e2593d6517e3ab177c2255d725198fb246c5ff3ccca3dd1a921b
DIST isakmp-ea250b6485ce251e1c0d7f61a836cb3fda4b1c55.gh.tar.gz 47967 BLAKE2B 672bf3acbf3fc431a5618dcb64246d6d17e177739247515fa6735cd2c9212b58b656f30f719495f0a1feb0b8c697b74265005cb2fcd93894772e9c662f606cec SHA512 f83c9183ea77c7be1412dc159717dce263e08662dbe81c9080d26e4c18e804f58ed9a40a3dbb410accdc81974ad408d4305ef373d1d17d4b506c851cebeb7f26
DIST snx-rs-3.1.1-crates.tar.xz 31992664 BLAKE2B 92a2dce4c32f2e20cb7b4bbcad5092111b58aa9d977e22c409b16cacaf8f7df76adc03df8409e04e681baa82e22187426cee7e36250b9446cf94f409327b6ee4 SHA512 1c3cbae0e68bd73a803e0745ab7ff0072004f9388827eda3f7db466aac550f786dae673472e58db8f0bd2f6d5915219199aca8d57a8035c79ad34387f3be4b5b
DIST v3.1.1.tar.gz 141580 BLAKE2B 7e0cb046787329d5480f27cac4a841aeb857bac488e07196137c95e884746f5b259e840d8153c39079a03af3635581945c7ec5608dbee0616f4bbac7f1d1967b SHA512 af17a62b2ac111fac19403704087d84cdf48607bc5720920042e76dd59ca1c0198cea1a6d5ededece5110e84bce1c8901291dea2c58476b42f91bc843e5f959e
EBUILD snx-rs-3.1.1.ebuild 1853 BLAKE2B 97a9e9560b8dbefcc4e9f212f0cb4b5880d4bb47849c24973fca75cebb997c68213c87a70014272212be5c996d70ab11cb45fa3e4a08bd8e0921e75a63744bf2 SHA512 e52f003450b50b9010ba251901595ded016cc0ebf00ff28ddf55840e2ad3403dd624ba88e37803c1659ae29ad4b660c92ff1d07aa33c70c435be056eb1411b1e

1
net-vpn/snx-rs/\ Normal file
View file

@ -0,0 +1 @@
SNX_RS_OPTS=""

View file

@ -0,0 +1 @@
SNX_RS_OPTS="-m command -l info"

View file

@ -0,0 +1,18 @@
#!/sbin/openrc-run
depend() {
need net
use dns logger
}
start() {
start-stop-daemon --start --background \
--make-pidfile --pidfile /var/run/snx-rs.pid \
--exec /usr/bin/snx-rs -- ${SNX_RS_OPTS}
eend $?
}
stop() {
start-stop-daemon --stop --quiet --pidfile /var/run/snx-rs.pid
eend $?
}

View file

@ -0,0 +1,84 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CRATES="
"
declare -A GIT_CRATES=(
[isakmp]='https://github.com/ancwrd1/isakmp;ea250b6485ce251e1c0d7f61a836cb3fda4b1c55;isakmp-%commit%'
)
inherit desktop cargo systemd
DESCRIPTION="Open Source Linux Client For Check Point VPN Tunnels"
HOMEPAGE="https://github.com/ancwrd1/snx-rs"
SRC_URI="
https://github.com/ancwrd1/snx-rs/archive/refs/tags/v${PV}.tar.gz
${CARGO_CRATE_URIS}
"
if [[ ${PKGBUMPING} != ${PVR} ]]; then
SRC_URI+="
https://redrise.ru/builds/gentoo/${P}-crates.tar.xz
"
fi
LICENSE="AGPL-3"
# Dependent crate licenses
LICENSE+="
Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD ISC MIT MPL-2.0
Unicode-3.0 WTFPL-2
"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="
dev-libs/openssl
virtual/pkgconfig
"
RDEPEND="
dev-libs/libayatana-appindicator
sys-apps/iproute2
sys-apps/dbus
x11-libs/gtk+:3
"
DEPEND="${RDEPEND}"
#PATCHES=(
# "${FILESDIR}"/assets/${P}-snx-rs-gui.desktop.patch
#)
src_prepare() {
default
}
src_install() {
dobin target/x86_64-unknown-linux-gnu/release/{snx-rs,snxctl,snx-rs-gui}
insinto /usr/share/snx-rs/
doins assets/snx-rs.conf
fperms 0644 /usr/share/snx-rs/snx-rs.conf
sed -i -re 's/\/opt\/snx-rs\///g' assets/snx-rs.service
systemd_dounit assets/snx-rs.service
sed -i -re 's/\/opt\/snx-rs\///g' \
-e 's/Categories=Network;VPN;/Categories=Network/' assets/snx-rs-gui.desktop
domenu assets/snx-rs-gui.desktop
newconfd "${FILESDIR}"/conf.d.snx-rs snx-rs
newinitd "${FILESDIR}"/init.d.snx-rs snx-rs
}
pkg_postinst() {
elog "To use snx-rs, the snx-rs daemon must be running. To automatically start at boot:"
if systemd_is_booted || has_version sys-apps/systemd; then
elog " systemctl enable snx-rs.service"
else
elog " rc-update add snx-rs default"
fi
}