diff options
author | agc <agc@pkgsrc.org> | 2004-10-05 12:39:38 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2004-10-05 12:39:38 +0000 |
commit | f6726d0a8f52b2baeea839bb1018af4b98d494b1 (patch) | |
tree | 9e05cdc5cb99325ca1dbfda4bd49a8375c0b131b /sysutils/ntfsprogs/Makefile | |
parent | 8b72d7e7ca610adf509c9fb5cd36b6b048cc8a9f (diff) | |
download | pkgsrc-f6726d0a8f52b2baeea839bb1018af4b98d494b1.tar.gz |
Initial import of ntfsprogs-1.9.4 into the packages collection.
The Linux-NTFS project (http://linux-ntfs.sf.net/) aims to
bring full support for the NTFS filesystem to the Linux
operating system. The ntfsprogs package currently consists of
a static library and utilities such as mkntfs, ntfscat,
ntfsls, ntfsresize, and ntfsundelete (for a full list of
included utilities see man 8 ntfsprogs after installation).
Provided in PR 27119 by Darrin B. Jewell, modified by myself to
remove dylib files from PLIST, add NetBSD statvfs compatibility, and
quieten a warning in one of the patches.
Darrin's patches perform the following changes:
. provide for redirection of error output without having an lvalue stderr
. support for NetBSD disklabels
. fix for ntfs_attr_pread to avoid reading a partial block
. workaround for darwin sys/mount.h namespace pollution
This package is currently configured with the gnome-vfs module disabled.
Diffstat (limited to 'sysutils/ntfsprogs/Makefile')
-rw-r--r-- | sysutils/ntfsprogs/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sysutils/ntfsprogs/Makefile b/sysutils/ntfsprogs/Makefile new file mode 100644 index 00000000000..4591e10a39f --- /dev/null +++ b/sysutils/ntfsprogs/Makefile @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/10/05 12:39:38 agc Exp $ +# + +DISTNAME= ntfsprogs-1.9.4 +CATEGORIES= sysutils +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=linux-ntfs/} + +MAINTAINER= tech-pkg@NetBSD.org +HOMEPAGE= http://linux-ntfs.sourceforge.net/ +COMMENT= Linux-NTFS project utilities for the Windows NT Filesystem (ntfs) + +GNU_CONFIGURE= yes +USE_LIBTOOL= yes + +CONFIGURE_ARGS+=--enable-debug + +# XXX support for this should be possibly integrated with other +# gnome pkgsrc and this could be a configurable option +CONFIGURE_ARGS+=--disable-gnome-vfs + +.include "../../mk/bsd.pkg.mk" |