scim-honoka-plugin-anthy-vl.spec 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. %define src_name honoka-plugin-anthy
  2. %define version 0.9.0
  3. %define release 2%{_dist_release}
  4. %define honoka_version 0.9.0
  5. %define anthy_version 6606
  6. Name: scim-honoka-plugin-anthy
  7. Summary: An Anthy input plugin for HONOKA-TAN
  8. Summary(ja): ほのかたんのための Anthy 入力プラグイン
  9. Version: %{version}
  10. Release: %{release}
  11. Group: System Environment/Libraries
  12. License: GPLv2
  13. URL: http://sourceforge.jp/projects/scim-imengine/
  14. Source0: %{src_name}-%{version}.tar.bz2
  15. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  16. Requires: anthy >= %{anthy_version}
  17. Requires: scim-honoka-plugin-ascii >= %{honoka_version}
  18. Requires: scim-honoka-plugin-kanainput >= %{honoka_version}
  19. Requires: scim-honoka-plugin-romkan >= %{honoka_version}
  20. Requires: scim-honoka-plugin-simpleprediction >= %{honoka_version}
  21. BuildRequires: scim-honoka-devel >= %{honoka_version}
  22. BuildRequires: anthy-devel >= %{anthy_version}
  23. BuildRequires: automake
  24. BuildRequires: libtool-ltdl
  25. %description
  26. scim-honoka-plugin-anthy is an Anthy input plugin for HONOKA-TAN.
  27. %description -l ja
  28. scim-honoka-plugin-anthy はほのかたんのための Anthy 入力プラグインです.
  29. %prep
  30. %setup -q -n %{src_name}-%{version}
  31. %build
  32. autoreconf
  33. [[ -f configure ]] || ./bootstrap
  34. %configure
  35. # (tv) parallel build is broken: --> OK???
  36. %{__make} %{?_smp_mflags}
  37. %install
  38. %{__rm} -rf $RPM_BUILD_ROOT
  39. %{__make} DESTDIR=$RPM_BUILD_ROOT install
  40. # remove unpackaged files
  41. rm -f $RPM_BUILD_ROOT%{_libdir}/scim-1.0/*/honoka/*.{a,la}
  42. %find_lang %{src_name}
  43. %clean
  44. %{__rm} -rf $RPM_BUILD_ROOT
  45. %post -p /sbin/ldconfig
  46. %postun -p /sbin/ldconfig
  47. %files -f %{src_name}.lang
  48. %defattr(-,root,root)
  49. %doc AUTHORS COPYING ChangeLog README.jp
  50. %{_libdir}/scim-1.0/*/honoka/*.so
  51. %changelog
  52. * Sat Oct 25 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.9.0-2
  53. - spec in utf-8
  54. * Sat Mar 22 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.9.0-1vl5
  55. - initial build for VineSeed
  56. ### end of file