lxterminal-vl.spec 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. Name: lxterminal
  2. Version: 0.2.0
  3. Release: 2%{?_dist_release}
  4. Summary: Desktop-independent VTE-based terminal emulator
  5. #Summary(de): Desktup-unabhängiger VTE-basierter Terminal Emulator
  6. Summary(ja): デスクトップに依存しない VTE ベースのターミナルエミュレータ
  7. Group: User Interface/Desktops
  8. License: GPLv2+
  9. URL: http://lxde.sourceforge.net/
  10. Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.gz
  11. #Patch0: lxterminal-new-tab-cwd.patch
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  13. Vendor: Project Vine
  14. Distribution: Vine Linux
  15. BuildRequires: gtk2-devel >= 2.14 vte-devel
  16. BuildRequires: desktop-file-utils intltool gettext
  17. %description
  18. LXterminal is a VTE-based terminal emulator with support for multiple tabs.
  19. It is completely desktop-independent and does not have any unnecessary
  20. dependencies. In order to reduce memory usage and increase the performance
  21. all instances of the terminal are sharing a single process.
  22. %description -l ja
  23. LXterminal は複数タブをサポートした VTE ベースのターミナルエミュレータです。
  24. 完全にデスクトップから独立し、不要な依存をもちません。
  25. メモリ使用量を抑え性能を向上させるため、ターミナルのすべての
  26. インスタンスが1つのプロセスに共有されています。
  27. #%description -l de
  28. #LXTerminal ist ein VTE-basierter Terminalemulator mit Unterstützung für
  29. #mehrere Reiter. Er ist komplett desktop-unabhängig und hat keine unnötigen
  30. #Abhängigkeiten. Um den Speicherverbrauch zu reduzieren und die Leistung zu
  31. #erhöhen teilen sich alle Instanzen des Terminals einen einzigen Prozess.
  32. %prep
  33. %setup -q
  34. #%patch0 -p1
  35. #%patch1 -p1
  36. %build
  37. %configure
  38. make %{?_smp_mflags}
  39. %install
  40. rm -rf $RPM_BUILD_ROOT
  41. make install DESTDIR=$RPM_BUILD_ROOT
  42. desktop-file-install --vendor=vine \
  43. --delete-original \
  44. --add-category=Utility \
  45. --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \
  46. ${RPM_BUILD_ROOT}%{_datadir}/applications/%{name}.desktop
  47. %find_lang %{name}
  48. %clean
  49. rm -rf $RPM_BUILD_ROOT
  50. %post
  51. touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
  52. %postun
  53. if [ $1 -eq 0 ] ; then
  54. touch --no-create %{_datadir}/icons/hicolor &>/dev/null
  55. gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
  56. fi
  57. %posttrans
  58. gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
  59. %files -f %{name}.lang
  60. %defattr(-,root,root,-)
  61. %doc AUTHORS COPYING README
  62. %{_bindir}/%{name}
  63. %{_datadir}/%{name}/
  64. %{_datadir}/applications/vine-%{name}.desktop
  65. %{_datadir}/icons/hicolor/128x128/apps/%{name}.png
  66. %{_mandir}/man1/%{name}*.1*
  67. %changelog
  68. * Mon Apr 11 2016 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.2.0-2
  69. - rebuilt
  70. * Sat Oct 25 2014 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.2.0-1
  71. - new upstream release
  72. - fixed %%changelog in Sat May 03 2014
  73. - run gtk-update-icon-cache in %%post, %%postun, %%posttrans
  74. * Sat May 03 2014 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.1.11-2
  75. - rebuilt with current environment
  76. * Thu Jul 28 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.1.11-1
  77. - new upstream release
  78. - dropt all patches
  79. * Tue Jul 26 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.1.10-2
  80. - added patch0,1 from upstream git repository
  81. * Sun Jul 24 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.1.10-1
  82. - Update to 0.1.10
  83. * Thu Sep 2 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.1.9-1
  84. - Update to 0.1.9
  85. * Wed Jul 21 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.1.8-1
  86. - Update to 0.1.8
  87. * Wed Mar 3 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.1.7-1
  88. - Update to 0.1.7
  89. - dropt Patch0
  90. * Sun Oct 18 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.1.6-2
  91. - added Patch0 from LXDE tracker to set cwd of new tab equal to the cwd of the current tab
  92. * Sun Jul 12 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.1.6-1
  93. - Update to 0.1.6
  94. - cleaned up spec
  95. * Fri May 22 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.1.5-1
  96. - Update to 0.1.5
  97. - dropt Source1,2
  98. - spec in UTF-8
  99. * Fri Mar 27 2009 IWAI, Masaharu <iwai@alib.jp> 0.1.4-3
  100. - replace ja.po: from upstream repository
  101. - fix Japanese description: drop unnecessary English
  102. - update %%files section: drop unnecessary extension in mandir
  103. - add Vendor and Distribution tags for Vine Linux
  104. * Thu Mar 26 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.1.4-2vl5
  105. - modified ja.po
  106. - added Summary(ja)
  107. * Mon Mar 23 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.1.4-1vl5
  108. - initial build for VineSeed (import from Fedora Package)
  109. * Fri Dec 26 2008 Christoph Wickert <fedora christoph-wickert de> - 0.1.4-1
  110. - Update to 0.1.4.
  111. * Sat Jun 28 2008 Christoph Wickert <fedora christoph-wickert de> - 0.1.3-1
  112. - Update to 0.1.3
  113. - Add the new manpage
  114. * Fri Jun 20 2008 Christoph Wickert <fedora christoph-wickert de> - 0.1.2-1
  115. - Initial Fedora package