~ubuntu-branches/ubuntu/lucid/linux-ntfs/lucid

« back to all changes in this revision

Viewing changes to ntfsprogs.spec.in

  • Committer: Bazaar Package Importer
  • Author(s): David Martínez Moreno
  • Date: 2005-11-08 20:20:23 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20051108202023-dpn4lutm8o0div8g
Tags: 1.12.1-1
* New upstream release (closes: #332930):
  - Fixed lots of memory leaks in the tools.
  - ntfsmount now uses the new API, and it has several fixes.
  - Support journals which have been modified by chkdsk.
  - New API for creating hard links, index handling, high-level creation and
    deletion of files and directories.
  - New utility ntfscmp (make extra) which compares two NTFS volumes and
    tell the differences. It's used for development, debugging, testing, etc.
  - Added robustness to several tools.
  - ntfsclone: fix saving by sectors during --rescue.
  - ntfsmount: Add 'locale' option and change interface to 'ntfsmount device
    mount_point'.
  - Fixed problem with kernel 2.4 and mkntfs.
  - Change ALL utilities to display the libntfs version they are running on.
    This should make debugging easier in the case that people are running
    mismatched utilities/library.
* This new release fixes problems with libfuse 2.4.0 (closes: #336357).
* Fixed a lot of typos in the manpages, kindly submitted by A Costa. Thanks!
  (closes: #336143, #336144, #336145, #336147, #336148).
* Fixed a couple of typos by me.
* debian/control: The SONAME of libntfs was bumped. Created new package
  (libntfs8) and removed the old one.
* debian/copyright: Updated the FSF postal address.
* Added debian/ntfsprogs.links in order to ship mkfs.ntfs and
  mount.ntfs-fuse.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
allows GNOME VFS clients to seamlessly utilize the NTFS library (libntfs).
38
38
 
39
39
 
 
40
%package fuse
 
41
Summary         : NTFS FUSE module (ntfsmount)
 
42
Group           : System Environment/Base
 
43
Requires        : ntfsprogs = %{ver}-%{rel}
 
44
Requires        : fuse >= 2.3.0
 
45
%description fuse
 
46
This package contains the ntfsmount utility which is an NTFS filesystem in
 
47
userspace (FUSE) module allowing users to mount an ntfs filesystem from
 
48
userspace and accessing it using the functionality provided by the NTFS
 
49
library (libntfs).
 
50
 
 
51
 
40
52
%package devel
41
53
Summary         : files required to compile software that uses libntfs
42
54
Group           : Development/System
51
63
 
52
64
%build
53
65
if [ -n "$LINGUAS" ]; then unset LINGUAS; fi
54
 
%configure --enable-gnome-vfs
 
66
%configure --enable-gnome-vfs --enable-fuse-module
55
67
make
56
68
 
57
69
 
75
87
%files
76
88
%defattr(-,root,root)
77
89
%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
78
 
%{bindir}/*
 
90
%{bindir}/ntfs[^m][^o]*
79
91
%{sbindir}/*
 
92
/sbin/mkfs.ntfs
80
93
%{mandir}/man8/mkntfs.8*
81
 
%{mandir}/man8/ntfs*.8*
 
94
%{mandir}/man8/mkfs.ntfs.8*
 
95
%{mandir}/man8/ntfs[^m][^o]*.8*
82
96
%{_libdir}/libntfs.*so*
83
97
 
84
98
%files gnomevfs
87
101
%{_libdir}/gnome-vfs-2.0/modules/libntfs-gnomevfs.*so*
88
102
%config %{_sysconfdir}/gnome-vfs-2.0/modules/libntfs.conf
89
103
 
 
104
%files fuse
 
105
%defattr(-,root,root)
 
106
%{bindir}/ntfsmount*
 
107
/sbin/mount.ntfs-fuse
 
108
%{mandir}/man8/ntfsmount.8*
 
109
%{mandir}/man8/mount.ntfs-fuse.8*
 
110
 
90
111
%files devel
91
112
%defattr(-,root,root)
92
113
%{_includedir}/*
94
115
%{_libdir}/gnome-vfs-2.0/modules/libntfs-gnomevfs.*a*
95
116
 
96
117
%changelog
 
118
* Fri Oct 7 2005 Anton Altaparmakov <aia21@cantab.net>
 
119
- Fix the file distribution after new binaries have been added as they were
 
120
  ending up in the wrong rpms.
 
121
 
 
122
* Mon Aug 15 2005 Szabolcs Szakacsits <szaka@sienet.hu>
 
123
- Add mkfs.ntfs.
 
124
 
 
125
* Mon Jul 18 2005 Anton Altaparmakov <aia21@cantab.net>
 
126
- Add ntfsmount fuse module in separate rpm ntfsprogs-fuse.
 
127
 
97
128
* Wed Mar 10 2004 Anton Altaparmakov <aia21@cantab.net>
98
129
- Cleanup descriptions ready for 1.9.0 release.
99
130