forked from Lainports/freebsd-ports
- Remove unnecessary README.md - Remove unnecessary mode specification in plist (same with default) - Fix GitHub URL - Patch incorrect manpath PR: 276291 Reported by: jbeich Approved by: blanket Sponsored by: Cybertrust Japan
24 lines
562 B
Makefile
24 lines
562 B
Makefile
PORTNAME= vmstated
|
|
DISTVERSION= 0.04
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= freebsd@ny-central.org
|
|
COMMENT= Manages and runs bhyve virtual machines and infrastructure
|
|
WWW= https://github.com/christian-moerz/vmstated
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= christian-moerz
|
|
GH_PROJECT= vmstated
|
|
GH_TAGNAME= ${DISTVERSION}
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} "s@PREFIX@${PREFIX}@g" "${WRKSRC}/rc/vmstated"
|
|
# Fix man path
|
|
${REINPLACE_CMD} \
|
|
'20 s|$${MANPREFIX}|$${PREFIX}/share|' \
|
|
"${WRKSRC}/src/vmstatedctl/Makefile"
|
|
|
|
.include <bsd.port.mk>
|