forked from Lainports/freebsd-ports
GO_PKGNAME defaults to ${PORTNAME}. As a result it is often too
general and can produce bad results with make makeplist. For
example, in mail/aerc it produces bogus entries like
man/man5/%%GO_PKGNAME%%-sendmail.5.gz
since GO_PKGNAME=aerc there.
Having it in PLIST_SUB was only useful for Go libraries which we
no longer support. Only 2 ports use it currently but do not really
need to and are easily fixed.
Approved by: dg@syrec.org (maintainer)
Differential Revision: https://reviews.freebsd.org/D21114
23 lines
393 B
Makefile
23 lines
393 B
Makefile
# Created by: Jim Ohlstein <jim@ohlste.in>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ct-submit
|
|
PORTVERSION= 1.1.2
|
|
CATEGORIES= security www
|
|
|
|
MAINTAINER= jim@ohlste.in
|
|
COMMENT= Submission utility for transparency logs
|
|
|
|
LICENSE= ISCL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= go
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= grahamedgecombe
|
|
GH_PROJECT= ct-submit
|
|
GH_TAGNAME= 7bb2541
|
|
|
|
PLIST_FILES= bin/ct-submit
|
|
|
|
.include <bsd.port.mk>
|