home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / graphics / 14074 < prev    next >
Encoding:
Text File  |  1993-01-21  |  4.3 KB  |  169 lines

  1. Newsgroups: comp.graphics
  2. Path: sparky!uunet!gatech!emory!sol.ctr.columbia.edu!The-Star.honeywell.com!umn.edu!exa!mavuduru
  3. From: mavuduru@exa.cs.umn.edu (Rama Mavuduru)
  4. Subject: Re: Where is SUIT?
  5. Message-ID: <mavuduru.727643580@exa>
  6. Sender: news@news2.cis.umn.edu (Usenet News Administration)
  7. Nntp-Posting-Host: exa.cs.umn.edu
  8. Organization: University of Minnesota
  9. References: <Jan21.170449.66425@yuma.ACNS.ColoState.EDU>
  10. Distribution: usa
  11. Date: Thu, 21 Jan 1993 19:13:00 GMT
  12. Lines: 155
  13.  
  14. In <Jan21.170449.66425@yuma.ACNS.ColoState.EDU> anderson@CS.ColoState.EDU (Chuck Anderson) writes:
  15.  
  16. >Please post the ftp procedure for retrieving the University of
  17. >Virginia's SUIT (simple user interface toolkit) package.  Thanks.
  18.  
  19. Here's the relevant information from the SUIT README file:
  20.  
  21. HOW TO GET THE SUIT DISTRIBUTION
  22. ========================================
  23. SUIT is available through anonymous ftp from
  24. uvacs.cs.virginia.edu (128.143.8.29). Each SUIT distribution 
  25. package comes with full source code and documentation, though
  26. as explained below, the source and docs are available separately 
  27. as well for those attempting to port SUIT to an architecture we do not
  28. yet support. To set a standard SUIT distribution package for your 
  29. machine: 
  30.  
  31.  
  32. 1.) On your system, make a directory that will hold the 
  33. distribution. For example, in your home directory type:
  34.  
  35.         mkdir suit
  36.  
  37. The process of installing the SUIT distribution causes SUIT to 
  38. create a new directory underneath the one you've created here.
  39.  
  40. 2.) Change your current directory to this new location:
  41.  
  42.         cd suit
  43.  
  44. 3.) Type the following command:
  45.  
  46.         ftp 128.143.8.29
  47.  
  48.  You should see something that looks like:
  49.  
  50.         Connected to 128.143.8.29.
  51.         220 uvacs FTP server (SunOS 4.1) ready.
  52.         Name (128.143.8.29:CookieMonster):
  53.  
  54.     where "CookieMonster" is your login ID.
  55.  
  56.  
  57. 4.) At this prompt, type: 
  58.  
  59.         anonymous
  60.     
  61.     You should see something like this:
  62.     
  63.         331 Guest login ok, send ident as password.
  64.         Password:
  65.  
  66. 5.) Please type in your local login ID as a courtesy. This will not be
  67. echoed back to you, so don't panic.
  68.     You will see:
  69.  
  70.         230 Guest login ok, access restrictions apply.
  71.         ftp>
  72.  
  73. 6.) cd into the SUIT directory by typing:
  74.  
  75.         cd /pub/suit/distribution
  76.  
  77. 7.) cd into the directory named after the hardware platform
  78.     you intend to use:
  79.  
  80.     cd <machine_type>
  81.     where <machine_type> is one of:
  82.  
  83.         sparc         
  84.         sun3
  85.         sgi
  86.         rs6000
  87.     for example:
  88.         cd sparc
  89.             OR 
  90.         cd sun3 
  91.             ETC.
  92.  
  93. 8.) VERY IMPORTANT: set the ftp transfer to use binary mode
  94.     Type:
  95.         binary
  96.  
  97. 9.) transfer the archive
  98.     Type:
  99.         get <machine_type>.tar.Z
  100.  
  101.         for example:    
  102.             get sparc.tar.Z
  103.                 OR
  104.             get sun3.tar.Z
  105.                 ETC.
  106.  
  107.     This file is VERY large. Expect it to take
  108.     several minutes to come over.
  109.     
  110. 10.) leave ftp
  111.     Type:
  112.         quit
  113.  
  114. 11.) uncompress the archive
  115.     Type:
  116.     uncompress < <machine_type>.tar.Z | tar xfh -
  117.     
  118.     for example:
  119.         uncompress < sparc.tar.Z | tar xfh -
  120.  
  121. 12.) CONGRATULATIONS! You've got yourself the SUIT library and header
  122. files! You can now safely remove the <machine_name>.tar file if you so
  123. desire.
  124.  
  125. 13.) Follow the directions in the top level README file to prepare
  126. the SUIT distrbution for your site.
  127.  
  128.  
  129. GETTING SUIT SOURCE
  130. ===========================
  131.     Full source code comes with each distribution package of SUIT
  132.     (same source for all architectures). 
  133.  
  134.     IF YOU ONLY WANT THE SOURCE, you can ftp it from uvacs, as
  135.     described above
  136.  
  137.         ftp uvacs.cs.virginia.edu
  138.         (Be sure to use binary transfer)
  139.         
  140.     in the file called    
  141.  
  142.         /pub/suit/distribution/JustSource/src.tar.Z
  143.  
  144.  
  145.  
  146. GETTING THE SUIT REFERENCE MANUAL
  147. =========================================
  148.     Each standard distribution package of SUIT comes with a
  149.     complete reference manual which describes the SUIT library 
  150.     calls. In the standard distribution, the manual comes in
  151.     the form of a VERY long    postscript file that prints out 
  152.     from last page to first.
  153.     
  154.     If it is more convenient for you to print the manual out from
  155.     first page to last, or if you need just individual reference 
  156.     manual chapters, those are distributed as well in the file 
  157.  
  158.         /pub/suit/distribution/JustDocs/doc.tar.Z
  159.  
  160.     which can ftp from uvacs as explained above. These files are
  161.     called chap_01.ps, chap_02.ps, etc. The complete reference
  162.     manual is in the file chap_all.ps.
  163.  
  164.     Again, be sure to use binary mode when getting this file.
  165.     (type "binary" at the ftp prompt before typing "get")
  166.  
  167. ----
  168. Rama Mavuduru
  169.