Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/base/src/port/port-help.tcl

Revision 37243, 4.7 KB (checked in by raimue@…, 6 months ago)

port/port-help.tcl:
More helpful action desriptions

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1# This file contains help strings for the various commands/topics in port(1)
2#
3# Many of these strings are place-holders right now.  Replace with genuinely
4# helpful text and then delete this message.
5#
6# port-help.tcl
7# $Id$
8
9
10set porthelp(activate) {
11Activate the given ports
12}
13
14set porthelp(archive) {
15Archive the given ports
16}
17
18set porthelp(build) {
19Build the given ports
20}
21
22set porthelp(cat) {
23Writes the Portfiles of the given ports to stdout
24}
25
26set porthelp(cd) {
27Changes to the directory of the given port
28
29Only in interactive mode.
30}
31
32set porthelp(checksum) {
33Compares the checksums for the downloaded files of the given ports
34}
35
36set porthelp(clean) {
37Removes file associates with given ports
38
39--archives    Removes created archives
40--dist        Removes downloaded distfiles
41--work        Removes work directory
42--all         Removes everything from above
43}
44
45set porthelp(compact) {
46Compact the given ports
47}
48
49set porthelp(configure) {
50Configure the given ports
51}
52
53set porthelp(contents) {
54Returns a list of files installed by given ports
55}
56
57set porthelp(deactivate) {
58Deactivates the given ports
59}
60
61set porthelp(dependents) {
62Returns a list of installed dependents for each of the given ports
63
64Note: Don't get fooled by the language!
65Dependents are those ports which depend on the given port, not vice-versa!
66}
67
68set porthelp(deps) {
69Returns a list of dependencies for each of the given ports
70}
71
72set porthelp(destroot) {
73Destroot the given ports
74}
75
76set porthelp(dir) {
77Returns the directories of the given ports
78
79This can be quite handy to be used in your shell:
80cd $(port dir <portname>)
81}
82
83set porthelp(distcheck) {
84Checks if the given ports can be fetched from all of its master_sites
85}
86
87set porthelp(distfiles) {
88Returns a list of distfiles for the given port
89}
90
91set porthelp(dmg) {
92Creates a dmg for each of the given ports
93}
94
95set porthelp(dpkg) {
96Creates a dpkg for each of the given ports
97}
98
99set porthelp(echo) {
100Returns the list of ports the argument expands to
101
102This can be useful to what a pseudo-port expands.
103}
104
105set porthelp(edit) {
106Edit given ports
107}
108
109set porthelp(ed) $porthelp(edit)
110
111set porthelp(exit) {
112Exit port
113
114Only in interactive mode.
115}
116
117set porthelp(extract) {
118Extract the downloaded files of the given ports
119}
120
121set porthelp(fetch) {
122Downloaded distfiles for the given ports
123}
124
125set porthelp(file) {
126Returns the path to the Portfile for each of the given ports
127}
128
129set porthelp(gohome) {
130Opens the homepages of the given ports in your browser
131}
132
133set porthelp(help) {
134Displays short help texts for the given ports
135}
136
137set porthelp(info) {
138Returns informations about the given ports
139}
140
141set porthelp(install) {
142Installs the given ports
143}
144
145set porthelp(installed) {
146List installed versions of the given port
147}
148
149set porthelp(lint) {
150Checks if the Portfile is lint-free for each of the given ports
151}
152
153set porthelp(list) {
154List the available version for each of the given ports
155}
156
157set porthelp(livecheck) {
158Checks if a new version of the software is available
159}
160
161set porthelp(load) {
162Interface to launchctl(1) for ports providing startup items
163}
164
165set porthelp(location) {
166Returns the install location for each of the given ports
167}
168
169set porthelp(mdmg) {
170Creates a dmg for each of the given ports
171}
172
173set porthelp(mirror) {
174Fetches distfiles for the given ports
175}
176
177set porthelp(mpkg) {
178Creates a mpkg for each of the given ports
179}
180
181set porthelp(outdated) {
182Returns a list of outdated ports
183}
184
185set porthelp(patch) {
186Applies patches on each of the given port
187}
188
189set porthelp(pkg) {
190Creates a pkg for each of the given ports
191}
192
193set porthelp(platform) {
194Returns the current platform you are on
195}
196
197set porthelp(provides) {
198Return a list of files provided by the given ports
199}
200
201set porthelp(quit) $porthelp(exit)
202
203set porthelp(rpm) {
204Creates a rpm for each of the given ports
205}
206
207set porthelp(search) {
208Search for a port
209
210This looks in name, desription and long_description of each port for the given search string.
211}
212
213set porthelp(selfupdate) {
214Upgrade MacPorts itself
215}
216
217set porthelp(srpm) {
218Creates a srpm for each of the given ports
219}
220
221set porthelp(submit) {
222Submit a port to the MacPorts Web Application
223}
224
225set porthelp(sync) {
226Synchronize the set of Portfiles
227}
228
229set porthelp(test) {
230Run tests on each of the given ports
231}
232
233set porthelp(trace) {
234Trace a port
235}
236
237set porthelp(unarchive) {
238Unarchive a port
239}
240
241set porthelp(uncompact) {
242Uncompact a port
243}
244
245set porthelp(uninstall) {
246Uninstall the given ports
247}
248
249set porthelp(unload) $porthelp(load)
250
251set porthelp(upgrade) {
252Upgrades the given ports to the latest version
253}
254
255set porthelp(url) {
256Returns the URL for each of the given ports
257}
258
259set porthelp(usage) {
260Returns basic usage of the port command
261}
262
263set porthelp(variants) {
264Returns a list of variants with descriptions available for the given ports
265}
266
267set porthelp(version) {
268Returns the version of MacPorts
269}
Note: See TracBrowser for help on using the browser.