Ticket #1110: patch-README

File patch-README, 2.9 KB (added by fkr@…, 20 years ago)

updated patch

Line 
1Index: README
2===================================================================
3RCS file: /Volumes/src/cvs/od/proj/darwinports/README,v
4retrieving revision 1.29
5diff -u -r1.29 README
6--- README      12 Oct 2003 03:37:31 -0000      1.29
7+++ README      3 Nov 2003 23:03:54 -0000
8@@ -7,8 +7,8 @@
9     DarwinPorts currently builds and runs on MacOS X 10.2 (Darwin 6.0). The
10 system is portable, written in TCL with a limited set of TCL extensions in C.
11 
12-       The "DarwinPorts User Guide" is available at:
13-       http://www.opendarwin.org/projects/darwinports/guide/
14+    The "DarwinPorts User Guide" is available at:
15+http://www.opendarwin.org/projects/darwinports/guide/
16 
17     For in-depth documentation on the internals of the ports system
18 architecture, refer to base/doc/INTERNALS.
19@@ -75,30 +75,39 @@
20 USING THE PORT COMMAND
21 
22     If you haven't already, add /opt/local/bin to your path (or $PREFIX/bin
23-if you've elected to install DarwinPorts somewhere else). If you're
24-unsure how, add the following line to your ~/.cshrc file.
25+if you've elected to install DarwinPorts somewhere else).
26+If you're unsure how, add the following line to your shells rc file.
27+
28+If you use a (t)csh add the following line to your ~/.cshrc
29+(this is the default shell on Jaguar (Mac OS X 10.2), *BSD):
30 
31        set path=($path /opt/local/bin)
32 
33-    Your changes to ~/.cshrc will not take effect until you have opened
34-a new shell.
35+If you use a bourne shell (sh/bash) add the following line to
36+your ~/.profile instead (this is the default shell on Panther
37+(Mac OS X 10.3) and most linux distributions):
38+       
39+       export PATH=$PATH:/opt/local/bin
40+
41+Your changes to your shells rc file will not take effect until you have
42+opened a new shell.
43 
44-    The following command will build and install a port:
45+The following command will build and install a port:
46 
47        port install <portname>
48 
49-    To find a specific port, try using "port search".
50+To find a specific port, try using "port search".
51 
52        port search vi
53 
54-    Please refer to the port man page for complete documentation on the port
55-    command.
56+Please refer to the port man page for complete documentation on the port
57+command.
58 
59-    It is also possible to do operations, like building or fetching, for
60-    all ports on the system using the portall command.  It takes essentially
61-    the same arguments as the port command but operates iteratively on every
62-    port in dports/.  When you do a "make clean" from this directory, for
63-    example, a "portall clean" is also invoked to completely clean things up.
64+It is also possible to do operations, like building or fetching, for
65+all ports on the system using the portall command.  It takes essentially
66+the same arguments as the port command but operates iteratively on every
67+port in dports/.  When you do a "make clean" from this directory, for
68+example, a "portall clean" is also invoked to completely clean things up.
69 
70 
71 CREATING NEW PORTS