blob: b0fd0e2d321a3ed83e0fdbf82ad017f72864dd25 [file] [log] [blame]
Theodore Ts'od606c302003-03-16 20:40:36 -05001%define _root_sbindir /sbin
2%define _root_libdir /%{_lib}
3
Theodore Ts'o8a31ffe1999-10-23 03:33:15 +00004Summary: Utilities for managing the second extended (ext2) filesystem.
Theodore Ts'o24757fa1997-04-29 17:39:27 +00005Name: e2fsprogs
Theodore Ts'obff0cc92003-03-23 01:37:53 -05006Version: @E2FSPROGS_VERSION@
Theodore Ts'o24757fa1997-04-29 17:39:27 +00007Release: 0
8Copyright: GPL
Theodore Ts'o8a31ffe1999-10-23 03:33:15 +00009Group: System Environment/Base
Theodore Ts'od606c302003-03-16 20:40:36 -050010Source: ftp://download.sourceforge.net/pub/sourceforge/e2fsprogs/e2fsprogs-%{version}.tar.gz
11Url: http://e2fsprogs.sourceforge.net/
Theodore Ts'of9e67062000-07-13 23:25:54 +000012Prereq: /sbin/ldconfig
Theodore Ts'od606c302003-03-16 20:40:36 -050013BuildRoot: %{_tmppath}/%{name}-root
Theodore Ts'o24757fa1997-04-29 17:39:27 +000014
15%description
Theodore Ts'o8a31ffe1999-10-23 03:33:15 +000016The e2fsprogs package contains a number of utilities for creating,
Theodore Ts'ocf1b23e2004-03-04 21:05:14 -050017checking, modifying, and correcting any inconsistencies in second
18extended (ext2) filesystems. E2fsprogs contains e2fsck (used to
19repair filesystem inconsistencies after an unclean shutdown), mke2fs
20(used to initialize a partition to contain an empty ext2 filesystem),
21debugfs (used to examine the internal structure of a filesystem, to
22manually repair a corrupted filesystem or to create test cases for
23e2fsck), tune2fs (used to modify filesystem parameters), resize2fs to
24grow and shrink unmounted ext2 filesystems, and most of the other core
25ext2fs filesystem utilities.
Theodore Ts'o8a31ffe1999-10-23 03:33:15 +000026
27You should install the e2fsprogs package if you are using any ext2
28filesystems (if you're not sure, you probably should install this
Theodore Ts'od606c302003-03-16 20:40:36 -050029package). You may also need to install it (even if you don't use
30ext2) for the libuuid and libblkid libraries and fsck tool that are
31included here.
Theodore Ts'o24757fa1997-04-29 17:39:27 +000032
33%package devel
Theodore Ts'o8a31ffe1999-10-23 03:33:15 +000034Summary: Ext2 filesystem-specific static libraries and headers.
Theodore Ts'o24757fa1997-04-29 17:39:27 +000035Group: Development/Libraries
Theodore Ts'od606c302003-03-16 20:40:36 -050036Requires: e2fsprogs = %{version}
37Prereq: /sbin/install-info
Theodore Ts'o24757fa1997-04-29 17:39:27 +000038
Theodore Ts'of9e67062000-07-13 23:25:54 +000039%description devel
Theodore Ts'o8a31ffe1999-10-23 03:33:15 +000040E2fsprogs-devel contains the libraries and header files needed to
41develop second extended (ext2) filesystem-specific programs.
42
43You should install e2fsprogs-devel if you want to develop ext2
Theodore Ts'of9e67062000-07-13 23:25:54 +000044filesystem-specific programs. If you install e2fsprogs-devel, you'll
Theodore Ts'ocf1b23e2004-03-04 21:05:14 -050045also want to install e2fsprogs.
Theodore Ts'o24757fa1997-04-29 17:39:27 +000046
47%prep
48%setup
49
Theodore Ts'od606c302003-03-16 20:40:36 -050050%build
Theodore Ts'ocf1b23e2004-03-04 21:05:14 -050051%configure --enable-elf-shlibs --enable-nls
52make
Theodore Ts'o24757fa1997-04-29 17:39:27 +000053
54%install
Theodore Ts'of9e67062000-07-13 23:25:54 +000055rm -rf $RPM_BUILD_ROOT
Theodore Ts'o24757fa1997-04-29 17:39:27 +000056export PATH=/sbin:$PATH
Theodore Ts'od606c302003-03-16 20:40:36 -050057make install install-libs DESTDIR="$RPM_BUILD_ROOT" \
58 root_sbindir=%{_root_sbindir} root_libdir=%{_root_libdir}
Theodore Ts'ocf1b23e2004-03-04 21:05:14 -050059/sbin/ldconfig -n ${RPM_BUILD_ROOT}%{_libdir}
60%find_lang %{name}
Theodore Ts'o24757fa1997-04-29 17:39:27 +000061
Theodore Ts'o24757fa1997-04-29 17:39:27 +000062%clean
63rm -rf $RPM_BUILD_ROOT
64
Theodore Ts'od606c302003-03-16 20:40:36 -050065%post -p /sbin/ldconfig
Theodore Ts'o24757fa1997-04-29 17:39:27 +000066
Theodore Ts'of9e67062000-07-13 23:25:54 +000067%postun -p /sbin/ldconfig
68
69%post devel
Theodore Ts'od606c302003-03-16 20:40:36 -050070if [ -x /sbin/install-info -a -f %{_infodir}/libext2fs.info.gz ]; then
Theodore Ts'ocf1b23e2004-03-04 21:05:14 -050071 /sbin/install-info %{_infodir}/libext2fs.info.gz %{_infodir}/dir
Theodore Ts'of9e67062000-07-13 23:25:54 +000072fi
Theodore Ts'ocf1b23e2004-03-04 21:05:14 -050073exit 0
Theodore Ts'of9e67062000-07-13 23:25:54 +000074
75%postun devel
Theodore Ts'od606c302003-03-16 20:40:36 -050076if [ $1 = 0 -a -x /sbin/install-info -a -f %{_infodir}/libext2fs.info.gz ]; then
Theodore Ts'of5955dd2000-10-25 02:38:39 +000077 /sbin/install-info --delete %{_infodir}/libext2fs.info.gz %{_infodir}/dir
Theodore Ts'of9e67062000-07-13 23:25:54 +000078fi
Theodore Ts'ocf1b23e2004-03-04 21:05:14 -050079exit 0
Theodore Ts'o24757fa1997-04-29 17:39:27 +000080
Theodore Ts'ocf1b23e2004-03-04 21:05:14 -050081%files -f %{name}.lang
Theodore Ts'of9e67062000-07-13 23:25:54 +000082%defattr(-,root,root)
83%doc README RELEASE-NOTES
Theodore Ts'o24757fa1997-04-29 17:39:27 +000084
Theodore Ts'od606c302003-03-16 20:40:36 -050085%{_root_sbindir}/badblocks
Theodore Ts'ocf1b23e2004-03-04 21:05:14 -050086%{_root_sbindir}/blkid
Theodore Ts'od606c302003-03-16 20:40:36 -050087%{_root_sbindir}/debugfs
88%{_root_sbindir}/dumpe2fs
89%{_root_sbindir}/e2fsck
90%{_root_sbindir}/e2image
91%{_root_sbindir}/e2label
92%{_root_sbindir}/findfs
93%{_root_sbindir}/fsck
94%{_root_sbindir}/fsck.ext2
95%{_root_sbindir}/fsck.ext3
Theodore Ts'of9ddad52003-04-14 18:05:12 -040096%{_root_sbindir}/logsave
Theodore Ts'od606c302003-03-16 20:40:36 -050097%{_root_sbindir}/mke2fs
98%{_root_sbindir}/mkfs.ext2
99%{_root_sbindir}/mkfs.ext3
100%{_root_sbindir}/resize2fs
101%{_root_sbindir}/tune2fs
Theodore Ts'o477b2352003-12-25 14:31:08 -0500102%{_sbindir}/filefrag
Theodore Ts'ocf1b23e2004-03-04 21:05:14 -0500103%{_sbindir}/mklost+found
Theodore Ts'o24757fa1997-04-29 17:39:27 +0000104
Theodore Ts'ocf1b23e2004-03-04 21:05:14 -0500105%{_root_libdir}/libblkid.so.*
Theodore Ts'od606c302003-03-16 20:40:36 -0500106%{_root_libdir}/libcom_err.so.*
107%{_root_libdir}/libe2p.so.*
108%{_root_libdir}/libext2fs.so.*
109%{_root_libdir}/libss.so.*
Theodore Ts'od606c302003-03-16 20:40:36 -0500110%{_root_libdir}/libuuid.so.*
Theodore Ts'of9e67062000-07-13 23:25:54 +0000111
Theodore Ts'od606c302003-03-16 20:40:36 -0500112%{_bindir}/chattr
113%{_bindir}/lsattr
114%{_bindir}/uuidgen
Theodore Ts'o16c1ce82000-10-25 14:59:13 +0000115%{_mandir}/man1/chattr.1*
116%{_mandir}/man1/lsattr.1*
117%{_mandir}/man1/uuidgen.1*
Theodore Ts'of9e67062000-07-13 23:25:54 +0000118
Theodore Ts'o16c1ce82000-10-25 14:59:13 +0000119%{_mandir}/man8/badblocks.8*
Theodore Ts'od606c302003-03-16 20:40:36 -0500120%{_mandir}/man8/blkid.8*
Theodore Ts'o16c1ce82000-10-25 14:59:13 +0000121%{_mandir}/man8/debugfs.8*
122%{_mandir}/man8/dumpe2fs.8*
123%{_mandir}/man8/e2fsck.8*
Theodore Ts'od606c302003-03-16 20:40:36 -0500124%{_mandir}/man8/findfs.8*
125%{_mandir}/man8/fsck.ext2.8*
126%{_mandir}/man8/fsck.ext3.8*
Theodore Ts'od5d92152001-05-11 06:19:33 +0000127%{_mandir}/man8/e2image.8*
Theodore Ts'od606c302003-03-16 20:40:36 -0500128%{_mandir}/man8/e2label.8*
Theodore Ts'o16c1ce82000-10-25 14:59:13 +0000129%{_mandir}/man8/fsck.8*
Theodore Ts'of9ddad52003-04-14 18:05:12 -0400130%{_mandir}/man8/logsave.8*
Theodore Ts'o16c1ce82000-10-25 14:59:13 +0000131%{_mandir}/man8/mke2fs.8*
Theodore Ts'od606c302003-03-16 20:40:36 -0500132%{_mandir}/man8/mkfs.ext2.8*
133%{_mandir}/man8/mkfs.ext3.8*
Theodore Ts'o16c1ce82000-10-25 14:59:13 +0000134%{_mandir}/man8/mklost+found.8*
135%{_mandir}/man8/resize2fs.8*
136%{_mandir}/man8/tune2fs.8*
Theodore Ts'o477b2352003-12-25 14:31:08 -0500137%{_mandir}/man8/filefrag.8*
Theodore Ts'o24757fa1997-04-29 17:39:27 +0000138
139%files devel
Theodore Ts'of9e67062000-07-13 23:25:54 +0000140%defattr(-,root,root)
Theodore Ts'of5955dd2000-10-25 02:38:39 +0000141%{_infodir}/libext2fs.info*
Theodore Ts'od606c302003-03-16 20:40:36 -0500142%{_bindir}/compile_et
143%{_bindir}/mk_cmds
Theodore Ts'of9e67062000-07-13 23:25:54 +0000144
Theodore Ts'ocf1b23e2004-03-04 21:05:14 -0500145%{_libdir}/libblkid.a
146%{_libdir}/libblkid.so
Theodore Ts'od606c302003-03-16 20:40:36 -0500147%{_libdir}/libcom_err.a
148%{_libdir}/libcom_err.so
149%{_libdir}/libe2p.a
150%{_libdir}/libe2p.so
151%{_libdir}/libext2fs.a
152%{_libdir}/libext2fs.so
153%{_libdir}/libss.a
154%{_libdir}/libss.so
Theodore Ts'od606c302003-03-16 20:40:36 -0500155%{_libdir}/libuuid.a
156%{_libdir}/libuuid.so
Theodore Ts'of9e67062000-07-13 23:25:54 +0000157
Theodore Ts'od606c302003-03-16 20:40:36 -0500158%{_datadir}/et
159%{_datadir}/ss
160%{_includedir}/blkid
Theodore Ts'ocf1b23e2004-03-04 21:05:14 -0500161%{_includedir}/e2p
Theodore Ts'od606c302003-03-16 20:40:36 -0500162%{_includedir}/et
163%{_includedir}/ext2fs
164%{_includedir}/ss
165%{_includedir}/uuid
Theodore Ts'o16c1ce82000-10-25 14:59:13 +0000166%{_mandir}/man1/compile_et.1*
Theodore Ts'ocf1b23e2004-03-04 21:05:14 -0500167%{_mandir}/man1/mk_cmds.1*
Theodore Ts'o16c1ce82000-10-25 14:59:13 +0000168%{_mandir}/man3/com_err.3*
Theodore Ts'od606c302003-03-16 20:40:36 -0500169%{_mandir}/man3/libblkid.3*
Theodore Ts'ocf1b23e2004-03-04 21:05:14 -0500170%{_mandir}/man3/libuuid.3*
171%{_mandir}/man3/uuid_clear.3*
172%{_mandir}/man3/uuid_compare.3*
173%{_mandir}/man3/uuid_copy.3*
174%{_mandir}/man3/uuid_generate.3*
175%{_mandir}/man3/uuid_generate_random.3*
176%{_mandir}/man3/uuid_generate_time.3*
177%{_mandir}/man3/uuid_is_null.3*
178%{_mandir}/man3/uuid_parse.3*
179%{_mandir}/man3/uuid_time.3*
180%{_mandir}/man3/uuid_unparse.3*
181