texi2html-vl.spec 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. Summary: A highly customizable texinfo to HTML and other formats translator
  2. Summary(ja): 高度にカスタマイズ可能な、texinfoからHTMLや他の形式への変換器
  3. Name: texi2html
  4. Version: 1.82
  5. Release: 1%{?_dist_release}
  6. # GPLv2+ is for the code
  7. # OFSFDL (Old FSF Documentation License) for the documentation
  8. # CC-BY-SA or GPLv2 for the images
  9. License: GPLv2+ and OFSFDL and (CC-BY-SA or GPLv2)
  10. Group: Applications/Text
  11. URL: http://www.nongnu.org/texi2html/
  12. Source0: http://download.savannah.nongnu.org/releases/%{name}/%{name}-%{version}.tar.bz2
  13. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
  14. BuildArch: noarch
  15. Requires(post): /sbin/install-info
  16. Requires(preun): /sbin/install-info
  17. Requires: perl >= 5.004
  18. Requires: latex2html
  19. BuildRequires: perl(Text::Unidecode)
  20. # not detected automatically because it is required at runtime based on
  21. # user configuration
  22. Requires: perl(Text::Unidecode)
  23. %description
  24. The basic purpose of texi2html is to convert Texinfo documents into HTML,
  25. and other formats. Configuration files written in perl provide fine degree
  26. of control over the final output, allowing most every aspect of the final
  27. output not specified in the Texinfo input file to be specified.
  28. %prep
  29. %setup -q
  30. %build
  31. %configure
  32. make %{?_smp_mflags}
  33. %install
  34. rm -rf $RPM_BUILD_ROOT
  35. make install DESTDIR=$RPM_BUILD_ROOT
  36. rm -f $RPM_BUILD_ROOT%{_infodir}/dir
  37. # directories shared by all the texinfo implementations for common
  38. # config files, like htmlxref.cnf
  39. mkdir -p $RPM_BUILD_ROOT%{_datadir}/texinfo $RPM_BUILD_ROOT%{_sysconfdir}/texinfo
  40. %clean
  41. rm -rf $RPM_BUILD_ROOT
  42. %post
  43. /sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || :
  44. %preun
  45. if [ $1 = 0 ]; then
  46. /sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || :
  47. fi
  48. %files
  49. %defattr(-,root,root,-)
  50. %doc AUTHORS COPYING ChangeLog NEWS README TODO %{name}.init
  51. %{_bindir}/%{name}
  52. %{_datadir}/texinfo/html/%{name}.html
  53. %{_mandir}/man*/%{name}*
  54. %{_infodir}/%{name}.info*
  55. %dir %{_datadir}/%{name}
  56. %{_datadir}/%{name}/*.init
  57. %{_datadir}/%{name}/*.texi
  58. %dir %{_datadir}/%{name}/i18n/
  59. %{_datadir}/%{name}/i18n/*
  60. %dir %{_datadir}/%{name}/images/
  61. %{_datadir}/%{name}/images/*
  62. %dir %{_datadir}/texinfo
  63. %dir %{_sysconfdir}/texinfo
  64. %changelog
  65. * Wed Apr 21 2010 Shu KONNO <owa@bg.wakwak.com> 1.82-1
  66. - new upstream release, and rebuilt with new environment
  67. - added japanese summary
  68. * Sun Oct 12 2008 Shu KONNO <owa@bg.wakwak.com> 1.78-4vl5
  69. - applied new versioning policy
  70. * Fri Jan 11 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.78-3vl1
  71. - fix Release number.
  72. * Thu Nov 01 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.78-0vl1
  73. - initial build for Vine Linux
  74. * Tue Aug 28 2007 Patrice Dumas <pertusus@free.fr> 1.78-3
  75. - use the right license tag for the documentation
  76. * Tue Aug 28 2007 Patrice Dumas <pertusus@free.fr> 1.78-2
  77. - Requires latex2html and perl(Text::Unidecode)
  78. - add ownership for directories common for the texinfo implementations
  79. - correct license
  80. * Wed Jun 6 2007 Jindrich Novy <jnovy@redhat.com> 1.78-1
  81. - update to 1.78
  82. * Wed Feb 14 2007 Jindrich Novy <jnovy@redhat.com> 1.77-0.1.20070214cvs
  83. - update to 1.77 release candidate (#226487)
  84. * Fri Jan 5 2007 Jindrich Novy <jnovy@redhat.com> 1.76-6
  85. - fix post/preun scriptlets so that they won't fail with docs disabled
  86. (thanks to Ville Skyttä)
  87. * Wed Nov 29 2006 Jindrich Novy <jnovy@redhat.com> 1.76-5
  88. - replace PreReq, fix BuildRoot
  89. * Thu Aug 24 2006 Jindrich Novy <jnovy@redhat.com> 1.76-4.fc6
  90. - correct URLs, name patch backups correctly
  91. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.76-3.1
  92. - rebuild
  93. * Sat Feb 25 2006 Jindrich Novy <jnovy@redhat.com> 1.76-3
  94. - PreReq info (#182888)
  95. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  96. - rebuilt
  97. * Tue Mar 08 2005 Jindrich Novy <jnovy@redhat.com> 1.76-2
  98. - replace %%configure with ./configure to prevent definition of
  99. target, build and host for noarch package
  100. * Fri Feb 18 2005 Jindrich Novy <jnovy@redhat.com> 1.76-1
  101. - we have separate texi2html package now (#121889)
  102. - fix Source0
  103. - BuildArchitectures -> BuildArch
  104. - create backups for patches
  105. * Thu Feb 10 2005 MATSUURA Takanori <t-matsuu@estyle.ne.jp> - 1.76-0
  106. - updated to 1.76
  107. * Mon Jan 10 2005 MATSUURA Takanori <t-matsuu@estyle.ne.jp> - 1.72-1.fc3
  108. - initial build for Fedora Core 3 based on spec file in source tarball
  109. * Mon Mar 23 2004 Patrice Dumas <pertusus@free.fr> 0:1.69-0.fdr.1
  110. - Initial build.