# $Id: dm-devel-vers.spec,v 1.9 2000/04/25 22:38:51 stewart Exp $ %define version 3.9 %define build 10 Summary: NetWinder DM ARM Linux setup (development) Name: dm-devel Version: %{version} Release: %{build} Copyright: GPL Group: System Environment/Base ExclusiveArch: armv4l BuildRoot: /var/tmp/dm-devel-root %description NetWinder DM ARM Linux requires configuration after RPMS are installed, since we don't use a standard Red Hat installation program (which would do these changes for us). %changelog * Tue Apr 25 2000 Rod m. Stewart - new version 3.9-10 * Sun Mar 19 2000 Rod m. Stewart - new version 3.9-9 * Sun Mar 19 2000 Rod m. Stewart - new version 3.9-8 * Fri Mar 03 2000 Rod m. Stewart - new version 3.9-7 * Tue Feb 15 2000 Rod m. Stewart - pre release stuff for DM 4.0 preperations - version is currently 3.9 - readelf is now in binutils * Wed Apr 14 1999 Andrew E. Mileski - merged netwinder-release and *.kludges into this %install # # Clean up, just in case # rm -rf %{buildroot} %post # # /etc/.pwd.lock will not go away :( # rm -rf /etc/.pwd.lock # # egcs kludge # if [ -e /usr/bin/gcc ] ; then cd /usr/bin ln -s gcc egcs fi # # strip kludge # if [ -e /usr/bin/strip ] ; then mv -f /usr/bin/strip /usr/bin/strip.real cat > /usr/bin/strip <<-'EOF' #! /bin/sh /usr/bin/strip.real $* exit 0 EOF chmod 755 /usr/bin/strip fi # # Disable MySQL at boot (not configured yet) # if [ -e /etc/rc.d/init.d/mysql ] ; then chkconfig mysql off fi # # xdm kludge (our X is old - it is started from inittab) # if [ -e /etc/rc.d/init.d/xdm ] ; then chkconfig --del xdm && rm -f /etc/rc.d/init.d/xdm fi %clean rm -rf %{buildroot} %files