48 lines
2.3 KiB
Makefile
48 lines
2.3 KiB
Makefile
|
|
PORTNAME= oragono
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 2.5.1
|
|
CATEGORIES= irc
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Modern IRC server (daemon/ircd) written in Go
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= go:modules
|
|
USE_GITHUB= yes
|
|
GH_TUPLE= \
|
|
GehirnInc:crypt:bb7000b8a962:gehirninc_crypt/vendor/github.com/GehirnInc/crypt \
|
|
cloudfoundry:bytefmt:cf55d5288a48:cloudfoundry_bytefmt/vendor/code.cloudfoundry.org/bytefmt \
|
|
dgrijalva:jwt-go:v3.2.0:dgrijalva_jwt_go/vendor/github.com/dgrijalva/jwt-go \
|
|
docopt:docopt.go:ee0de3bc6815:docopt_docopt_go/vendor/github.com/docopt/docopt-go \
|
|
go-sql-driver:mysql:v1.5.0:go_sql_driver_mysql/vendor/github.com/go-sql-driver/mysql \
|
|
go-test:deep:v1.0.6:go_test_deep/vendor/github.com/go-test/deep \
|
|
go-yaml:yaml:v2.3.0:go_yaml_yaml/vendor/gopkg.in/yaml.v2 \
|
|
golang:crypto:9e8e0b390897:golang_crypto/vendor/golang.org/x/crypto \
|
|
golang:sys:4d91cf3a1aaf:golang_sys/vendor/golang.org/x/sys \
|
|
golang:text:v0.3.4:golang_text/vendor/golang.org/x/text \
|
|
gorilla:websocket:v1.4.2:gorilla_websocket/vendor/github.com/gorilla/websocket \
|
|
goshuirc:irc-go:ec778d0252a5:goshuirc_irc_go/vendor/github.com/goshuirc/irc-go \
|
|
onsi:ginkgo:v1.12.0:onsi_ginkgo/vendor/github.com/onsi/ginkgo \
|
|
onsi:gomega:v1.9.0:onsi_gomega/vendor/github.com/onsi/gomega \
|
|
oragono:confusables:4ab98ab61fb1:oragono_confusables/vendor/github.com/oragono/confusables \
|
|
oragono:go-ident:830550b1d775:oragono_go_ident/vendor/github.com/oragono/go-ident \
|
|
stretchr:testify:v1.4.0:stretchr_testify/vendor/github.com/stretchr/testify \
|
|
tidwall:btree:v0.2.2:tidwall_btree/vendor/github.com/tidwall/btree \
|
|
tidwall:buntdb:v1.1.4:tidwall_buntdb/vendor/github.com/tidwall/buntdb \
|
|
tidwall:gjson:v1.6.1:tidwall_gjson/vendor/github.com/tidwall/gjson \
|
|
tidwall:grect:ba9a043346eb:tidwall_grect/vendor/github.com/tidwall/grect \
|
|
tidwall:match:v1.0.1:tidwall_match/vendor/github.com/tidwall/match \
|
|
tidwall:pretty:v1.0.2:tidwall_pretty/vendor/github.com/tidwall/pretty \
|
|
tidwall:rtree:32188eeb08a8:tidwall_rtree/vendor/github.com/tidwall/rtree \
|
|
tidwall:tinyqueue:1e39f5511563:tidwall_tinyqueue/vendor/github.com/tidwall/tinyqueue \
|
|
toorop:go-dkim:e1cd1a0a5208:toorop_go_dkim/vendor/github.com/toorop/go-dkim
|
|
|
|
GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME}
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|