blob: 6e411a6304c61209ae1b195aae58189a9faa66ce (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# $FreeBSD$
PORTNAME= serf
PORTVERSION= 0.6.4
DISTVERSIONPREFIX= v
CATEGORIES= sysutils
PKGNAMEPREFIX= hashicorp-
MAINTAINER= swills@FreeBSD.org
COMMENT= Service discovery and configuration made easy
LICENSE= MPL
BUILD_DEPENDS= go14>=1.4:${PORTSDIR}/lang/go14
USE_GITHUB= yes
GH_ACCOUNT= hashicorp:DEFAULT,go_msgpack,go_syslog,go_net,logutils,mdns,memberlist \
armon:circbuf,go_metrics miekg:dns mitchellh:cli,mapstructure \
ryanuber:columnize
GH_PROJECT= circbuf:circbuf cli:cli columnize:columnize dns:dns \
go-metrics:go_metrics go-msgpack:go_msgpack \
go-syslog:go_syslog go.net:go_net logutils:logutils \
mapstructure:mapstructure mdns:mdns memberlist:memberlist
GH_TAGNAME= 23b0af5:logutils 442e588:mapstructure 44cb478:columnize \
71c2886:go_msgpack 9a1e242:memberlist ac3963b:go_syslog \
b65f52f:dns cbad13b:go_net e3c2e3d:cli eb0af21:go_metrics \
eb98acc:mdns f092b4f:circbuf
USE_RC_SUBR= serf
USERS= serf
GROUPS= serf
PLIST_FILES= bin/serf
STRIP= # stripping can break go binaries
post-patch:
@${MKDIR} ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${PORTNAME}
.for src in .gitignore .travis.yml CHANGELOG.md LICENSE Makefile README.md \
client command commands.go demo deps main.go main_test.go ops-misc \
scripts serf testutil version.go website
@${MV} ${WRKSRC}/${src} \
${WRKSRC}/src/github.com/hashicorp/${PORTNAME}
.endfor
@${MKDIR} ${WRKSRC}/src/github.com/armon
@${MKDIR} ${WRKSRC}/src/github.com/mitchellh
@${MKDIR} ${WRKSRC}/src/github.com/miekg
@${MKDIR} ${WRKSRC}/src/github.com/ryanuber
@${MKDIR} ${WRKSRC}/src/code.google.com/p/go.net
@${MV} ${WRKSRC_circbuf} \
${WRKSRC}/src/github.com/armon/circbuf
@${MV} ${WRKSRC_go_metrics} \
${WRKSRC}/src/github.com/armon/go-metrics
@${MV} ${WRKSRC_go_msgpack} \
${WRKSRC}/src/github.com/hashicorp/go-msgpack
@${MV} ${WRKSRC_go_syslog} \
${WRKSRC}/src/github.com/hashicorp/go-syslog
@${MV} ${WRKSRC_logutils} \
${WRKSRC}/src/github.com/hashicorp/logutils
@${MV} ${WRKSRC_memberlist} \
${WRKSRC}/src/github.com/hashicorp/memberlist
@${MV} ${WRKSRC_mapstructure} \
${WRKSRC}/src/github.com/mitchellh/mapstructure
@${MV} ${WRKSRC_mdns} \
${WRKSRC}/src/github.com/hashicorp/mdns
@${MV} ${WRKSRC_cli} \
${WRKSRC}/src/github.com/mitchellh/cli
@${MV} ${WRKSRC_columnize} \
${WRKSRC}/src/github.com/ryanuber/columnize
@${MV} ${WRKSRC_dns} \
${WRKSRC}/src/github.com/miekg/dns
@${MV} ${WRKSRC_go_net} \
${WRKSRC}/src/github.com/hashicorp/go.net
@${CP} -r ${WRKSRC}/src/github.com/hashicorp/go.net/internal \
${WRKSRC}/src/code.google.com/p/go.net
do-build:
@cd ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${PORTNAME}; \
${SETENV} PATH=${PATH}:${LOCALBASE}/go14/bin ${BUILD_ENV} GOPATH=${WRKSRC} \
go build -o bin/${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${PORTNAME}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>
|