===============================================================================

Missile Command v1.0.0               By Julian Peterson (weaver@earthcorp.com)
Ported to the Zaurus                 By Steve Essery (tecknobabble@hotmail.com)

A clone of the Atari save-your-city-from-impending-nuclear-doom game.

===============================================================================

REQUIREMENTS:

SDL >= v1.2.4
  http://www.libsdl.org/download-1.2.php
  NB  The Zaurus port requires SDL >= 1.2.5 (first version to support Qtopia)

SDL_image >= 1.2.1  (as well as at least libpng.so.2)
  http://www.libsdl.org/projects/SDL_image/

SDL_mixer >= 1.2.4  (if you compile in sound)
  http://www.libsdl.org/projects/SDL_mixer/


-------------------------------------------------------------------------------

INSTALLATION:

Step 1: Edit the Makefile, and change the lines:

    data_prefix    = /usr/local/
    game_bin       = bin
    game_data      = share/missile
    game_icons     = share/pixmaps

    to reflect wherever you want the game installed.


  And change:

    install_as_owner = root
    install_as_group = games
    
    to reflect the ownership of the files. 

    note: This will have to be your username/group if you're not root


  For sound, ensure there is a line:

     sound           = USE_SOUND



Step 2:  Skip to step 3 if you have a precompiled copy of Missile Command, 
otherwise to compile type:

> make
 
or for the Zaurus

> make -f Makefile.zaurus



Step 3: To install all of the files in the right places, type:

> make install

For the Zaurus you will need to build an ipkg file to enable you to install
the program.  As the owner of the files needs to have a UID<99 you may wish to
create the ipkg file as root, e.g:

> su
Password:
# make -f Makefile.zaurus ipkg

Transfer the resulting missilecommand_<VERSION>_arm.ipk to your Zaurus and
install as normal.



Step 4: (optional for KDE or Gnome users)

Copy missile.desktop to your Gnome menu subdir.  
(Usually /usr/share/gnome/apps/Games/ ?)
> cp missile.desktop /usr/share/gnome/apps/Games

And/Or:

Copy missile.kdelnk to your KDE  menu subdir.
(Usually /usr/share/applnk/Games/ ?)
> cp missile.kdelnk /usr/share/applnk/Games/

You will want to check those paths.  All I know is that is where they are on my
machine.

I suspect the gnome path is simply `gnome-config --datadir`/gnome/apps/Games
and I believe KDEs is `kde-config --expandvars --install apps`/Games
Can anyone help with that?

-------------------------------------------------------------------------------

UNINSTALLING:

To uninstall Missile Command, type:

> make uninstall

Use the package manager to remove the missile command package on the Zaurus

-------------------------------------------------------------------------------

CONTACT:

Bug reports, suggestions, and bitching to:

  Julian Peterson (weaver@earthcorp.com)

For issues with the Zaurus port:

  Steve Essery (tecknobabble@hotmail.com)

-------------------------------------------------------------------------------

LEGAL INFORMATION:

Copyright (C) 2000 Julian Peterson

This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2 of the License, or (at your
option) any later version.

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

===============================================================================
