scim-input-pad-vl.spec 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. Summary: an onscreen input pad used to input some symbols very easily
  2. Summary(ja): とても簡単に様々なシンボルを入力できる入力パッド
  3. Name: scim-input-pad
  4. Version: 0.1.1
  5. Release: 1%{?_dist_release}
  6. Vendor: Project Vine
  7. Distribution: Vine Linux
  8. URL: http://www.scim-im.org/
  9. Source0: http://jaist.dl.sourceforge.net/sourceforge/scim/%{name}-%{version}.tar.gz
  10. Patch0: scim-input-pad-0.1.1-libexecdir.patch
  11. License: GPL 2
  12. Group: System Environment/Libraries
  13. BuildRoot: %{_tmppath}/%{name}-root
  14. %description
  15. It's an onscreen input pad used to input some symbols very easily.
  16. All symbols are stored into pure text files. Several predefined files
  17. are shipped within this package. They are:
  18. data/base.pad includes some common symbols,
  19. eg. Technical Symbols, Punctuations etc.
  20. data/japanese.pad includes Japanese Katakana and Hiragana symbols.
  21. data/chinese.pad includes Chinese numbers, radicals etc.
  22. data/keyboard.pad includes some special keyboard events,
  23. like dead keys, composing keys etc.
  24. %prep
  25. %setup -q
  26. %patch0 -p1 -b .libexecdir
  27. %build
  28. # running for Patch0
  29. autoconf
  30. %configure
  31. make
  32. %install
  33. rm -rf %{buildroot}
  34. make install DESTDIR=%{buildroot}
  35. %find_lang %{name}
  36. # remove unpackaged files
  37. rm -rf %{buildroot}%{_libdir}/libscim-input-pad.{a,la}
  38. rm -rf %{buildroot}%{_libdir}/scim-1.0/1.4.0/Helper/input-pad.{a,la}
  39. %clean
  40. rm -rf %{buildroot}
  41. %files -f %{name}.lang
  42. %defattr(-,root,root)
  43. %doc AUTHORS COPYING ChangeLog NEWS README TODO
  44. %{_bindir}/scim-input-pad
  45. %{_libdir}/libscim-input-pad.so*
  46. %{_libdir}/scim-1.0/1.4.0/Helper/input-pad.so
  47. %{_datadir}/scim/icons/input-pad.png
  48. %dir %{_datadir}/scim/input-pad
  49. %{_datadir}/scim/input-pad/base.pad
  50. %{_datadir}/scim/input-pad/chinese.pad
  51. %{_datadir}/scim/input-pad/japanese.pad
  52. %{_datadir}/scim/input-pad/keyboard.pad
  53. %changelog
  54. * Sat Jul 26 2008 Shu KONNO <owa@bg.wakwak.com> 0.1.1-1vl5
  55. - applied new versioning policy and spec in utf-8
  56. * Sun Nov 25 2007 IWAI, Masaharu <iwai@alib.jp> 0.1.1-0vl2
  57. - add libexecdir patch (Patch0): <VineLinux:565>
  58. - running autoconf
  59. * Tue Apr 11 2006 IWAI, Masaharu <iwai@alib.jp> 0.1.1-0vl1
  60. - Initial build.