sagasu-vl.spec 2.3 KB

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