ports/devel/loccount/Makefile
Tobias Kortkamp 3726f94254 Convert all Go ports to USES=go
This allows for port testing with lang/go-devel via GO_PORT, setting
up the Go build environment in a single place, and is step one in
simplifying Go ports that often define too complicated do-build
targets themselves.

USES=go gains new arguments 'run' to add lang/go to RUN_DEPENDS and
'no_targets' for ports with composite builds that call 'go' themselves
and do not need the do-build/do-install targets of USES=go.

PR:		238849
Submitted by:	dg@syrec.org (also D20745)
Reviewed by:	mat, tobik
Exp-run by:	antoine
Differential Revision:	https://reviews.freebsd.org/D20746
2019-06-29 03:51:13 +00:00

28 lines
525 B
Makefile

# $FreeBSD$
PORTNAME= loccount
DISTVERSION= 2.0
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org
COMMENT= Count source lines of code in a project
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYING
USES= go
USE_GITLAB= yes
GL_ACCOUNT= esr
GL_COMMIT= 249ea3d6927fd327086b609857c04bb95eafdd98
PLIST_FILES= bin/${PORTNAME}
do-build:
@cd ${WRKSRC} && \
${SETENV} ${MAKE_ENV} GOPATH=${WRKSRC} go build -o ${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>