home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / xap / xfm / slackbui next >
Encoding:
Text File  |  1995-10-10  |  1.3 KB  |  58 lines

  1. #!/bin/sh
  2. # Set initial variables:
  3. CWD=`pwd`
  4. if [ "$TMP" = "" ]; then
  5.   TMP=/tmp
  6. fi
  7. PKG=$TMP/package-xfm
  8. SRC=/devel/manpagesrc
  9. INFO=/devel/info-pages/usr/info
  10. TEX=/devel/texinfo-docs
  11.  
  12. if [ ! -d $TMP ]; then
  13.   mkdir -p $TMP # location to build the source
  14. fi
  15. if [ ! -d $PKG ]; then
  16.   mkdir -p $PKG # place for the package to be built
  17. fi
  18.  
  19. # Explode the package framework:
  20. cd $PKG
  21. explodepkg $CWD/_xfm.tar.gz
  22.  
  23. # Function to handle manpage source:
  24. man2gz () { # $1 is source page name, $2 is target name for preformatted
  25.             # output (full path && name) and $3 is the same, but for the
  26.             # source.
  27.   mkdir -p `dirname $2`
  28.   groff -Tascii -mandoc $1 | gzip -9c > $2
  29.   if [ ! "$3" = "" ]; then
  30.     mkdir -p `dirname $3`
  31.     cat $1 > $3 
  32.   fi 
  33. }
  34.  
  35. echo "+===========+"
  36. echo "| xfm-1.3.2 |"
  37. echo "+===========+"
  38. cd $TMP
  39. tar xzvf $CWD/xfm-1.3.2.tar.gz
  40. cd xfm-1.3.2
  41. # This may take further tweaking to put the pixmaps/bitmaps in the "right"
  42. # places... see the Imake.options file.  We really should figure out how to
  43. # keep dot.xfm in the /var/X11R6/lib/xfm directory while moving the pixmaps
  44. # to the normal location.
  45. xmkmf
  46. make Makefiles
  47. make
  48.  
  49. # Build the package:
  50. cd $PKG
  51. tar czvf $TMP/xfm.tgz .
  52.  
  53. # Clean up the extra stuff:
  54. if [ "$1" = "--cleanup" ]; then
  55.   rm -rf $TMP/xfm-1.3.2
  56.   rm -rf $PKG
  57. fi
  58.