mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
* configure.ac: Remove rtemsdoc/mkspec. Add RTEMS_RPM_RELEASE.
* rtemsdoc/.cvsignore: Reformat.
* Makefile.am: Reformat. Add RTEMS_RPM_RELEASE support to
rtems-source.add, Use rtems_source_spec_DEPS instead of
rtems_source_spec_DEPENDENCIES (Conflicts with automake internals).
* rtems/rtems-source.add: Add RTEMS_RPM_RELEASE.
* rtemsdoc/mkspec.in: Remove.
* rtemsdoc/Makefile.am: Reworked.
* rtemsdoc/header.add: Update Copyright notice.
* rtemsdoc/rtemsdoc.add: Add RTEMS_RPM_RELEASE.
Add %{rpmgroup}. Remove bzip-ing *.ps.
* rtemsdoc/supplement.add.in: Add %{rpmgroup}.
* rtemsdoc/templ.add.in: Add %{rpmgroup}.
35 lines
840 B
Plaintext
35 lines
840 B
Plaintext
## @target@
|
|
|
|
%package @target@
|
|
Summary: Documentation for RTEMS @target@ support
|
|
Group: %{rpmgroup}/Documentation
|
|
PreReq: /sbin/install-info
|
|
Requires: %{rpmprefix}rtemsdoc-base
|
|
|
|
%description @target@
|
|
RTEMS is a free operating system for embedded systems.
|
|
|
|
This package contains the @target@ documentation.
|
|
|
|
%files @target@
|
|
%dir %{_infodir}
|
|
%{_infodir}/@target@.info*
|
|
%dir %{_datadir}
|
|
%dir %{_datadir}/rtems
|
|
%dir %{_datadir}/rtems/dvi
|
|
%{_datadir}/rtems/dvi/@target@*
|
|
%dir %{_datadir}/rtems/pdf
|
|
%{_datadir}/rtems/pdf/@target@*
|
|
%dir %{_datadir}/rtems/ps
|
|
%{_datadir}/rtems/ps/@target@*
|
|
%dir %{_datadir}/rtems/html
|
|
%{_datadir}/rtems/html/@target@*
|
|
|
|
%post @target@
|
|
/sbin/install-info %{_infodir}/@target@.info.gz %{_infodir}/dir
|
|
|
|
%preun @target@
|
|
if [ $1 = 0 ]; then
|
|
/sbin/install-info --delete %{_infodir}/@target@.info.gz %{_infodir}/dir
|
|
fi
|