]> git.pld-linux.org Git - packages/xfsprogs.git/blob - xfsprogs.spec
- up to 2.0.1, STBR
[packages/xfsprogs.git] / xfsprogs.spec
1 # conditional build
2 #  --with static
3 Summary:        Tools for the XFS filesystem
4 Summary(pl):    Narzêdzia do systemu plików XFS
5 Name:           xfsprogs
6 Version:        2.0.1
7 Release:        1
8 License:        GPL
9 Group:          Applications/System
10 Source0:        ftp://linux-xfs.sgi.com/projects/xfs/download/cmd_tars/%{name}-%{version}.src.tar.gz
11 Patch0:         %{name}-miscfix-v2.patch
12 Patch1:         %{name}-install-sh.patch
13 BuildRequires:  autoconf
14 BuildRequires:  automake
15 BuildRequires:  bash
16 BuildRequires:  e2fsprogs-devel
17 URL:            http://oss.sgi.com/projects/xfs/
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 A set of commands to use the XFS filesystem, including mkfs.xfs.
22
23 XFS is a high performance journaling filesystem which originated on
24 the SGI IRIX platform. It is completely multi-threaded, can support
25 large files and large filesystems, extended attributes, variable block
26 sizes, is extent based, and makes extensive use of Btrees
27 (directories, extents, free space) to aid both performance and
28 scalability.
29
30 This implementation is on-disk compatible with the IRIX version of
31 XFS.
32
33 %description -l pl
34 Zbiór komend do u¿ytku z systemem plików XFS, w³±czaj±c w to mkfs.xfs.
35
36 XFS jest wysoko wydajnym systemem plików z kronik±, który oryginalnie
37 by³ u¿ywany na platformie SGI IRIX. Jest to w pe³ni wielow±tkowy,
38 obs³uguj±cy wielkie pliki oraz wielkie systemy, o rozszerzonych
39 atrybutach, zmiennych wielko¶ciach bloków, mocno wykorzystuj±cy
40 B-drzewa by uzyskaæ wysok± wydajno¶æ oraz skalowalno¶æ.
41
42 %package devel
43 Summary:        Header files and libraries to develop XFS software
44 Summary(pl):    Pliki nag³ówkowe i biblioteki
45 Group:          Development/Libraries
46
47 %description devel
48 Header files and libraries to develop software which operates on XFS
49 filesystems.
50
51 %description devel -l pl
52 Pliki nag³ówkowe i biblioteki potrzebne do rozwoju oprogramowania
53 operuj±cego na systemie plików XFS.
54
55 %package static
56 Summary:        Static XFS software libraries
57 Summary(pl):    Biblioteki statyczne do XFS
58 Group:          Development/Libraries
59
60 %description static
61 Static XFS software libraries.
62
63 %description static -l pl
64 Biblioteki statyczne do XFS.
65
66 %prep
67 %setup  -q
68 %patch0 -p1
69 %patch1 -p1
70
71 %build
72 DEBUG="%{?debug:-DDEBUG}%{!?debug:-DNDEBUG}"
73 OPTIMIZER="%{rpmcflags}"
74 export DEBUG OPTIMIZER
75 aclocal
76 autoconf
77 %configure \
78         %{!?_with_static:--enable-shared-uuid=yes} \
79         %{?_with_static:--disable-shared --disable-shared-uuid}
80
81 %{__make} \
82         %{?_with_static:LTLINK='$(LIBTOOL) --mode=link %{__cc} -all-static' LDFLAGS=-static}
83
84 %install
85 rm -rf $RPM_BUILD_ROOT
86
87 DIST_ROOT="$RPM_BUILD_ROOT"
88 DIST_INSTALL=`pwd`/install.manifest
89 DIST_INSTALL_DEV=`pwd`/install-dev.manifest
90 export DIST_ROOT DIST_INSTALL DIST_INSTALL_DEV
91 %{?_with_static:cp include/builddefs include/builddefs.tmp}
92 %{?_with_static:sed -e 's/\.lai/.la/' include/builddefs.tmp > include/builddefs}
93 %{__make} install DIST_MANIFEST="$DIST_INSTALL"
94 %{__make} install-dev DIST_MANIFEST="$DIST_INSTALL_DEV"
95
96 for man in attr_list_by_handle.3 attr_multi_by_handle.3 \
97            fd_to_handle.3 free_handle.3 fssetdm_by_handle.3 \
98            handle_to_fshandle.3 open_by_handle.3 path_to_fshandle.3 \
99            readlink_by_handle.3; do
100                 rm -f $RPM_BUILD_ROOT%{_mandir}/man3/$man
101                 echo ".so man3/path_to_handle.3" \
102                         > $RPM_BUILD_ROOT%{_mandir}/man3/$man
103 done
104
105 rm -f $RPM_BUILD_ROOT%{_mandir}/man8/xfs_info.8
106 echo ".so man8/xfs_growfs.8" > $RPM_BUILD_ROOT%{_mandir}/man8/xfs_info.8
107
108 gzip -9nf doc/{CHANGES,CREDITS,README.*}
109
110 %clean
111 rm -rf $RPM_BUILD_ROOT
112
113 %post   -p /sbin/ldconfig
114 %postun -p /sbin/ldconfig
115
116 %files
117 %defattr(644,root,root,755)
118 %doc doc/*.gz
119 %attr(755,root,root) /sbin/*
120 %attr(755,root,root) %{_sbindir}/*
121 %{!?_with_static:%attr(755,root,root) /lib/lib*.so.*}
122 %{_mandir}/man[185]/*
123
124 %files devel
125 %defattr(644,root,root,755)
126 %{_mandir}/man3/*
127 %{_includedir}/xfs
128
129 %files static
130 %defattr(644,root,root,755)
131 %{_libdir}/*.a
This page took 0.0787 seconds and 4 git commands to generate.