# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit go-module systemd COMMIT_ID="88890dde2d555d787539ae0ea950ba472a969b7c" DESCRIPTION="A powerful, lightning fast and censorship resistant proxy." HOMEPAGE="https://github.com/apernet/hysteria" SRC_URI=" https://github.com/apernet/${PN}/archive/refs/tags/app/v${PV}.tar.gz -> ${P}.tar.gz https://github.com/gentoo-zh/gentoo-deps/releases/download/${P}/${P}-vendor.tar.xz " S="${WORKDIR}/${PN}-app-v${PV}" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" DEPEND=" acct-user/hysteria acct-group/hysteria >=dev-lang/go-1.24.2 " RDEPEND="${DEPEND}" src_compile() { local APP_SRC_CMD_PKG="github.com/apernet/hysteria/app/v2/cmd" local APP_DATE APP_DATE=$(LC_ALL=C date -u +'%Y-%m-%dT%H:%M:%SZ' || die) local APP_LIB_VERSION APP_LIB_VERSION=$(grep github.com/apernet/quic-go core/go.mod | awk '{print $2}' | head -n 1 || die) CGO_ENABLED=1 ego build \ -trimpath \ -ldflags "-extldflags '${LDFLAGS}' \ -X ${APP_SRC_CMD_PKG}.appVersion=${PV} \ -X ${APP_SRC_CMD_PKG}.appDate=${APP_DATE} \ -X ${APP_SRC_CMD_PKG}.appType=release \ -X ${APP_SRC_CMD_PKG}.appPlatform=linux \ -X ${APP_SRC_CMD_PKG}.appArch=$(go env GOARCH) \ -X ${APP_SRC_CMD_PKG}.appToolchain=$(go env GOVERSION) \ -X ${APP_SRC_CMD_PKG}.appCommit=${COMMIT_ID} \ -X ${APP_SRC_CMD_PKG}.libVersion=${APP_LIB_VERSION} \ " \ -o "${PN}" "./app" } src_install() { insinto "/etc/${PN}" doins "${FILESDIR}/server.yaml.example" doins "${FILESDIR}/client.yaml.example" dobin "${PN}" systemd_dounit "${FILESDIR}/${PN}-server.service" systemd_dounit "${FILESDIR}/${PN}-client.service" newinitd "${FILESDIR}/${PN}-server.initd" "${PN}-server" newinitd "${FILESDIR}/${PN}-client.initd" "${PN}-client" keepdir /etc/${PN} }