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

44 lines
1.1 KiB
Makefile

PORTNAME= zfs-periodic
PORTVERSION= 1.0.20130213
CATEGORIES= filesystems sysutils
MAINTAINER= peter@pean.org
COMMENT= Simple way of maintaining zfs snapshots using the periodic system
WWW= https://github.com/ross/zfs-periodic
USE_GITHUB= yes
GH_ACCOUNT= ross
GH_TAGNAME= a481121
NO_ARCH= yes
NO_BUILD= yes
PERIODIC_DIRS= etc/periodic/hourly etc/periodic/daily \
etc/periodic/weekly etc/periodic/monthly \
etc/periodic
PERIODIC_FILES= etc/periodic/hourly/000.zfs-snapshot \
etc/periodic/daily/000.zfs-snapshot \
etc/periodic/weekly/000.zfs-snapshot \
etc/periodic/monthly/000.zfs-snapshot
PLIST_FILES= ${PERIODIC_FILES} bin/zfs-snapshot
post-patch:
.for _file in ${PERIODIC_FILES}
@${REINPLACE_CMD} -e "s|/etc/periodic/zfs-snapshot|${PREFIX}/bin/zfs-snapshot|" \
${WRKSRC}/${_file}
.endfor
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/etc/periodic/zfs-snapshot ${STAGEDIR}${PREFIX}/bin
.for _dir in ${PERIODIC_DIRS}
@${MKDIR} ${STAGEDIR}${PREFIX}/${_dir}
.endfor
.for _file in ${PERIODIC_FILES}
${INSTALL_SCRIPT} ${WRKSRC}/${_file} ${STAGEDIR}${PREFIX}/${_file}
.endfor
.include <bsd.port.mk>