reiserfsprogs-vl.spec 2.7 KB

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