92 lines
2.9 KiB
RPMSpec
92 lines
2.9 KiB
RPMSpec
Name: docbook5-style-xsl
|
|
Version: 1.74.0
|
|
Release: 1%{?dist}
|
|
Group: Applications/Text
|
|
|
|
Summary: Norman Walsh's XSL stylesheets for DocBook 5.X
|
|
|
|
License: Freely redistributable without restriction
|
|
URL: http://docbook.sourceforge.net/projects/xsl/
|
|
|
|
Provides: docbook-xsl-ns = %{version}
|
|
# xml-common was using /usr/share/xml until 0.6.3-8.
|
|
Requires: xml-common >= 0.6.3-8
|
|
# libxml2 required because of usage of /usr/bin/xmlcatalog
|
|
Requires(post): libxml2 >= 2.4.8
|
|
Requires(postun): libxml2 >= 2.4.8
|
|
Conflicts: passivetex < 1.21
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
|
|
|
BuildArch: noarch
|
|
Source0: http://downloads.sourceforge.net/docbook/docbook-xsl-ns-%{version}.tar.bz2
|
|
|
|
%description
|
|
These XSL namespace aware stylesheets allow you to transform any
|
|
DocBook 5 document to other formats, such as HTML, manpages, FO,
|
|
XHMTL and other formats. They are highly customizable. For more
|
|
information see W3C page about XSL.
|
|
|
|
%prep
|
|
%setup -q -n docbook-xsl-ns-%{version}
|
|
#remove .gitignore files
|
|
rm -rf $(find -name '.gitignore' -type f)
|
|
#make ruby scripts executable
|
|
chmod +x epub/bin/dbtoepub
|
|
chmod +x epub/bin/spec/epub*.rb
|
|
|
|
%build
|
|
|
|
%install
|
|
DESTDIR=$RPM_BUILD_ROOT
|
|
rm -rf $RPM_BUILD_ROOT
|
|
mkdir -p $DESTDIR%{_datadir}/sgml/docbook/xsl-ns-stylesheets-%version
|
|
cp -a [[:lower:]]* $DESTDIR%{_datadir}/sgml/docbook/xsl-ns-stylesheets-%version/
|
|
ln -s xsl-ns-stylesheets-%{version} \
|
|
$DESTDIR%{_datadir}/sgml/docbook/xsl-ns-stylesheets
|
|
|
|
# Don't ship the extensions.
|
|
rm -rf $DESTDIR%{_datadir}/sgml/docbook/xsl-ns-stylesheets/extensions
|
|
# Don't ship install shell script.
|
|
rm -rf $DESTDIR%{_datadir}/sgml/docbook/xsl-ns-stylesheets/install.sh
|
|
|
|
%clean
|
|
DESTDIR=$RPM_BUILD_ROOT
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr (-,root,root,-)
|
|
%doc BUGS
|
|
%doc README COPYING
|
|
%doc TODO NEWS
|
|
%{_datadir}/sgml/docbook/xsl-ns-stylesheets-%{version}
|
|
%{_datadir}/sgml/docbook/xsl-ns-stylesheets
|
|
|
|
%post
|
|
CATALOG=%{_sysconfdir}/xml/catalog
|
|
%{_bindir}/xmlcatalog --noout --add "rewriteSystem" \
|
|
"http://docbook.sourceforge.net/release/xsl-ns/%{version}" \
|
|
"file://%{_datadir}/sgml/docbook/xsl-ns-stylesheets-%{version}" $CATALOG
|
|
%{_bindir}/xmlcatalog --noout --add "rewriteURI" \
|
|
"http://docbook.sourceforge.net/release/xsl-ns/%{version}" \
|
|
"file://%{_datadir}/sgml/docbook/xsl-ns-stylesheets-%{version}" $CATALOG
|
|
%{_bindir}/xmlcatalog --noout --add "rewriteSystem" \
|
|
"http://docbook.sourceforge.net/release/xsl-ns/current" \
|
|
"file://%{_datadir}/sgml/docbook/xsl-ns-stylesheets-%{version}" $CATALOG
|
|
%{_bindir}/xmlcatalog --noout --add "rewriteURI" \
|
|
"http://docbook.sourceforge.net/release/xsl-ns/current" \
|
|
"file://%{_datadir}/sgml/docbook/xsl-ns-stylesheets-%{version}" $CATALOG
|
|
|
|
|
|
%postun
|
|
# remove entries only on removal of package
|
|
if [ "$1" = 0 ]; then
|
|
CATALOG=%{_sysconfdir}/xml/catalog
|
|
%{_bindir}/xmlcatalog --noout --del \
|
|
"file://%{_datadir}/sgml/docbook/xsl-ns-stylesheets-%{version}" $CATALOG
|
|
fi
|
|
|
|
%changelog
|
|
* Mon Nov 10 2008 Ondrej Vasik <ovasik@redhat.com> 1.74.0-1
|
|
- Initial Fedora release
|