source: projects/specs/branches/6/r/reiserfsprogs/reiserfsprogs-vl.spec @ 2314

Revision 2314, 2.9 KB checked in by Takemikaduchi, 13 years ago (diff)

libewf: new package, others: new upstream release

Line 
1Summary: Utilities belonging to the Reiser filesystem
2Summary(ja): ReiserFS ファイルシステム用のユーティリティ
3Name: reiserfsprogs
4Version: 3.6.21
5Release: 1%{?_dist_release}
6Group: System Environment/Base
7License: GPL
8Source0: reiserfsprogs-%{version}.tar.bz2
9#Patch0: reiserfsprogs-%{version}-detectkernel.patch
10Patch1: header-fix.patch
11
12Conflicts: kernel-utils < 2.2.19-0vl15
13BuildRequires: e2fsprogs-devel
14BuildRequires: libuuid-devel
15BuildRoot: %{_tmppath}/%{name}-%{version}-root
16Vendor: Project Vine
17Distribution: Vine Linux
18
19%description
20The reiserfsprogs package contains programs for creating (mkreiserfs),
21checking and correcting any inconsistencies (reiserfsck) and resizing
22(resize_reiserfs) of a reiserfs filesystem.
23
24%description -l ja
25reiserfsprogs パッケージは、ReiserFS の作成(mkreiserfs)、整合性のチェック
26と修整(reiserfsck)、ファイルシステムサイズの変更(resize_reiserfs)、をする
27ためのプログラムを含んでいます。
28
29%prep
30%setup -q
31#%patch0 -b .detectkernel
32#%patch1 -p1
33
34%build
35find . -name "config.cache" |xargs rm -f
36CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" \
37./configure --sbindir=%{_syssbindir} --mandir=%{_mandir}
38make all
39
40%install
41rm -rf %{buildroot}
42mkdir -p %{buildroot}%{_syssbindir}
43make DESTDIR=%{buildroot} install
44( cd %{buildroot}%{_syssbindir}
45  ln -sf reiserfsck fsck.reiserfs
46  ln -sf mkreiserfs mkfs.reiserfs )
47
48%clean
49rm -rf %{buildroot}
50
51%files
52%defattr(-,root,root)
53%doc AUTHORS COPYING CREDITS README NEWS ChangeLog
54%{_syssbindir}/*
55%{_mandir}/*/*
56
57%changelog
58* Tue Dec 07 2008 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.21-1
59- new upstream release
60- drop Patch1
61- add BuildRequires: libuuid-devel
62
63* Mon Jun  9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.6.19-1
64- applied new versinoing policy
65
66* Sat Jul  7 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.6.19-0vl2
67- rebuilt with new toolchain
68- added Patch1 from Fedora
69  * Mon Jun  5 2006 Dave Jones <davej@redhat.com>
70  - Remove broken asm/unaligned include. (#191889)
71- added e2fsprogs-devel to BuildRequires
72
73* Sat Dec 25 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.6.19-0vl1
74- new upstream release
75
76* Wed Jun  2 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.6.17-0vl1
77- new upstream release
78- added some files to %doc
79
80* Sun Jul 27 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.6.10-0vl1
81- rebuild with new toolchains
82- new upstream release
83
84* Sun Sep 29 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.3-0vl1
85- new upstream release
86
87* Sat Aug 18 2001 Toru Sagami <sagami@vinelinux.org>
88- 3.x.0j-1vl3: create mkfs.reiserfs fsck.reisrfs symlinks
89
90* Mon Aug  6 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 3.x.0j-1vl2
91- add Patch0 for mkreiserfs to detect kernel version and
92  use old type reiser filesystem.
93
94* Sun Aug  5 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 3.x.0j-1vl1
95- build from original reiserfsprogs specs.
96- clean up spec file for Vine Linux.
97- add Japanese Summary and Description.
Note: See TracBrowser for help on using the repository browser.