* Ports that were pinned to a deprecated version of Go (1.23 or older) have been unpinned. * Ports that were pinned to a still-supported version of Go (1.24 or newer) have been converted to requesting that as their minimum Go version. * Ports that had been forcibly deprecated for pinning an expired Go version have been undeprecated.
33 lines
647 B
Makefile
33 lines
647 B
Makefile
PORTNAME= ergo
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 2.16.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= irc
|
|
PKGNAMESUFFIX= -irc-server
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Modern IRC server (daemon/ircd) written in Go
|
|
WWW= https://ergo.chat \
|
|
https://github.com/ergochat/ergo
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= go:1.25+,modules
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ergochat
|
|
GH_TUPLE= golang:sys:v0.6.0:sys
|
|
|
|
CONFLICTS_INSTALL= ergo
|
|
|
|
GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME}
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
pre-patch:
|
|
${RM} -r ${WRKSRC}/vendor/golang.org/x/sys
|
|
${LN} -s ${WRKDIR}/sys-* ${WRKSRC}/vendor/golang.org/x/sys
|
|
|
|
.include <bsd.port.mk>
|