mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
8a29ff593e
Changes: - Name temporary mount points with Boot Environment name. - Disable mounting datasets with mountpoint=none (avilla). - Implement automatic deletion of temporary mountpoints. - Only delete the temporary created mountpoint directories. - Make use of TMPDIR when using mktemp(1). Feature safe: yes
36 lines
635 B
Makefile
36 lines
635 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= beadm
|
|
PORTVERSION= 0.8.5
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF/beadm/dist/
|
|
|
|
MAINTAINER= bdrewery@FreeBSD.org
|
|
COMMENT= Solaris-like utility to manage Boot Environments on ZFS
|
|
|
|
LICENSE= BSD
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= vermaden
|
|
GH_COMMIT= a7c1c73
|
|
|
|
NO_BUILD= YES
|
|
|
|
CONFLICTS_INSTALL= beadm-devel-*
|
|
|
|
PLIST_FILES= sbin/${PORTNAME}
|
|
|
|
MAN1= ${PORTNAME}.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 800000
|
|
IGNORE= not supported on 7.x
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin/${PORTNAME}
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MANPREFIX}/man/man1/
|
|
|
|
.include <bsd.port.post.mk>
|