gentoo-zh/net-proxy/v2ray/v2ray-5.29.3.ebuild
jinqiang zhang e948b38b7a
net-proxy/v2ray: add 5.29.3, drop 5.28.0
Closes: https://github.com/microcai/gentoo-zh/issues/6727
Signed-off-by: jinqiang zhang <jinqiang@zhang.my>
2025-04-01 15:15:40 +08:00

46 lines
1.2 KiB
Bash

# Copyright 2021-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module systemd
DESCRIPTION="A platform for building proxies to bypass network restrictions."
HOMEPAGE="https://www.v2fly.org/"
SRC_URI="
https://github.com/v2fly/v2ray-core/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
https://github.com/gentoo-zh/gentoo-deps/releases/download/${P}/${P}-vendor.tar.xz
"
S="${WORKDIR}/${PN}-core-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
DEPEND="!net-proxy/v2ray-bin
app-alternatives/v2ray-geoip
app-alternatives/v2ray-geosite
"
RDEPEND="${DEPEND}"
BDEPEND=">=dev-lang/go-1.22"
src_prepare() {
sed -i 's|/usr/local/bin|/usr/bin|;s|/usr/local/etc|/etc|' release/config/systemd/system/*.service || die
sed -i '/^User=/s/nobody/v2ray/;/^User=/aDynamicUser=true' release/config/systemd/system/*.service || die
default
}
src_compile() {
ego build -o v2ray -trimpath -ldflags "-s -w" ./main
}
src_install() {
dobin v2ray
insinto /etc/v2ray
newins release/config/config.json config.json.example
newinitd "${FILESDIR}/v2ray.initd-r1" v2ray
systemd_dounit release/config/systemd/system/v2ray{,@}.service
}