diff options
author | Robert Clausecker <fuz@FreeBSD.org> | 2024-09-27 12:48:46 +0200 |
---|---|---|
committer | Robert Clausecker <fuz@FreeBSD.org> | 2024-11-06 16:17:35 +0100 |
commit | 6e2da9672f79f44048d597f0f61e4646cdeade9d (patch) | |
tree | c92e4b3158e3419e8cec38e00227d08dcdaab3e9 /filesystems/libfsfat | |
parent | math/sdpa: speed up build (diff) |
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
Diffstat (limited to 'filesystems/libfsfat')
-rw-r--r-- | filesystems/libfsfat/Makefile | 30 | ||||
-rw-r--r-- | filesystems/libfsfat/distinfo | 3 | ||||
-rw-r--r-- | filesystems/libfsfat/pkg-descr | 1 | ||||
-rw-r--r-- | filesystems/libfsfat/pkg-plist | 19 |
4 files changed, 53 insertions, 0 deletions
diff --git a/filesystems/libfsfat/Makefile b/filesystems/libfsfat/Makefile new file mode 100644 index 000000000000..d18cdf5fd726 --- /dev/null +++ b/filesystems/libfsfat/Makefile @@ -0,0 +1,30 @@ +PORTNAME= libfsfat +# If/When moving from experimental to alpha, switch to DISTVERSIONPREFIX to prevent PORTEPOCH +DISTVERSION= experimental-20231122 +CATEGORIES= filesystems devel +MASTER_SITES= https://github.com/libyal/libfsfat/releases/download/${PORTVERSION:E}/ \ + LOCAL/antoine + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Library and tools to access the File Allocation Table File System +WWW= https://github.com/libyal/libfsfat + +LICENSE= LGPL3+ +LICENSE_FILE= ${WRKSRC}/COPYING + +GNU_CONFIGURE= yes +GNU_CONFIGURE_MANPREFIX=${PREFIX}/share +CONFIGURE_ARGS= --enable-python --with-openssl=no +CONFIGURE_ENV= PYTHON_CONFIG=${PYTHON_CMD}-config +USES= fuse libtool pathfix pkgconfig python +USE_LDCONFIG= yes +INSTALL_TARGET= install-strip +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:E} + +OPTIONS_DEFINE= NLS + +NLS_USES= gettext +NLS_CONFIGURE_ON= --with-libintl-prefix=${LOCALBASE} +NLS_CONFIGURE_OFF= --disable-nls + +.include <bsd.port.mk> diff --git a/filesystems/libfsfat/distinfo b/filesystems/libfsfat/distinfo new file mode 100644 index 000000000000..0f2626e7770f --- /dev/null +++ b/filesystems/libfsfat/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1707836386 +SHA256 (libfsfat-experimental-20231122.tar.gz) = bc74cd55a1f3a1102dd9c2cde7958d017e6455d82ef387249b12ad58c62df7c5 +SIZE (libfsfat-experimental-20231122.tar.gz) = 1665538 diff --git a/filesystems/libfsfat/pkg-descr b/filesystems/libfsfat/pkg-descr new file mode 100644 index 000000000000..f303433616cc --- /dev/null +++ b/filesystems/libfsfat/pkg-descr @@ -0,0 +1 @@ +Library and tools to access the File Allocation Table (FAT) file system diff --git a/filesystems/libfsfat/pkg-plist b/filesystems/libfsfat/pkg-plist new file mode 100644 index 000000000000..c657a6fc2311 --- /dev/null +++ b/filesystems/libfsfat/pkg-plist @@ -0,0 +1,19 @@ +bin/fsfatinfo +bin/fsfatmount +include/libfsfat.h +include/libfsfat/codepage.h +include/libfsfat/definitions.h +include/libfsfat/error.h +include/libfsfat/extern.h +include/libfsfat/features.h +include/libfsfat/types.h +lib/libfsfat.a +lib/libfsfat.so +lib/libfsfat.so.1 +lib/libfsfat.so.1.0.0 +%%PYTHON_SITELIBDIR%%/pyfsfat.a +%%PYTHON_SITELIBDIR%%/pyfsfat.so +libdata/pkgconfig/libfsfat.pc +share/man/man1/fsfatinfo.1.gz +share/man/man1/fsfatmount.1.gz +share/man/man3/libfsfat.3.gz |