summaryrefslogtreecommitdiff
path: root/devel/git-codereview/Makefile
blob: d19109c468da54c3b0b06758c281816d962515da (plain) (blame)
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
# $FreeBSD$

PORTNAME=	git-codereview
PORTVERSION=	0.0.0.2016030201
CATEGORIES=	devel

MAINTAINER=	swills@FreeBSD.org
COMMENT=	Command-line tool for working with Gerrit

BUILD_DEPENDS=	${LOCALBASE}/bin/go:lang/go

USE_GITHUB=	yes
GH_ACCOUNT=	golang
GH_PROJECT=	review
GH_TAGNAME=	77ae237

PLIST_FILES=	bin/git-codereview

post-patch:
	@${MKDIR} ${WRKSRC}/src/golang.org/x/review
.for src in .gitattributes AUTHORS CONTRIBUTING.md CONTRIBUTORS LICENSE PATENTS \
	README codereview.cfg git-codereview
	@${MV} ${WRKSRC}/${src} ${WRKSRC}/src/golang.org/x/review
.endfor

do-build:
	@cd ${WRKSRC}/src/golang.org/x/review ; ${SETENV} ${MAKE_ENV} ${BUILD_ENV} GOPATH=${WRKSRC} go install ./...

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}

.include <bsd.port.mk>