home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / gnu / utils / bug / 2472 < prev    next >
Encoding:
Internet Message Format  |  1993-01-25  |  1.5 KB

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!cis.ohio-state.edu!blacks.jpl.nasa.gov!dank
  2. From: dank@blacks.jpl.nasa.gov (Daniel R. Kegel)
  3. Newsgroups: gnu.utils.bug
  4. Subject: Another Problem installing Texinfo-2.16 on Solaris 2
  5. Date: 25 Jan 1993 21:25:37 -0500
  6. Organization: Image Analysis Systems Group, JPL
  7. Lines: 30
  8. Sender: daemon@cis.ohio-state.edu
  9. Approved: bug-gnu-utils@prep.ai.mit.edu
  10. Distribution: gnu
  11. Message-ID: <dank.728007195@blacks.jpl.nasa.gov>
  12. References: <lm0590INN8ng@exodus.Eng.Sun.COM>
  13.  
  14. Problem installing texinfo-2.16 under SunOS4.1.1 using Sun make and cc:
  15. Installing using --prefix seems to require running Makefile thru sed
  16. to fix it two places to get it to obey prefix.
  17.  
  18. Here are the steps I had to follow; IMHO, the configure script should
  19. have modified the main Makefile, not just C/Makefile.
  20. - Dan Kegel
  21.  
  22. # Unpacking and compilation
  23. # Unpack and configure texinfo
  24. cd $dir
  25. zcat texinfo-2.16.tar.Z | tar xvf -
  26. patch texinfo-2.16/C/configure < dan.patch
  27. cd $dir/texinfo-2.16/C
  28. configure --prefix=/usr/local/gnu
  29. cd $dir/texinfo-2.16
  30. if (! -f Makefile.orig) cp Makefile Makefile.orig
  31. sed -e 's,prefix = /usr/local,prefix = /usr/local/gnu,' \
  32.     -e 's,./fixfonts,prefix=$(prefix) ./fixfonts,'< Makefile.orig > Makefile
  33. make all
  34.  
  35. ### Installation (while root or psuedouser)
  36. # Install texinfo
  37. mkdir /usr/local/gnu/lib/{tex,tex/inputs,tex/fonts}
  38. # Following line only works if you have TeX installed in /usr/local/tex
  39. ln -s /usr/local/tex/lib/fonts/* /usr/local/gnu/lib/tex/fonts
  40. cd $dir/texinfo-2.16
  41. make install
  42.  
  43.  
  44.