source: rtems/scripts/gcc3newlib/base-gcc.add @ 9b0bb5a4

4.104.114.84.95
Last change on this file since 9b0bb5a4 was 9b0bb5a4, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/28/03 at 15:39:35

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

  • gccnewlib.add: Add various BuildPreReq?. Add %defattr(-,root,root) to "dir".
  • base-g77.add: %defattr(-,root,root).
  • base-gcc.add %defattr(-,root,root).
  • base-gcj.add %defattr(-,root,root).
  • base-gnat.add %defattr(-,root,root).
  • target-c++.add %defattr(-,root,root).
  • target-g77.add %defattr(-,root,root).
  • target-gcc.add %defattr(-,root,root).
  • target-gcj.add %defattr(-,root,root).
  • target-gnat.add %defattr(-,root,root).
  • target-objc.add %defattr(-,root,root).
  • Property mode set to 100644
File size: 1.6 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%defattr(-,root,root)
17%dir %{_prefix}/info
18%doc %{_prefix}/info/cpp.info*.gz
19%doc %{_prefix}/info/cppinternals.info*.gz
20%doc %{_prefix}/info/gcc.info*.gz
21%doc %{_prefix}/info/libc.info*.gz
22%doc %{_prefix}/info/libm.info*.gz
23%doc %{_prefix}/info/gccint.info*.gz
24
25%dir %{_prefix}/man
26%dir %{_prefix}/man/man1
27%doc %{_prefix}/man/man1/cpp.1*
28%doc %{_prefix}/man/man1/gcov.1*
29%dir %{_prefix}/man/man7
30%doc %{_prefix}/man/man7/fsf-funding.7*
31%doc %{_prefix}/man/man7/gfdl.7*
32%doc %{_prefix}/man/man7/gpl.7*
33
34%dir %{_prefix}/include
35
36%post -n rtems-base-gcc
37  if test -d $RPM_INSTALL_PREFIX%{_prefix}/info;
38  then
39    rm -f $RPM_INSTALL_PREFIX%{_prefix}/info/dir
40    f=`find $RPM_INSTALL_PREFIX%{_prefix}/info -name '*.info.gz'`
41    test -n "$f" && for i in $f; do
42      install-info $i $RPM_INSTALL_PREFIX%{_prefix}/info/dir
43    done
44  fi
45
46%postun -n rtems-base-gcc
47  if test -d $RPM_INSTALL_PREFIX%{_prefix}/info;
48  then
49    rm -f $RPM_INSTALL_PREFIX%{_prefix}/info/dir
50    f=`find $RPM_INSTALL_PREFIX%{_prefix}/info -name '*.info.gz'`
51    test -n "$f" && for i in $f; do
52      install-info $i $RPM_INSTALL_PREFIX%{_prefix}/info/dir
53    done
54  fi
55
Note: See TracBrowser for help on using the repository browser.