sagasu-vl.spec 2.5 KB

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