- require netpbm-progs

- review fixes (#225980):
- include documentation
- set executable bit for makeseg and makemap scripts
- white-space spec correction
- move docs and example directory to %doc
- nuke duplicated stuff
This commit is contained in:
Jindrich Novy 2009-12-11 14:45:38 +00:00
parent f5620aad60
commit 3368585cb1

View File

@ -3,7 +3,7 @@
Summary: Converts LaTeX documents to HTML Summary: Converts LaTeX documents to HTML
Name: latex2html Name: latex2html
Version: 2008 Version: 2008
Release: 3%{?dist} Release: 4%{?dist}
License: GPLv2+ License: GPLv2+
Group: Applications/Publishing Group: Applications/Publishing
URL: http://www.latex2html.org/ URL: http://www.latex2html.org/
@ -19,7 +19,7 @@ Patch3: latex2html-2K.1beta-DB.patch
Patch4: latex2html-2002-2-1-SHLIB.patch Patch4: latex2html-2002-2-1-SHLIB.patch
Patch5: latex2html-2002-2-1-gsfont.patch Patch5: latex2html-2002-2-1-gsfont.patch
Patch6: latex2html-2002.2.1-grayimg.patch Patch6: latex2html-2002.2.1-grayimg.patch
Requires: tex(latex), tex(dvips) Requires: tex(latex), tex(dvips), netpbm-progs
BuildRequires: perl >= 5.003, ghostscript >= 4.03, netpbm >= 9.21, tex(latex) BuildRequires: perl >= 5.003, ghostscript >= 4.03, netpbm >= 9.21, tex(latex)
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch BuildArch: noarch
@ -55,6 +55,8 @@ pushd %{name}-%{version}
for i in Dos Mac OS2 Win32; do for i in Dos Mac OS2 Win32; do
rm -f L2hos/${i}.pm rm -f L2hos/${i}.pm
done done
rm -rf cweb2html
rm -f readme.hthtml
popd popd
%if %{enable_japanese} %if %{enable_japanese}
@ -122,7 +124,6 @@ perl -pi -e"s,/usr/bin/latex,/usr/bin/platex," cfgcache.pm
perl -pi -e"s,/usr/(share/)?lib,%{_datadir},; perl -pi -e"s,/usr/(share/)?lib,%{_datadir},;
s,%{_datadir}/latex2html,%{_datadir}/jlatex2html," cfgcache.pm s,%{_datadir}/latex2html,%{_datadir}/jlatex2html," cfgcache.pm
make make
perl -pi -e"s,${RPM_BUILD_ROOT},," l2hconf.pm
perl -pi -e"s,\\\${dd}pstoimg,\\\${dd}jpstoimg, ; perl -pi -e"s,\\\${dd}pstoimg,\\\${dd}jpstoimg, ;
s,\\\${dd}texexpand,\\\${dd}jtexexpand," l2hconf.pm s,\\\${dd}texexpand,\\\${dd}jtexexpand," l2hconf.pm
@ -133,25 +134,28 @@ popd
%endif %endif
%install %install
rm -rf $RPM_BUILD_ROOT rm -rf %{buildroot}
pushd %{name}-%{version} pushd %{name}-%{version}
perl -pi -e"s,%{_prefix},${RPM_BUILD_ROOT}%{_prefix}," cfgcache.pm perl -pi -e"s,%{_prefix},%{buildroot}%{_prefix}," cfgcache.pm
perl -pi -e"s,/.*\\\${dd}texexpand,%{_bindir}/texexpand,; perl -pi -e"s,/.*\\\${dd}texexpand,%{_bindir}/texexpand,;
s,/.*\\\${dd}pstoimg,%{_bindir}/pstoimg,; s,/.*\\\${dd}pstoimg,%{_bindir}/pstoimg,;
s,/.*\\\${dd}*icons,\\\${LATEX2HTMLDIR}/icons,; s,/.*\\\${dd}*icons,\\\${LATEX2HTMLDIR}/icons,;
s,/.*\\\${dd}rgb.txt,\\\${LATEX2HTMLDIR}/styles/rgb.txt,; s,/.*\\\${dd}rgb.txt,\\\${LATEX2HTMLDIR}/styles/rgb.txt,;
s,/.*\\\${dd}styles\\\${dd}crayola.txt,\\\${LATEX2HTMLDIR}/styles/crayola.txt," latex2html s,/.*\\\${dd}styles\\\${dd}crayola.txt,\\\${LATEX2HTMLDIR}/styles/crayola.txt," latex2html
perl -pi -e"s,$RPM_BUILD_ROOT,," l2hconf.pm perl -pi -e"s,%{buildroot},," l2hconf.pm
make install make install
rm -f %{buildroot}%{_datadir}/latex2html/versions/table.pl.orig rm -f %{buildroot}%{_datadir}/latex2html/versions/table.pl.orig
perl -pi -e"s,$RPM_BUILD_ROOT,," %{buildroot}%{_datadir}/latex2html/cfgcache.pm rm -rf %{buildroot}%{_datadir}/latex2html/docs/
perl -pi -e"s,$RPM_BUILD_ROOT,," %{buildroot}%{_bindir}/pstoimg rm -rf %{buildroot}%{_datadir}/latex2html/example/
perl -pi -e"s,$RPM_BUILD_ROOT,," %{buildroot}%{_bindir}/texexpand perl -pi -e"s,%{buildroot},," %{buildroot}%{_datadir}/latex2html/cfgcache.pm
perl -pi -e"s,$RPM_BUILD_ROOT,," cfgcache.pm perl -pi -e"s,%{buildroot},," %{buildroot}%{_bindir}/pstoimg
perl -pi -e"s,%{buildroot},," %{buildroot}%{_bindir}/texexpand
perl -pi -e"s,%{buildroot},," cfgcache.pm
perl -pi -e"s,$cfg{'GS_LIB'} = q'';,$cfg{'GS_LIB'} = q'%{_datadir}/ghostscript/`ghostscript --version`';," 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 install -m0644 *.pm %{buildroot}%{_datadir}/latex2html
chmod +x %{buildroot}%{_datadir}/latex2html/makeseg/makeseg %{buildroot}%{_datadir}/latex2html/makemap
# install man pages # install man pages
mkdir -p %{buildroot}%{_mandir}/man1 mkdir -p %{buildroot}%{_mandir}/man1
@ -160,35 +164,38 @@ popd
%if %{enable_japanese} %if %{enable_japanese}
pushd %{name}-%{version}JA pushd %{name}-%{version}JA
perl -pi -e"s,%{_prefix},${RPM_BUILD_ROOT}%{_prefix}," cfgcache.pm perl -pi -e"s,%{_prefix},%{buildroot}%{_prefix}," cfgcache.pm
perl -pi -e"s,latex2html pstoimg texexpand,jlatex2html jpstoimg jtexexpand," config/install.pl perl -pi -e"s,latex2html pstoimg texexpand,jlatex2html jpstoimg jtexexpand," config/install.pl
perl -pi -e"s,/.*\\\${dd}texexpand,%{_bindir}/jtexexpand,; perl -pi -e"s,/.*\\\${dd}texexpand,%{_bindir}/jtexexpand,;
s,/.*\\\${dd}pstoimg,%{_bindir}/jpstoimg,; s,/.*\\\${dd}pstoimg,%{_bindir}/jpstoimg,;
s,/.*\\\${dd}icons,\\\${LATEX2HTMLDIR}/icons,; s,/.*\\\${dd}icons,\\\${LATEX2HTMLDIR}/icons,;
s,/.*\\\${dd}styles\\\${dd}rgb.txt,\\\${LATEX2HTMLDIR}/styles/rgb.txt,; s,/.*\\\${dd}styles\\\${dd}rgb.txt,\\\${LATEX2HTMLDIR}/styles/rgb.txt,;
s,/.*\\\${dd}styles\\\${dd}crayola.txt,\\\${LATEX2HTMLDIR}/styles/crayola.txt," jlatex2html s,/.*\\\${dd}styles\\\${dd}crayola.txt,\\\${LATEX2HTMLDIR}/styles/crayola.txt," jlatex2html
perl -pi -e"s,$RPM_BUILD_ROOT,," l2hconf.pm perl -pi -e"s,%{buildroot},," l2hconf.pm
make install make install
rm -f %{buildroot}%{_datadir}/jlatex2html/versions/table.pl.orig rm -f %{buildroot}%{_datadir}/jlatex2html/versions/table.pl.orig
perl -pi -e"s,$RPM_BUILD_ROOT,," %{buildroot}%{_datadir}/jlatex2html/cfgcache.pm rm -rf %{buildroot}%{_datadir}/jlatex2html/docs/
perl -pi -e"s,$RPM_BUILD_ROOT,," %{buildroot}%{_bindir}/jpstoimg rm -rf %{buildroot}%{_datadir}/jlatex2html/example/
perl -pi -e"s,$RPM_BUILD_ROOT,," %{buildroot}%{_bindir}/jtexexpand perl -pi -e"s,%{buildroot},," %{buildroot}%{_datadir}/jlatex2html/cfgcache.pm
perl -pi -e"s,$RPM_BUILD_ROOT,," cfgcache.pm perl -pi -e"s,%{buildroot},," %{buildroot}%{_bindir}/jpstoimg
perl -pi -e"s,%{buildroot},," %{buildroot}%{_bindir}/jtexexpand
perl -pi -e"s,%{buildroot},," cfgcache.pm
perl -pi -e"s,$cfg{'GS_LIB'} = q'';,$cfg{'GS_LIB'} = q'%{_datadir}/ghostscript/`ghostscript --version`';," 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 install -m0644 *.pm %{buildroot}%{_datadir}/jlatex2html
chmod +x %{buildroot}%{_datadir}/jlatex2html/makeseg/makeseg %{buildroot}%{_datadir}/jlatex2html/makemap
popd popd
%endif %endif
for f in cweb2html/cweb2html makeseg/makeseg makemap ; do for f in cweb2html/cweb2html makeseg/makeseg makemap ; do
perl -pi -e "s,/usr/local/bin/perl,/usr/bin/perl," $RPM_BUILD_ROOT%{_datadir}/latex2html/$f perl -pi -e "s,/usr/local/bin/perl,/usr/bin/perl," %{buildroot}%{_datadir}/latex2html/$f
%if %{enable_japanese} %if %{enable_japanese}
perl -pi -e "s,/usr/local/bin/perl,/usr/bin/perl," $RPM_BUILD_ROOT%{_datadir}/jlatex2html/$f perl -pi -e "s,/usr/local/bin/perl,/usr/bin/perl," %{buildroot}%{_datadir}/jlatex2html/$f
%endif %endif
done done
%clean %clean
rm -rf $RPM_BUILD_ROOT rm -rf %{buildroot}
%post %post
[ -x %{_bindir}/texconfig-sys ] && %{_bindir}/texconfig-sys rehash 2> /dev/null || : [ -x %{_bindir}/texconfig-sys ] && %{_bindir}/texconfig-sys rehash 2> /dev/null || :
@ -198,6 +205,7 @@ rm -rf $RPM_BUILD_ROOT
%files %files
%defattr(-,root,root,-) %defattr(-,root,root,-)
%doc latex2html-2008/{LICENSE,LICENSE.orig,README,FAQ,BUGS,docs,example}
%{_bindir}/latex2html %{_bindir}/latex2html
%{_bindir}/pstoimg %{_bindir}/pstoimg
%{_bindir}/texexpand %{_bindir}/texexpand
@ -219,6 +227,15 @@ rm -rf $RPM_BUILD_ROOT
%{_mandir}/man1/pstoimg.* %{_mandir}/man1/pstoimg.*
%changelog %changelog
* Fri Dec 11 2009 Jindrich Novy <jnovy@redhat.com> 2008-4
- require netpbm-progs
- review fixes (#225980):
- include documentation
- set executable bit for makeseg and makemap scripts
- white-space spec correction
- move docs and example directory to %%doc
- nuke duplicated stuff
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2008-3 * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2008-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild