forked from Lainports/freebsd-ports
Mostly just typos and assigning PORTREVISION multiple times. This commit doesn't fix up PORTREVISION between master-slave ports where the master port often overwrites PORTREVISION from the slaves which means the slaves don't actually get bumped. These probably just need PORTREVISION?= but care must be taken to not decrease the package versions of all the master-slave packages and to actually bump PORTREVISION as intended. For the record the currently visible broken master ports are: databases/libgda5 emulators/virtualbox-ose emulators/virtualbox-ose-legacy graphics/atril multimedia/mlt7 textproc/uim But all master ports should be looked at here and get an explicit PORTREVISION?= where it's currently missing to prevent this. Reported by: portscan
33 lines
746 B
Makefile
33 lines
746 B
Makefile
# Created by: Nikolai Lifanov <lifanov@FreeBSD.org>
|
|
|
|
PORTNAME= docker
|
|
PORTVERSION= 18.09.5
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Open-source application container engine
|
|
|
|
LICENSE= APACHE20
|
|
|
|
BROKEN_aarch64= fails to build: golang.org/x/sys/unix/cap_freebsd.go:18:23: undefined: CAP_RIGHTS_VERSION_00
|
|
|
|
PLIST_FILES= bin/docker
|
|
|
|
USE_GITHUB= yes
|
|
GH_PROJECT= docker-ce
|
|
|
|
USES= cpe go
|
|
|
|
CONFLICTS_INSTALL= docker-tray # bin/docker
|
|
|
|
GO_PKGNAME= github.com/${PORTNAME}
|
|
GO_TARGET= ${GO_PKGNAME}/cli/cmd/docker
|
|
|
|
pre-build:
|
|
@${MV} ${GO_WRKSRC}/components/* ${GO_WRKSRC}/
|
|
@${CP} ${FILESDIR}/default_store_freebsd.go \
|
|
${GO_WRKSRC}/cli/cli/config/credentials/
|
|
|
|
.include <bsd.port.mk>
|