reiserfsprogs-vl.spec 2.9 KB

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