summaryrefslogtreecommitdiffstats
path: root/scripts/rtemsdoc
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-01-26 08:13:55 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-01-26 08:13:55 +0000
commit2dae735fec9cdc5a61b0499435cdc40793576b52 (patch)
tree3a3b8ba0021e8711b5e8af55be092ea390b6e7a2 /scripts/rtemsdoc
parent2003-01-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-2dae735fec9cdc5a61b0499435cdc40793576b52.tar.bz2
2003-01-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* rtemsdoc/Makefile.am: New. * rtemsdoc/mkspec.in: New. * rtemsdoc/rtemsdoc.spec.in: New. * rtemsdoc/supplement.add.in: New. * rtemsdoc/templ.add.in: New.
Diffstat (limited to 'scripts/rtemsdoc')
-rw-r--r--scripts/rtemsdoc/Makefile.am62
-rw-r--r--scripts/rtemsdoc/mkspec.in53
-rw-r--r--scripts/rtemsdoc/rtemsdoc.spec.in100
-rw-r--r--scripts/rtemsdoc/supplement.add.in35
-rw-r--r--scripts/rtemsdoc/templ.add.in34
5 files changed, 284 insertions, 0 deletions
diff --git a/scripts/rtemsdoc/Makefile.am b/scripts/rtemsdoc/Makefile.am
new file mode 100644
index 0000000000..939fc85686
--- /dev/null
+++ b/scripts/rtemsdoc/Makefile.am
@@ -0,0 +1,62 @@
+##
+## $Id$
+##
+
+CLEANFILES =
+
+MKSPEC = $(SHELL) ./mkspec
+
+MKSPEC_DEPS = mkspec rtemsdoc.spec.in \
+ $(top_builddir)/setup.cache
+
+SUPPLEMENTS = \
+ arm \
+ c4x \
+ hppa1_1 \
+ i386 \
+ i960 \
+ m68k \
+ mips \
+ mips64orion \
+ powerpc \
+ sh \
+ sparc
+
+DOCS = ada_user posix1003_1 bsp_howto
+DOCS += c_user
+DOCS += develenv
+DOCS += FAQ filesystem itron
+DOCS += networking porting new_chapters
+DOCS += relnotes rgdb_specs rtems_gdb
+DOCS += started started_ada
+
+SUBPACKAGES = $(DOCS:%=%-docs.add)
+CLEANFILES += $(DOCS:%=%-docs.add)
+SUBPACKAGES += $(SUPPLEMENTS:%=%-supplement.add)
+CLEANFILES += $(SUPPLEMENTS:%=%-supplement.add)
+
+SUFFIXES = -supplement.add -docs.add
+
+%-supplement.add: supplement.add.in
+ t=`echo $@ | sed -e 's,-supplement.add,,'`; \
+ sed -e s/@target\@/$$t/g < $< >$@
+
+%-docs.add: templ.add.in
+ t=`echo $@ | sed -e 's,-docs.add,,'`; \
+ sed -e s/@target\@/$$t/g < $< >$@
+
+rtemsdoc.spec: $(MKSPEC_DEPS) $(SUBPACKAGES)
+ $(MKSPEC) -cfg $(top_builddir)/setup.cache -o . > $@
+ cat $(SUBPACKAGES) >> $@
+
+RPM_SPECS_DATA = rtemsdoc.spec
+
+TEMPLATES = rtemsdoc.spec.in
+
+noinst_DATA = $(TEMPLATES)
+
+EXTRA_DIST = $(TEMPLATES)
+
+CLEANFILES += $(RPM_SPECS_DATA)
+
+include $(top_srcdir)/../automake/local.am
diff --git a/scripts/rtemsdoc/mkspec.in b/scripts/rtemsdoc/mkspec.in
new file mode 100644
index 0000000000..52725bcc5a
--- /dev/null
+++ b/scripts/rtemsdoc/mkspec.in
@@ -0,0 +1,53 @@
+#! /bin/sh
+
+RTEMS_DIR=`dirname $0`/@top_srcdir@
+PACKAGE_BUGREPORT=@PACKAGE_BUGREPORT@
+
+CFG=../setup.cache
+exe_ext=@EXEEXT@
+
+usage()
+{
+ echo "$0 [options]"
+ echo " options:"
+ echo " -cfg <setup.cache>"
+ echo " -o <rpm-spec-dir>"
+ exit 1 ;
+}
+
+specsrc=${RTEMS_DIR}/rtemsdoc/rtemsdoc.spec.in
+
+while test $# -ge 2; do
+case $1 in
+-cfg)
+ shift
+ CFG=$1
+ shift
+ ;;
+-o)
+ shift
+ dst=$1
+ shift
+ ;;
+-*)
+ echo "invalid option $1";
+ usage
+ ;;
+esac
+done
+
+if test ! $# -eq 0;
+then
+ echo "Invalid number of arguments" >&2
+ usage >&2
+fi
+
+. ./$CFG
+
+sed -e "s%@PACKAGE_BUGREPORT\@%@PACKAGE_BUGREPORT@%g" \
+ -e "s%@rtems_rpm_release\@%${rtems_rpm_release}%g" \
+ -e "s%@rtems_version\@%${rtems_version}%g" \
+ -e "s%@rtems_rpm_version\@%${rtems_rpm_version}%g" \
+ -e "s,@rpm_build_root\@,${rpm_build_root},g" \
+ -e "s%@exe_ext\@%${exe_ext}%g" \
+< ${specsrc}
diff --git a/scripts/rtemsdoc/rtemsdoc.spec.in b/scripts/rtemsdoc/rtemsdoc.spec.in
new file mode 100644
index 0000000000..903322677a
--- /dev/null
+++ b/scripts/rtemsdoc/rtemsdoc.spec.in
@@ -0,0 +1,100 @@
+#
+# spec file for package rtemsdoc
+#
+# Copyright (c) 2003 Ralf Corsepius, Ulm, Germany
+#
+# please send bugfixes or comments to @PACKAGE_BUGREPORT@
+#
+
+%define _prefix /opt/rtems
+%define _datadir %{_prefix}/share
+%define _infodir %{_datadir}/info
+
+%define srcvers @rtems_version@
+%define rpmvers %{expand:%%(echo @rtems_version@ | tr - _ )}
+
+
+Vendor: OAR Corporation
+Distribution: Linux
+Name: rtemsdoc
+Release: @rtems_rpm_release@
+License: Distributable
+Group: rtems
+
+Autoreqprov: on
+Packager: corsepiu@faw.uni-ulm.de and joel@OARcorp.com
+BuildPreReq: texinfo >= 4.2
+BuildPreReq: tetex
+BuildPreReq: perl
+BuildPreReq: gcc
+
+Version: %{rpmvers}
+Summary: A free operating system for embedded systems
+Source: rtems-%{srcvers}.tar.bz2
+
+#
+# The original sources are not included in the source RPM.
+# If we included them, then the source RPMs for each target
+# would duplicate MBs of source unnecessarily. This is
+# a duplication of over 30 MBs of source for each of
+# the more than 10 targets it is possible to build.
+#
+# You can get them yourself from the Internet and copy them to
+# your /usr/src/redhat/SOURCES directory ($RPM_SOURCE_DIR).
+# Or you can try the ftp options of rpm :-)
+#
+NoSource: 0
+Prefix: %{_prefix}
+Prefix: %{_infodir}
+Prefix: %{_datadir}
+BuildRoot: %{_tmppath}/%{name}-%{version}-root
+BuildArch: noarch
+
+%description
+RTEMS is a free operating system for embedded systems.
+
+This package contains the documentation
+
+%prep
+%setup -c -T -n %{name}-%{version} -b0
+test -d build || mkdir build
+%build
+cd build
+# rtems does not support building inside the source tree
+ export PATH=%{_prefix}/bin:$PATH
+ ../rtems-%{srcvers}/doc/configure \
+ --prefix=%{_prefix} \
+ --infodir=%{_infodir} \
+ --datadir=%{_datadir} \
+ --enable-docs
+ make RTEMS_BSP=
+%install
+ rm -rf ${RPM_BUILD_ROOT}
+cd build
+ make RTEMS_BSP= DESTDIR=${RPM_BUILD_ROOT} install
+ rm -f ${RPM_BUILD_ROOT}/%{_infodir}/template*
+ rm -f ${RPM_BUILD_ROOT}/%{_datadir}/rtems/*/template*
+ rm -rf ${RPM_BUILD_ROOT}/%{_datadir}/rtems/html/supplements/template*
+
+ gzip -9qf ${RPM_BUILD_ROOT}/%{_infodir}/*
+ bzip2 -9qf ${RPM_BUILD_ROOT}/%{_datadir}/rtems/ps/*
+
+## base
+
+%package base
+Summary: Documentation for RTEMS ada support
+Group: rtems/documentation
+
+%description base
+RTEMS is a free operating system for embedded systems.
+
+This package contains the files shared between different documentation
+packages.
+
+%files base
+%dir %{_infodir}
+%dir %{_datadir}/rtems
+%dir %{_datadir}/rtems/html
+%{_datadir}/rtems/html/images
+%{_datadir}/rtems/html/*.html
+
diff --git a/scripts/rtemsdoc/supplement.add.in b/scripts/rtemsdoc/supplement.add.in
new file mode 100644
index 0000000000..603db361e2
--- /dev/null
+++ b/scripts/rtemsdoc/supplement.add.in
@@ -0,0 +1,35 @@
+## supplement for target @target@
+
+%package @target@
+Summary: Documentation for RTEMS @target@ support
+Group: rtems/documentation
+PreReq: /sbin/install-info
+Requires: rtemsdoc-base
+
+%description @target@
+RTEMS is a free operating system for embedded systems.
+
+This package contains the @target@ target supplement
+
+%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
+%dir %{_datadir}/rtems/html/supplements
+%{_datadir}/rtems/html/supplements/@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
diff --git a/scripts/rtemsdoc/templ.add.in b/scripts/rtemsdoc/templ.add.in
new file mode 100644
index 0000000000..9addda8290
--- /dev/null
+++ b/scripts/rtemsdoc/templ.add.in
@@ -0,0 +1,34 @@
+## @target@
+
+%package @target@
+Summary: Documentation for RTEMS @target@ support
+Group: rtems/documentation
+PreReq: /sbin/install-info
+Requires: 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