mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
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
36 lines
1.2 KiB
Makefile
36 lines
1.2 KiB
Makefile
PORTNAME= cfs
|
|
DISTVERSION= 1.5.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= filesystems security
|
|
MASTER_SITES= http://www.bayofrum.net/dist/${PORTNAME}/
|
|
|
|
MAINTAINER= crees@FreeBSD.org
|
|
COMMENT= Cryptographic file system implemented as a user-space NFS server
|
|
WWW= https://www.bayofrum.net/cgi-bin/fossil/cfs/
|
|
|
|
LICENSE= BSD0CLAUSE
|
|
|
|
ALL_TARGET= cfs
|
|
MAKE_ARGS= CC="${CC}"
|
|
|
|
CFSD_BOOTSTRAP= ${PREFIX}/cfsd-bootstrap
|
|
USE_RC_SUBR= cfsd
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST= CFSD_BOOTSTRAP=${CFSD_BOOTSTRAP}
|
|
PLIST_SUB= CFSD_BOOTSTRAP=${CFSD_BOOTSTRAP}
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's/^\.TH SSH/.TH CFSSH/' ${WRKSRC}/cfssh.1
|
|
|
|
do-install:
|
|
cd ${WRKSRC}; \
|
|
${INSTALL_PROGRAM} ccat cfsd cname ${STAGEDIR}${PREFIX}/sbin; \
|
|
${INSTALL_PROGRAM} cattach cdetach cmkdir cpasswd ${STAGEDIR}${PREFIX}/bin; \
|
|
${INSTALL_SCRIPT} cfssh ${STAGEDIR}${PREFIX}/bin/cfssh; \
|
|
${INSTALL_MAN} cattach.1 cdetach.1 cmkdir.1 cpasswd.1 cfssh.1 ${STAGEDIR}${PREFIX}/share/man/man1; \
|
|
${INSTALL_MAN} ccat.8 cfsd.8 cname.8 ${STAGEDIR}${PREFIX}/share/man/man8; \
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/cfs; \
|
|
${INSTALL_DATA} README.install notes.ms ${STAGEDIR}${PREFIX}/share/doc/cfs
|
|
${INSTALL} -d -m 0 ${STAGEDIR}${CFSD_BOOTSTRAP}
|
|
|
|
.include <bsd.port.mk>
|