source: rtems/scripts/gccnewlib/base-gcc.add @ 99f97d3f

Last change on this file since 99f97d3f was 59292fe9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/31/03 at 06:22:09

2003-01-31 Ralf Corsepius <corsepiu@…>

  • rtemsdoc/Makefile.am: Use $(top_builddir)/common/common.add, $(top_builddir)/common/clean.add, header.add. Generate rtemsdoc.spec.in.
  • rtemsdoc/mkspec.in: Remove exe_ext.
  • rtemsdoc/rtemsdoc.spec.in: Remove.
  • gccnewlib/Makefile.am: Use $(top_builddir)/common/common.add, $(top_builddir)/common/clean.add, header.add.
  • gccnewlib/base-gcc.m4: Replace @exe_ext@ with %{_exeext}.
  • gccnewlib/base-gcj.add: Replace @exe_ext@ with %{_exeext}.
  • gccnewlib/gccnewlib.add: Replace @exe_ext@ with %{_exeext}. Remove header, broken cdn-X configuration, %clean.
  • gccnewlib/target-g77.add: Replace @exe_ext@ with %{_exeext}.
  • gccnewlib/target-gcc.add: Replace @exe_ext@ with %{_exeext}.
  • gccnewlib/target-gcj.add: Replace @exe_ext@ with %{_exeext}.
  • gccnewlib/target-objc.add: Replace @exe_ext@ with %{_exeext}.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1# ==============================================================
2# rtems-base-gcc
3# ==============================================================
4%package -n rtems-base-gcc
5Provides:       rtems-base-gcc
6Summary:        base package for rtems gcc and newlib C Library
7Group: rtems
8
9%description -n rtems-base-gcc
10
11RTEMS is an open source operating system for embedded systems.
12
13This is the files for gcc and newlib that are shared by all targets.
14
15%files -n rtems-base-gcc
16%dir %{_prefix}/info
17%doc %{_prefix}/info/cpp.info*.gz
18%doc %{_prefix}/info/gcc.info*.gz
19%doc %{_prefix}/info/libc.info*.gz
20%doc %{_prefix}/info/libm.info*.gz
21
22%dir %{_prefix}/bin
23%{_prefix}/bin/gcov%{_exeext}
24
25%dir %{_prefix}/man
26%dir %{_prefix}/man/man1
27%doc %{_prefix}/man/man1/cccp.1
28
29%dir %{_prefix}/include
30%{_prefix}/include/g++-3
31
32%post -n rtems-base-gcc
33  if test -d $RPM_INSTALL_PREFIX%{_prefix}/info;
34  then
35    rm -f $RPM_INSTALL_PREFIX%{_prefix}/info/dir
36    f=`find $RPM_INSTALL_PREFIX%{_prefix}/info -name '*.info.gz'`
37    test -n "$f" && for i in $f; do
38      install-info $i $RPM_INSTALL_PREFIX%{_prefix}/info/dir
39    done
40  fi
41
42%postun -n rtems-base-gcc
43  if test -d $RPM_INSTALL_PREFIX%{_prefix}/info;
44  then
45    rm -f $RPM_INSTALL_PREFIX%{_prefix}/info/dir
46    f=`find $RPM_INSTALL_PREFIX%{_prefix}/info -name '*.info.gz'`
47    test -n "$f" && for i in $f; do
48      install-info $i $RPM_INSTALL_PREFIX%{_prefix}/info/dir
49    done
50  fi
51
Note: See TracBrowser for help on using the repository browser.