208 lines
7.2 KiB
RPMSpec
208 lines
7.2 KiB
RPMSpec
|
%define enable_japanese 1
|
||
|
%define latex2html_ver 2002-2-1
|
||
|
|
||
|
Summary: Converts LaTeX documents to HTML
|
||
|
Name: latex2html
|
||
|
Version: 2002.2.1
|
||
|
Release: 1
|
||
|
License: Free To Use But Restricted (See LICENSE)
|
||
|
Group: Applications/Publishing
|
||
|
URL: http://www.latex2html.org/
|
||
|
Source0: http://saftsack.fs.uni-bayreuth.de/~latex2ht/current/%{name}-%{latex2html_ver}.tar.bz2
|
||
|
Source1: cfgcache.pm
|
||
|
Patch0: latex2html-2K.1beta-tabularx.patch
|
||
|
Patch1: teTeX-l2h-config.patch
|
||
|
Patch3: latex2html-2K.1beta-DB.patch
|
||
|
Patch4: latex2html-2002-2-1-SHLIB.patch
|
||
|
Patch5: latex2html-2002-2-1-gsfont.patch
|
||
|
|
||
|
###
|
||
|
# Japanization patches
|
||
|
###
|
||
|
Patch100: http://takeno.iee.niit.ac.jp/~shige/TeX/latex2html/data/l2h-2002-2-1+jp2.0.patch.gz
|
||
|
Patch101: latex2html-2002.2.1-pdvips.patch
|
||
|
|
||
|
Requires: tetex-latex, tetex-dvips
|
||
|
BuildRequires: perl >= 5.003, ghostscript >= 4.03, netpbm >= 9.21
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
||
|
BuildArch: noarch
|
||
|
|
||
|
%description
|
||
|
LATEX2HTML is a convertor written in Perl that converts LATEX
|
||
|
documents to HTML. This way e.g. scientific papers - primarily typeset
|
||
|
for printing - can be put on the Web for online viewing.
|
||
|
|
||
|
LATEX2HTML does also a good job in rapid web site deployment. These
|
||
|
pages are generated from a single LATEX source.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n %{name}-%{version} -c -a 0
|
||
|
|
||
|
pushd %{name}-%{latex2html_ver}
|
||
|
# patch latex2html to support tabularx environments better
|
||
|
%patch0 -p1 -b .tabularx
|
||
|
|
||
|
# Patch from Oliver Paukstadt <oliver.paukstadt@millenux.com>
|
||
|
%patch1 -p2 -b .config
|
||
|
|
||
|
# Fix latex2html not to use DB_File
|
||
|
%patch3 -p2 -b .db_file
|
||
|
|
||
|
# fix SHLIBDIR
|
||
|
%patch4 -p1 -b .shlib
|
||
|
|
||
|
# don't require the font directory to be ended with PATH/fonts
|
||
|
%patch5 -p1 -b .gsfont
|
||
|
|
||
|
# remove all platforms we don't need
|
||
|
for i in Dos Mac OS2 Win32; do
|
||
|
rm -f L2hos/${i}.pm
|
||
|
done
|
||
|
popd
|
||
|
|
||
|
%if %{enable_japanese}
|
||
|
cp -a %{name}-%{latex2html_ver} %{name}-%{latex2html_ver}JA
|
||
|
pushd %{name}-%{latex2html_ver}JA
|
||
|
# JA patches for latex2html.
|
||
|
%patch100 -p1 -b .jp2
|
||
|
%patch101 -p1 -b .pdvips
|
||
|
popd
|
||
|
%endif
|
||
|
|
||
|
%build
|
||
|
pushd %{name}-%{latex2html_ver}
|
||
|
cp %{SOURCE1} cfgcache.pm
|
||
|
|
||
|
./configure --program-prefix=%{?_program_prefix} \
|
||
|
--prefix=%{_prefix} \
|
||
|
--exec-prefix=%{_exec_prefix} \
|
||
|
--bindir=%{_bindir} \
|
||
|
--sbindir=%{_sbindir} \
|
||
|
--sysconfdir=%{_sysconfdir} \
|
||
|
--datadir=%{_datadir} \
|
||
|
--includedir=%{_includedir} \
|
||
|
--libdir=%{_libdir} \
|
||
|
--libexecdir=%{_libexecdir} \
|
||
|
--localstatedir=%{_localstatedir} \
|
||
|
--sharedstatedir=%{_sharedstatedir} \
|
||
|
--mandir=%{_mandir} \
|
||
|
--infodir=%{_infodir} \
|
||
|
--with-texpath=%{_datadir}/texmf/tex/latex/html
|
||
|
|
||
|
perl -pi -e"s,/usr/(share/)?lib,%{_datadir}," cfgcache.pm
|
||
|
make
|
||
|
popd
|
||
|
|
||
|
%if %{enable_japanese}
|
||
|
pushd %{name}-%{latex2html_ver}JA
|
||
|
sed s/latex2html/jlatex2html/g < %{SOURCE1} > cfgcache.pm
|
||
|
perl -pi -e"s,/usr/bin/dvips,/usr/bin/pdvips," cfgcache.pm
|
||
|
|
||
|
./configure --program-prefix=%{?_program_prefix} \
|
||
|
--prefix=%{_prefix} \
|
||
|
--exec-prefix=%{_exec_prefix} \
|
||
|
--bindir=%{_bindir} \
|
||
|
--sbindir=%{_sbindir} \
|
||
|
--sysconfdir=%{_sysconfdir} \
|
||
|
--datadir=%{_datadir} \
|
||
|
--includedir=%{_includedir} \
|
||
|
--libdir=%{_libdir} \
|
||
|
--libexecdir=%{_libexecdir} \
|
||
|
--localstatedir=%{_localstatedir} \
|
||
|
--sharedstatedir=%{_sharedstatedir} \
|
||
|
--mandir=%{_mandir} \
|
||
|
--infodir=%{_infodir} \
|
||
|
--with-texpath=%{_datadir}/texmf/tex/latex/html
|
||
|
|
||
|
perl -pi -e"s,/usr/(share/)?lib,%{_datadir},;
|
||
|
s,%{_datadir}/latex2html,%{_datadir}/jlatex2html," cfgcache.pm
|
||
|
make
|
||
|
perl -pi -e"s,${RPM_BUILD_ROOT},," l2hconf.pm
|
||
|
for i in latex2html pstoimg texexpand ; do
|
||
|
mv ${i} j${i}
|
||
|
done
|
||
|
popd
|
||
|
%endif
|
||
|
|
||
|
%install
|
||
|
rm -rf $RPM_BUILD_ROOT
|
||
|
|
||
|
pushd %{name}-%{latex2html_ver}
|
||
|
perl -pi -e"s,%{_bindir},${RPM_BUILD_ROOT}%{_bindir},;
|
||
|
s,%{_datadir}/latex2html,${RPM_BUILD_ROOT}%{_datadir}/latex2html,;
|
||
|
s,%{_datadir}/texmf,${RPM_BUILD_ROOT}%{_datadir}/texmf," cfgcache.pm
|
||
|
perl -pi -e"s,%{_builddir}/latex2html-%{latex2html_ver}\${dd}tetexexpand,%{_bindir}/texexpand,;
|
||
|
s,%{_builddir}/latex2html-%{latex2html_ver}\${dd}pstoimg,%{_bindir}/pstoimg,;
|
||
|
s,%{_builddir}/latex2html-%{latex2html_ver}\${dd}icons,\${LATEX2HTMLDIR}/icons,;
|
||
|
s,%{_builddir}/latex2html-%{latex2html_ver}\${dd}styles\${dd}rgb.txt,\${LATEX2HTMLDIR}/styles/rgb.txt,;
|
||
|
s,%{_builddir}/latex2html-%{latex2html_ver}\${dd}styles\${dd}crayola.txt,\${LATEX2HTMLDIR}/styles/crayola.txt," latex2html
|
||
|
perl -pi -e"s,$RPM_BUILD_ROOT,," l2hconf.pm
|
||
|
|
||
|
make install
|
||
|
rm -f %{buildroot}%{_datadir}/latex2html/versions/table.pl.orig
|
||
|
perl -pi -e"s,$RPM_BUILD_ROOT,," %{buildroot}%{_datadir}/latex2html/cfgcache.pm
|
||
|
perl -pi -e"s,$RPM_BUILD_ROOT,," %{buildroot}%{_bindir}/pstoimg
|
||
|
perl -pi -e"s,$RPM_BUILD_ROOT,," %{buildroot}%{_bindir}/texexpand
|
||
|
perl -pi -e"s,$RPM_BUILD_ROOT,," cfgcache.pm
|
||
|
perl -pi -e"s,$cfg{'GS_LIB'} = q'';,$cfg{'GS_LIB'} = q'%{_datadir}/ghostscript/`ghostscript --version`';," cfgcache.pm
|
||
|
install -m0644 *.pm %{buildroot}%{_datadir}/latex2html
|
||
|
popd
|
||
|
|
||
|
%if %{enable_japanese}
|
||
|
pushd %{name}-%{latex2html_ver}JA
|
||
|
perl -pi -e"s,%{_bindir},${RPM_BUILD_ROOT}%{_bindir},;
|
||
|
s,%{_datadir}/jlatex2html,${RPM_BUILD_ROOT}%{_datadir}/jlatex2html,;
|
||
|
s,%{_datadir}/texmf,${RPM_BUILD_ROOT}%{_datadir}/texmf," cfgcache.pm
|
||
|
perl -pi -e"s,latex2html pstoimg texexpand,jlatex2html jpstoimg jtexexpand," config/install.pl
|
||
|
perl -pi -e"s,%{_builddir}/latex2html-%{latex2html_ver}JA\${dd}tetexexpand,%{_bindir}/texexpand,;
|
||
|
s,%{_builddir}/latex2html-%{latex2html_ver}JA\${dd}pstoimg,%{_bindir}/pstoimg,;
|
||
|
s,%{_builddir}/latex2html-%{latex2html_ver}JA\${dd}icons,\${LATEX2HTMLDIR}/icons,;
|
||
|
s,%{_builddir}/latex2html-%{latex2html_ver}JA\${dd}styles\${dd}rgb.txt,\${LATEX2HTMLDIR}/styles/rgb.txt,;
|
||
|
s,%{_builddir}/latex2html-%{latex2html_ver}JA\${dd}styles\${dd}crayola.txt,\${LATEX2HTMLDIR}/styles/crayola.txt," latex2html
|
||
|
perl -pi -e"s,$RPM_BUILD_ROOT,," l2hconf.pm
|
||
|
|
||
|
make install
|
||
|
rm -f %{buildroot}%{_datadir}/jlatex2html/versions/table.pl.orig
|
||
|
perl -pi -e"s,$RPM_BUILD_ROOT,," cfgcache.pm
|
||
|
perl -pi -e"s,$cfg{'GS_LIB'} = q'';,$cfg{'GS_LIB'} = q'%{_datadir}/ghostscript/`ghostscript --version`';," cfgcache.pm
|
||
|
install -m0644 *.pm %{buildroot}%{_datadir}/jlatex2html
|
||
|
popd
|
||
|
%endif
|
||
|
|
||
|
%clean
|
||
|
rm -rf $RPM_BUILD_ROOT
|
||
|
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root,-)
|
||
|
%doc
|
||
|
/usr/bin/latex2html
|
||
|
/usr/bin/pstoimg
|
||
|
/usr/bin/texexpand
|
||
|
%dir %{_datadir}/latex2html
|
||
|
%{_datadir}/latex2html/*
|
||
|
%dir %{_datadir}/texmf/tex/latex/html
|
||
|
%{_datadir}/texmf/tex/latex/html/*
|
||
|
|
||
|
%if %{enable_japanese}
|
||
|
/usr/bin/jlatex2html
|
||
|
/usr/bin/jpstoimg
|
||
|
/usr/bin/jtexexpand
|
||
|
%dir %{_datadir}/jlatex2html
|
||
|
%{_datadir}/jlatex2html/*
|
||
|
%endif
|
||
|
|
||
|
%changelog
|
||
|
* Fri Mar 15 2005 Jindrich Novy <jnovy@redhat.com> 2002.2.1-1
|
||
|
- create backups for patches
|
||
|
- update Source1
|
||
|
- BuildArchitectures -> BuildArch
|
||
|
- remove direct RPM_BUILD_ROOT links from l2hconf.pm
|
||
|
- fix bad interpreter name path in pstoimg, texexpand
|
||
|
- define --with-texpath explicitely
|
||
|
- remove Dos.pm, Mac.pm, OS2.pm, Win32.pm
|
||
|
- don't require the font directory to be ended with PATH/fonts
|
||
|
|
||
|
* Wed Dec 15 2004 MATSUURA Takanori <t-matsuu@sx-lx3.protein.net>
|
||
|
- Initial build.
|