ports/sysutils/volman/Makefile
Robert Clausecker 6e2da9672f filesystems: add new category for file systems and related utilities
The filesystems category houses file systems and file system utilities.
It is added mainly to turn the sysutils/fusefs-* pseudo-category into
a proper one, but is also useful for the sundry of other file systems
related ports found in the tree.

Ports that seem like they belong there are moved to the new category.
Two ports, sysutils/fusefs-funionfs and sysutils/fusefs-fusepak are
not moved as they currently don't fetch and don't have TIMESTAMP set
in their distinfo, but that is required to be able to push a rename
of the port by the pre-receive hook.

Approved by:	portmgr (rene)
Reviewed by:	mat
Pull Request:	https://github.com/freebsd/freebsd-ports/pull/302
PR:		281988
2024-11-06 16:17:35 +01:00

51 lines
1.2 KiB
Makefile

PORTNAME= volman
PORTVERSION= 0.7
PORTREVISION= 2
CATEGORIES= sysutils
MAINTAINER= ports@FreeBSD.org
COMMENT= FreeBSD specific volume manager
WWW= https://forums.freebsd.org/showthread.php?t=27233
USE_GITHUB= yes
GH_ACCOUNT= uffejakobsen
USE_RC_SUBR= volmand
VM_SUB_FILES= vmount volmand
OPTIONS_DEFINE= OPENBOX NTFS3G
OPENBOX_DESC= Openbox pipemenu script
NTFS3G_DESC= Use fusefs-ntfs extensions
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MOPENBOX}
VM_SUB_FILES+= obvolman
RUN_DEPENDS+= ${LOCALBASE}/bin/xmessage:x11/xmessage
PLIST_SUB+= OPENBOX=""
.else
PLIST_SUB+= OPENBOX="@comment "
.endif
.if ${PORT_OPTIONS:MNTFS3G}
RUN_DEPENDS+= ${LOCALBASE}/bin/ntfs-3g:filesystems/ntfs
SUB_LIST+= RCFUSEFS=" fusefs"
.else
SUB_LIST+= RCFUSEFS=""
.endif
do-build:
.for file in ${VM_SUB_FILES}
${SED} -e 's#%%PREFIX%%#${PREFIX}#g' ${WRKSRC}/${file}.in >${WRKSRC}/${file}
.endfor
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/volmand ${STAGEDIR}${PREFIX}/sbin
${INSTALL_SCRIPT} ${WRKSRC}/vmount ${STAGEDIR}${PREFIX}/bin
.if defined(WITH_OPENBOX)
${INSTALL_SCRIPT} ${WRKSRC}/obvolman ${STAGEDIR}${PREFIX}/bin
.endif
${INSTALL_DATA} ${WRKSRC}/volman.conf ${STAGEDIR}${PREFIX}/etc/volman.conf.sample
.include <bsd.port.mk>