sagasu-vl.spec 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. Name: sagasu
  2. Summary: GNOME tool to find strings in a set of files
  3. Summary(ja): ファイル内の語句を検索するための GNOME ツール
  4. Version: 2.0.12
  5. Release: 1%{?_dist_release}
  6. License: GPLv2+
  7. Group: Applications/Text
  8. Source: %{name}-%{version}.tar.gz
  9. Patch0: fix_misc.patch
  10. Patch1: fix_build.patch
  11. URL: http://perso.b2b2c.ca/sarrazip/dev/sagasu.html
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  13. BuildRequires: bison
  14. BuildRequires: desktop-file-utils
  15. BuildRequires: gettext
  16. BuildRequires: gtk2-devel >= 2.6.0
  17. BuildRequires: libgnomeui-devel >= 2.8.0
  18. BuildRequires: libSM-devel
  19. BuildRequires: perl
  20. Requires: libgnomeui >= 2.8.0
  21. %description
  22. GNOME tool to find words in a set of files.
  23. The user specifies the search directory and the set of files
  24. to be searched. Double-clicking on a search result launches a
  25. user command that can for example load the file in an editor
  26. at the appropriate line. The search can optionally ignore
  27. CVS directories.
  28. %description -l ja
  29. ファイル内の語句を検索するための GNOME ツールです。
  30. ユーザーは検索するディレクトリとファイルの集合を指定します。
  31. 検索結果をダブルクリックするとユーザコマンドを起動し、
  32. 例えば、エディタを起動してエディタの適切な行にファイルを読み込むことが可能です。
  33. 検索はオプションで CVS ディレクトリを除外することができます。
  34. %prep
  35. %setup -q
  36. %patch0 -p1
  37. %patch1 -p1
  38. #./autogen.sh
  39. %build
  40. %configure --disable-dependency-tracking --prefix=/usr
  41. make %{?_smp_mflags}
  42. %install
  43. rm -fR $RPM_BUILD_ROOT
  44. make DESTDIR=$RPM_BUILD_ROOT install
  45. desktop-file-install --vendor="" \
  46. --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \
  47. --add-category="Utility" \
  48. --delete-original \
  49. $RPM_BUILD_ROOT/%{_datadir}/applications/%{name}.desktop
  50. %find_lang %{name}
  51. %post
  52. update-desktop-database > /dev/null 2>&1 || :
  53. %postun
  54. update-desktop-database > /dev/null 2>&1 || :
  55. %clean
  56. rm -fR $RPM_BUILD_ROOT
  57. %files -f %{name}.lang
  58. %defattr(-, root, root)
  59. %doc AUTHORS COPYING ChangeLog NEWS README TODO
  60. %{_bindir}/*
  61. %{_datadir}/applications/*
  62. %{_datadir}/pixmaps/*
  63. %{_datadir}/%{name}
  64. #%{_datadir}/sounds/%{name}
  65. %{_datadir}/gnome/help/*/*/*
  66. %{_mandir}/man?/*
  67. %changelog
  68. * Fri Dec 14 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.0.12-1
  69. - new upstream release
  70. - fixed Patch0 a bit
  71. - added Patch1 to fix build error
  72. * Tue Feb 07 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.0.10-2
  73. - added BuildRequires: libSM-devel
  74. * Sat Jul 3 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.0.10-1
  75. - initial build for VineSeed