~ubuntu-branches/ubuntu/warty/linux-ntfs/warty

« back to all changes in this revision

Viewing changes to linux-ntfs.spec

  • Committer: Bazaar Package Importer
  • Author(s): David Martínez Moreno
  • Date: 2004-03-12 00:03:30 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040312000330-xv94ve7yg6bwplwu
Tags: 1.9.0-1
* New upstream release:
  - Merged Debian diff with upstream.
  - Fixed mkntfs for large volumes.
  - Add relocation support to ntfsresize. This modifies the command line
    options a little as well as the returned output so applications using
    ntfsresize might need modifications before they will work with the
    updated ntfsresize.
  - Revamped the build system completely.
  - Provide always own byteswap constant versions in order to avoid the mess
    that some architectures define only some of them (read m68k, ppc,
    mips...).
  - Made the warnings on 64 bit architectures go away.
  - Fixed lots of typos in the documentation.
  - Lots of fixes in general.
* Resolved several FTBFS (Fail To Build From Source) bugs (closes: #226989,
  #234104). With this, all the architectures go in sync again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
%define name    linux-ntfs
2
 
%define ver     1.6.0
3
 
%define rel     1
4
 
%define prefix  /usr
5
 
%define bindir  /usr/bin
6
 
%define sbindir /usr/sbin
7
 
%define mandir  /usr/share/man
8
 
 
9
 
 
10
 
Summary         : NTFS filesystem libraries and utilities
11
 
Name            : %{name}
12
 
Version         : %{ver}
13
 
Release         : %{rel}
14
 
Source          : http://prdownloads.sf.net/linux-ntfs/linux-ntfs-%{ver}.tar.gz
15
 
Buildroot       : %{_tmppath}/%{name}-root
16
 
Packager        : Anton Altaparmakov <aia21@cam.ac.uk>
17
 
License         : GPL
18
 
Group           : Applications/System
19
 
%description
20
 
The Linux-NTFS project (http://linux-ntfs.sf.net/) aims to bring full support
21
 
for the NTFS filesystem to the Linux operating system. Linux-NTFS currently
22
 
consists of a static library and utilities. This package contains the following
23
 
utilities:
24
 
        NtfsFix - Attempt to fix an NTFS partition that has been damaged by the
25
 
Linux NTFS driver. It should be run every time after you have used the Linux
26
 
NTFS driver to write to an NTFS partition to prevent massive data corruption
27
 
from happening when Windows mounts the partition.
28
 
IMPORTANT: Run this only *after* unmounting the partition in Linux but *before*
29
 
rebooting into Windows NT/2000! See man 8 ntfsfix for details.
30
 
        mkntfs - Format a partition with the NTFS filesystem. See man 8 mkntfs
31
 
for command line options.
32
 
 
33
 
%package devel
34
 
Summary         : files required to compile software that uses libntfs
35
 
Group           : Development/System
36
 
Requires        : linux-ntfs = %{ver}-%{rel}
37
 
%description devel
38
 
This package includes the header files and libraries needed to link software
39
 
with libntfs.
40
 
 
41
 
 
42
 
%prep
43
 
%setup
44
 
 
45
 
%build
46
 
if [ -n "$LINGUAS" ]; then unset LINGUAS; fi
47
 
%configure
48
 
make
49
 
 
50
 
 
51
 
%install
52
 
rm -rf "$RPM_BUILD_ROOT"
53
 
make DESTDIR="$RPM_BUILD_ROOT" install-strip
54
 
 
55
 
 
56
 
%clean
57
 
rm -rf "$RPM_BUILD_ROOT"
58
 
 
59
 
 
60
 
%files
61
 
%defattr(-,root,root)
62
 
%doc AUTHORS COPYING CREDITS ChangeLog INSTALL NEWS README TODO.ntfsfix TODO.include TODO.mkntfs 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
63
 
%{bindir}/*
64
 
%{sbindir}/*
65
 
%{mandir}/*/*
66
 
%{prefix}/lib/*.so*
67
 
 
68
 
 
69
 
%files devel
70
 
%defattr(-,root,root)
71
 
%{prefix}/include/*
72
 
%{prefix}/lib/*.a*
73
 
%{prefix}/lib/*.la*
74
 
 
75
 
%changelog
76
 
* Tue Mar 12 2002 Anton Altaparmakov <aia21@cam.ac.uk>
77
 
- update %description text
78
 
 
79
 
* Sat Jan 26 2002 Anton Altaparmakov <aia21@cam.ac.uk>
80
 
- update %description text
81
 
- make dependencies pick the right version automatically
82
 
 
83
 
* Thu Jan 10 2002 Anton Altaparmakov <aia21@cam.ac.uk>
84
 
- add dependency on linux-ntfs to linux-ntfs-devel
85
 
- update %description text
86
 
 
87
 
* Fri Nov 09 2001 Anton Altaparmakov <aia21@cam.ac.uk>
88
 
- update %description text
89
 
- (re)enable installation of shared libraries
90
 
 
91
 
* Wed Aug 22 2001 Anton Altaparmakov <aia21@cam.ac.uk>
92
 
- update %description text
93
 
 
94
 
* Thu Aug 2 2001 Anton Altaparmakov <aia21@cam.ac.uk>
95
 
- update %description text
96
 
 
97
 
* Wed Jul 25 2001 Anton Altaparmakov <aia21@cam.ac.uk>
98
 
- include sbin install path (mkntfs now is in sbin)
99
 
 
100
 
* Tue Jul 24 2001 Anton Altaparmakov <aia21@cam.ac.uk>
101
 
- update %description text
102
 
 
103
 
* Mon Jun 11 2001 Anton Altaparmakov <aia21@cam.ac.uk>
104
 
- remove duplicate %configure options
105
 
- remove shared library installation as shared libraries are disabled by
106
 
default
107
 
 
108
 
* Sun Jun 10 2001 Anton Altaparmakov <aia21@cam.ac.uk>
109
 
- add man pages stuff
110
 
- update info text
111
 
- add new doc/ stuff
112
 
- modify installation to do install-strip instead of install followed by manual
113
 
stripping
114
 
- update download URL to be the fast sourceforge http download server
115
 
 
116
 
* Fri Feb 2 2001 Anton Altaparmakov <aia21@cam.ac.uk>
117
 
- started changelog
118