source: rtems/scripts/gdb/gdb.spec.in @ 5503d75

4.104.114.84.95
Last change on this file since 5503d75 was 5503d75, checked in by Joel Sherrill <joel.sherrill@…>, on 11/18/99 at 20:41:13

Corrected to include extra arguments for simulators on sparc
and powerpc targets.

  • Property mode set to 100644
File size: 3.0 KB
RevLine 
[1f339c2]1#
2# spec file for package rtems
3#
4# Copyright  (c)  1999  OARCorp, Huntsville, AL
5#
6# please send bugfixes or comments to joel@OARcorp.com
7#
8
9# neededforbuild -- nothing
10
11Vendor:       OAR Corporation
12Distribution: Linux
13Name:         @target_alias@-gdb
14Release:      @Release@
15Copyright:    1999 OARCorp
[56e61bb8]16Group:        rtems
[1f339c2]17Provides:     @target_alias@-gdb
18
19Autoreqprov:  on
20Packager:     corsepiu@faw.uni-ulm.de and joel@OARcorp.com
21
[431c35d]22Version:      @gdb_version@
[1f339c2]23Summary:      gdb for target @target_alias@
[f5a1fe9]24Source0:      ftp://ftp.gnu.org/pub/gnu/gdb-@gdb_version@.tar.gz
[ac5a9bf]25Patch0:       gdb-@gdb_version@-rtems-@gdb_patch_version@.diff
26#
27# The original sources are not included in the source RPM.
28# If we included them, then the source RPMs for each target
29# would duplicate MBs of source unnecessarily.  This is
30# a duplication of over 30 MBs of source for each of
31# the more than 10 targets it is possible to build.
32#
33# You can get them yourself from the Internet and copy them to
34# your /usr/src/redhat/SOURCES directory ($RPM_SOURCE_DIR).
35# Or you can try the ftp options of rpm :-)
36#
37NoSource:      0
38
[1f339c2]39
40%description
41RTEMS is an open source operating system for embedded systems.
42
43This is the GNU gdb for RTEMS targetting @target_alias@.
44
45Authors:
46--------
47    Joel Sherrill (joel@oarcorp.com)
48    ...
49
50%prep
[431c35d]51echo RPM_BUILD_ROOT=${RPM_BUILD_ROOT}
[1f339c2]52# untar the sources inside @target_alias@-gdb
53%setup -c -n @target_alias@-gdb -a 0
54
55%patch0 -p0
56
57%build
58test -d build || mkdir build
59  cd build
60  ../gdb-@gdb_version@/configure --target=@target_alias@ \
[5503d75]61    --verbose --prefix=/opt/rtems @extra_configure_arguments@
[1f339c2]62
63  make all
64  make info
65
66%install
67  cd build
68  make prefix=$RPM_BUILD_ROOT/opt/rtems install
69  make prefix=$RPM_BUILD_ROOT/opt/rtems install-info
70
[56e61bb8]71  # gzip info files
72  gzip -f $RPM_BUILD_ROOT/opt/rtems/info/*.info 2>/dev/null
73  gzip -f $RPM_BUILD_ROOT/opt/rtems/info/*.info-? 2>/dev/null
74  gzip -f $RPM_BUILD_ROOT/opt/rtems/info/*.info-?? 2>/dev/null
75
[1f339c2]76%post
77  if test -d $RPM_INSTALL_PREFIX/rtems/info;
78  then
79    rm -f $RPM_INSTALL_PREFIX/rtems/info/dir
80    f=`find $RPM_INSTALL_PREFIX/rtems/info -name '*.info.gz'`
81    test -n "$f" && for i in $f; do
82      install-info $i $RPM_INSTALL_PREFIX/rtems/info/dir
83    done
84  fi
85
86%postun
87  if test -d $RPM_INSTALL_PREFIX/rtems/info;
88  then
89    rm -f $RPM_INSTALL_PREFIX/rtems/info/dir
90    f=`find $RPM_INSTALL_PREFIX/rtems/info -name '*.info.gz'`
91    test -n "$f" && for i in $f; do
92      install-info $i $RPM_INSTALL_PREFIX/rtems/info/dir
93    done
94  fi
95
96%files
[72d3f610]97%dir /opt/rtems/info
[1f339c2]98%doc /opt/rtems/info/gdb.info*
99%doc /opt/rtems/info/mmalloc.info*
100%doc /opt/rtems/info/readline.info*
101
[72d3f610]102%dir /opt/rtems/man
103%dir /opt/rtems/man/man1
[1f339c2]104%doc /opt/rtems/man/man1/@target_alias@-gdb.1
105
106%dir /opt/rtems/include
[43e7d103]107# We install libbfd from binutils
108# /opt/rtems/include/bfd.h
109# /opt/rtems/include/bfdlink.h
[1f339c2]110
111%dir /opt/rtems/lib
[43e7d103]112# We install libbfd from binutils
113# /opt/rtems/lib/libbfd*
114# We use libiberty from gcc
115# /opt/rtems/lib/libiberty*
[1f339c2]116
117%dir /opt/rtems/bin
118/opt/rtems/bin/@target_alias@-gdb
119
Note: See TracBrowser for help on using the repository browser.