Files
ports/net/frp/Makefile
T
2026-07-12 10:26:09 -07:00

40 lines
931 B
Makefile

PORTNAME= frp
DISTVERSIONPREFIX= v
DISTVERSION= 0.70.0
CATEGORIES= net
MAINTAINER= yuri@FreeBSD.org
COMMENT= Reverse proxy to expose local server behind NAT/firewall to Internet
WWW= https://github.com/fatedier/frp
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= go:1.24+,modules
GO_MODULE= github.com/fatedier/frp
GO_TARGET= ./cmd/frpc ./cmd/frps
GO_BUILDFLAGS+= -tags=noweb
SUB_LIST= DAEMON_USER=${DAEMON_USER}
USE_RC_SUBR= ${PORTNAME}s
OPTIONS_RADIO= DAEMON_USER # also see https://github.com/fatedier/frp/issues/3417
OPTIONS_RADIO_DAEMON_USER= ROOT NOBODY
OPTIONS_DEFAULT= ROOT # to allow frp to read certificates
ROOT_VARS= DAEMON_USER=root
NOBODY_VARS= DAEMON_USER=nobody
DAEMON_USER_DESC= Daemon user
ROOT_DESC= Run as root
NOBODY_DESC= Run as nobody
post-install:
.for f in frpc.toml frps.toml
${INSTALL_DATA} ${WRKSRC}/conf/${f} ${STAGEDIR}${PREFIX}/etc/${f}.sample
.endfor
.include <bsd.port.mk>