latexila-vl.spec 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. Name: latexila
  2. Version: 3.14.3
  3. Release: 1%{?_dist_release}
  4. Summary: Integrated LaTeX Environment for the GNOME desktop
  5. Group: Applications/Publishing
  6. License: GPLv3+
  7. URL: http://projects.gnome.org/latexila/
  8. Source0: http://ftp.gnome.org/pub/GNOME/sources/%{name}/3.14/%{name}-%{version}.tar.xz
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
  10. BuildRequires: gettext
  11. BuildRequires: gtksourceview3-devel
  12. BuildRequires: desktop-file-utils
  13. BuildRequires: libgee-devel
  14. BuildRequires: unique-devel
  15. BuildRequires: gtkspell3-devel
  16. BuildRequires: gsettings-desktop-schemas-devel
  17. BuildRequires: itstool
  18. Requires: hicolor-icon-theme
  19. Requires: itstool
  20. Requires: latexmk
  21. Requires: rubber
  22. Requires: gtkspell3
  23. Requires: gsettings-desktop-schemas
  24. Vendor: Project Vine
  25. Distribution: Vine Linux
  26. Packager: Takemikaduchi
  27. %description
  28. LaTeXila is an Integrated LaTeX Environment for GNOME. The main features are:
  29. * Configurable buttons to compile, convert and view a document in one click
  30. * LaTeX commands auto-completion
  31. * Symbol tables (Greek letters, arrows, ...)
  32. * File browser integrated
  33. * Template managing
  34. * Menus with the most commonly used LaTeX commands
  35. * Easy projects management
  36. %prep
  37. %setup -q
  38. %build
  39. %configure \
  40. --disable-static
  41. make %{?_smp_mflags}
  42. %install
  43. rm -rf %{buildroot}
  44. make install DESTDIR=%{buildroot}
  45. %find_lang %{name} --all-name --with-gnome
  46. desktop-file-install \
  47. --dir %{buildroot}%{_datadir}/applications \
  48. %{buildroot}%{_datadir}/applications/%{name}.desktop
  49. %clean
  50. rm -rf %{buildroot}
  51. %post
  52. update-desktop-database &> /dev/null || :
  53. touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
  54. if [ $1 -eq 1 ] ; then
  55. glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
  56. fi
  57. %postun
  58. update-desktop-database &> /dev/null || :
  59. if [ $1 -eq 0 ] ; then
  60. touch --no-create %{_datadir}/icons/hicolor &>/dev/null
  61. gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
  62. glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
  63. fi
  64. %posttrans
  65. gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
  66. %files -f %{name}.lang
  67. %defattr(-,root,root,-)
  68. %doc AUTHORS COPYING README NEWS HACKING TODO
  69. %{_mandir}/man1/%{name}.1.*
  70. %{_bindir}/*
  71. %{_datadir}/%{name}/
  72. %{_datadir}/appdata/%{name}.appdata.xml
  73. %{_datadir}/applications/%{name}.desktop
  74. %{_datadir}/icons/hicolor/*/apps/%{name}.*
  75. %{_datadir}/glib-2.0/schemas/org.gnome.%{name}.gschema.xml
  76. %changelog
  77. * Mon Jan 12 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.14.3-1
  78. - new upstream release
  79. * Mon Nov 03 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.14.2-1
  80. - new upstream release
  81. - change BuildRequires: libgee-devel instead of libgee06-devel
  82. * Sat May 17 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.12.1-1
  83. - new upstream release
  84. - change BuildRequires: gtkspell3-devel instead of gtkspell-devel
  85. * Fri Sep 06 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.3-1
  86. - new upstream release
  87. * Sun Jun 09 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.2-1
  88. - new upstream release
  89. * Sun May 19 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.1-1
  90. - new upstream release
  91. * Mon May 06 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.0-1
  92. - new upstream release
  93. * Sun Oct 21 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.1-1
  94. - new upstream release
  95. * Fri Oct 12 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.0-1
  96. - new upstream release
  97. - change BuildRequires: gtksourceview3-devel instead of gtksourceview2-devel
  98. - change BuildRequires: libgee06-devel instead of libgee-devel
  99. - add BuildRequires: gsettings-desktop-schemas-devel
  100. * Tue Jun 12 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.1-1
  101. - new upstream release
  102. * Mon Apr 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.0-1
  103. - new upstream release
  104. - add BuildRequires: gtkspell-devel
  105. * Wed Feb 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.3-1
  106. - new upstream release
  107. * Mon Oct 10 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.2-1
  108. - initial build for Vine Linux
  109. * Tue Jul 12 2011 Thibault North <tnorth@fedoraproject.org> - 2.0.8-1
  110. - Update to 2.0.8
  111. * Thu Apr 7 2011 Thibault North <tnorth@fedoraproject.org> - 2.0.7-1
  112. - Update to 2.0.7
  113. * Sun Mar 20 2011 Thibault North <tnorth@fedoraproject.org> - 2.0.6-1
  114. - Update to 2.0.6
  115. * Tue Feb 15 2011 Thibault North <tnorth@fedoraproject.org> - 2.0.5-1
  116. - Update to 2.0.5, thanks Sébastien Wilmet
  117. * Thu Nov 25 2010 Thibault North <tnorth@fedoraproject.org> - 2.0.1-4
  118. - A few more fixes
  119. * Mon Nov 22 2010 Thibault North <tnorth@fedoraproject.org> - 2.0.1-3
  120. - Use %%find_lang, fixes by Mohamed El Morabity
  121. * Sun Nov 21 2010 Thibault North <tnorth@fedoraproject.org> - 2.0.1-2
  122. - Small fixes
  123. * Sun Nov 21 2010 Sébastien Wilmet <sebastien.wilmet@gmail.com> - 2.0.1-1
  124. - Release 2.0.1
  125. * Sun Nov 14 2010 Thibault North <tnorth@fedoraproject.org> - 2.0.0-1
  126. - Release 2.0
  127. * Mon Mar 1 2010 Sébastien Wilmet <sebastien.wilmet@gmail.com> - 0.2-1
  128. - New upstream release
  129. - Icons support
  130. * Fri Dec 25 2009 Sébastien Wilmet <sebastien.wilmet@gmail.com> - 0.1-1
  131. - Initial package for Fedora