source: projects/specs/trunk/r/reiserfsprogs/reiserfsprogs-vl.spec @ 521

Revision 521, 2.7 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

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