blob: e4c19833ef6657a45ddd46e9cbd89a6bbed2f1f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit go-module systemd
DESCRIPTION="A reverse proxy that exposes a server behind a NAT or firewall to the internet"
HOMEPAGE="https://github.com/fatedier/frp"
SRC_URI="https://github.com/fatedier/frp/archive/v${PV}.tar.gz -> ${P}.tar.gz
https://dev.gentoo.org/~zmedico/dist/${P}-deps.tar.xz"
LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0"
SLOT="0"
KEYWORDS="~amd64 ~riscv"
IUSE=""
src_prepare() {
# patch LDFLAGS to preserve symbol table #792408
sed -e "s|^\\(LDFLAGS :=\\) -s \\(.*\\)|\1 \2|" -i Makefile || die
default
}
src_compile() {
emake all
}
src_install() {
local x
dobin bin/{frpc,frps}
dodoc README*.md
systemd_dounit conf/systemd/*
insinto /etc/frp
for x in conf/*.ini; do mv "${x}"{,.example}; done
doins conf/*.example
}
|