Changes by: antona
Update of /cvsroot/linux-ntfs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv371
Modified Files:
TODO.include ntfsprogs.spec.in
Log Message:
Update spec file for ntfsmount utility to be in separate rpm ntfsprogs-fuse.
Index: TODO.include
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/TODO.include,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -p -r1.6 -r1.7
--- TODO.include 18 Jul 2005 13:51:17 -0000 1.6
+++ TODO.include 18 Jul 2005 15:59:38 -0000 1.7
@@ -2,6 +2,10 @@ Finish layout.h: in particular, add:
- more about EFS and the EFS attribute.
+Add usnjrnl.h (copy from kernel driver):
+
+- describe the $UsnJrnl on disk structures
+
Finish logfile.h: in particular, add:
- more about the $LogFile on disk structures
Index: ntfsprogs.spec.in
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs.spec.in,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -p -r1.12 -r1.13
--- ntfsprogs.spec.in 10 Mar 2004 21:52:35 -0000 1.12
+++ ntfsprogs.spec.in 18 Jul 2005 15:59:38 -0000 1.13
@@ -37,6 +37,18 @@ This package contains the NTFS GNOME vir
allows GNOME VFS clients to seamlessly utilize the NTFS library (libntfs).
+%package fuse
+Summary : NTFS FUSE module (ntfsmount)
+Group : System Environment/Base
+Requires : ntfsprogs = %{ver}-%{rel}
+Requires : fuse >= 2.3.0
+%description fuse
+This package contains the ntfsmount utility which is an NTFS filesystem in
+userspace (FUSE) module allowing users to mount an ntfs filesystem from
+userspace and accessing it using the functionality provided by the NTFS
+library (libntfs).
+
+
%package devel
Summary : files required to compile software that uses libntfs
Group : Development/System
@@ -51,7 +63,7 @@ with the NTFS library (libntfs).
%build
if [ -n "$LINGUAS" ]; then unset LINGUAS; fi
-%configure --enable-gnome-vfs
+%configure --enable-gnome-vfs --enable-fuse-module
make
@@ -75,7 +87,7 @@ rm -rf "$RPM_BUILD_ROOT"
%files
%defattr(-,root,root)
%doc AUTHORS COPYING CREDITS ChangeLog INSTALL NEWS README TODO.include TODO.libntfs TODO.ntfsprogs doc/CodingStyle doc/attribute_definitions doc/attributes.txt doc/compression.txt doc/tunable_settings doc/template.c doc/template.h doc/system_files.txt doc/system_security_descriptors.txt
-%{bindir}/*
+%{bindir}/ntfs[^m][^o]*
%{sbindir}/*
%{mandir}/man8/mkntfs.8*
%{mandir}/man8/ntfs*.8*
@@ -87,6 +99,11 @@ rm -rf "$RPM_BUILD_ROOT"
%{_libdir}/gnome-vfs-2.0/modules/libntfs-gnomevfs.*so*
%config %{_sysconfdir}/gnome-vfs-2.0/modules/libntfs.conf
+%files fuse
+%defattr(-,root,root)
+%{bindir}/ntfsmount*
+%{mandir}/man8/ntfsmount.8*
+
%files devel
%defattr(-,root,root)
%{_includedir}/*
@@ -94,6 +111,9 @@ rm -rf "$RPM_BUILD_ROOT"
%{_libdir}/gnome-vfs-2.0/modules/libntfs-gnomevfs.*a*
%changelog
+* Mon Jul 18 2005 Anton Altaparmakov <ai...@ca...>
+- Add ntfsmount fuse module in separate rpm ntfsprogs-fuse.
+
* Wed Mar 10 2004 Anton Altaparmakov <ai...@ca...>
- Cleanup descriptions ready for 1.9.0 release.
|