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
43 lines
1,018 B
Makefile
43 lines
1,018 B
Makefile
PORTNAME= avfs
|
|
PORTVERSION= 1.1.4
|
|
CATEGORIES= filesystems sysutils
|
|
MASTER_SITES= SF/avf/${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Virtual File System library
|
|
WWW= https://avf.sourceforge.net/
|
|
|
|
# FUSE daemon is licensed as GPLv2, shared library is LGPLv2
|
|
LICENSE= LGPL20 GPLv2
|
|
LICENSE_COMB= multi
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/bash:shells/bash
|
|
|
|
USES= libtool pkgconfig tar:bz2 shebangfix perl5
|
|
USE_PERL5= run
|
|
SHEBANG_FILES= extfs/uimg scripts/umountavfs scripts/mountavfs
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= PERL="${PERL}"
|
|
|
|
INSTALL_TARGET= install-strip
|
|
|
|
OPTIONS_DEFINE= DAV DEBUG FUSE ZSTD
|
|
OPTIONS_SUB= yes
|
|
|
|
DAV_DESC= Build the DAV module (requires libneon)
|
|
DAV_LIB_DEPENDS= libneon.so:www/neon
|
|
DAV_CONFIGURE_ENABLE= dav
|
|
|
|
DEBUG_CONFIGURE_ENABLE= debug
|
|
|
|
FUSE_CONFIGURE_ENABLE= fuse
|
|
FUSE_USES= fuse
|
|
|
|
ZSTD_LIB_DEPENDS= libzstd.so:archivers/zstd
|
|
ZSTD_CONFIGURE_WITH= zstd
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/#include/s,neon/,,' ${WRKSRC}/modules/dav*.?
|
|
|
|
.include <bsd.port.mk>
|