summaryrefslogtreecommitdiffstats
path: root/share/man/man7/ports.7
blob: d78db81f4b45b97715d2f2c87537b0164367c1ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
.\"
.\" Copyright (c) 1997 David E. O'Brien
.\"
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
.\" $FreeBSD$
.\"
.Dd January 25, 1998
.Dt PORTS 7
.Os
.Sh NAME
.Nm ports
.Nd contributed applications
.Sh DESCRIPTION
The
.Fx
.Nm Ports Collection
offers a simple way for users and
administrators to install applications.
Each
.Em port
contains any patches necessary to make the original
application source code compile and run on BSD.  Compiling an
application is as simple as typing
.Ic make build
in the port directory!  The
.Ql Pa Makefile
automatically fetches the
application source code, either from a local disk or via ftp, unpacks it
on your system, applies the patches, and compiles it.  If all goes well,
simply type
.Ic make install
to install the application.
.Pp
It is possible to download and use ports from the
.Fx
repository
that are newer than the installed system; however it is important to
install the appropriate "Upgrade Kit" from http://www.FreeBSD.org/ports/
first!  The
.Xr portcheckout 1
script (also a port, of course!) will help to download new ports.
.Pp
For more information about using ports, see
.Nm The Ports Collection
(file:/usr/share/doc/handbook/ports.html --or--
http://www.FreeBSD.org/handbook/ports.html).
For information about creating new ports, see
.Nm Porting applications
(file:/usr/share/doc/handbook/porting.html --or--
http://www.FreeBSD.org/handbook/porting.html).
Both are part of the
.Fx
Handbook.
.Sh TARGETS
Some of the targets work recursively through subdirectories.
This lets you, for example, install all of the biology
ports.  The targets that do this are
.Ar build , checksum , clean , configure ,
.Ar depends , extract , fetch , install ,
and
.Ar package .
.Pp
The following targets will be run automatically by each proceeding
target in order.  That is,
.Ar build
will be run
(if necessary)
by
.Ar install ,
and so on all the way to
.Ar fetch .
Usually, you will only use the
.Ar install
target.
.Bl -tag -width configure
.It Ar fetch
Fetch all of the files needed to build this port from the site(s)
listed in MASTER_SITES and PATCH_SITES.  See
.Ev FETCH_CMD
and
.Ev MASTER_SITE_OVERRIDE .
.It Ar checksum
Verify that the fetched distfile's checksum matches the one the port was
tested against.
Defining
.Ev NO_CHECKSUM
will skip this step.
.It Ar depends
Install
(or compile if only compilation is necessary)
any dependencies of the current port.  When called by the
.Ar extract
or
.Ar fetch
targets, this is run in piecemeal as
.Ar fetch-depends ,
.Ar build-depends ,
etc.  Defining
.Ev NO_DEPENDS
will skip this step.
.It Ar extract
Expand the distfile into a work directory.
.It Ar patch
Apply any patches that are necessary for the port.
.It Ar configure
Configure the port.  Some ports will ask you questions during
this stage.  See
.Ev INTERACTIVE
and
.Ev BATCH .
.It Ar build
Build the port.  This is the same as calling the
.Ar all
target.
.It Ar install
Install the port and register it with the package system.  This
is all you really need to do.
.El
.Pp
The following targets are not run during the normal install process.
.Bl -tag -width fetch-list
.It Ar fetch-list
Show list of files needed to be fetched in order to build the port.
.It Ar pretty-print-run-depends-list pretty-print-build-depends-list
Print a list of all the compile and run dependencies, and dependencies
of those dependencies.
.It Ar clean
Remove the expanded source code.  This recurses to dependencies unless
.Ev NOCLEANDEPENDS
is defined.
.It Ar distclean
Remove the port's distfile(s) and perform the
.Ar clean
target.
The
.Sq clean
portion recurses to dependencies unless
.Ev NOCLEANDEPENDS
is defined, but the
.Sq distclean
portion never recurses
(this is perhaps a bug).
.It Ar reinstall
Use this to restore a port after using
.Xr pkg_delete 1
when you should have used
.Ar deinstall .
.It Ar deinstall
Remove an installed port from the system, similar to
.Xr pkg_delete 1 .
.It Ar package
Make a binary package for the port.  The port will be installed if it
hasn't already been.  The package is a .tgz file that you can use to
install the port on other machines with
.Xr pkg_add 1 .
If the directory specified by
.Ev PACKAGES
does not exist the package will be put into the current directory.
See
.Ev PKGREPOSITORY
and
.Ev PKGFILE .
.It Ar readmes
Create a port's
.Pa README.html .
This can be used from
.Pa /usr/ports
to create a browsable web of all ports on your system!
.It Ar search
Search the
.Pa INDEX
file for the pattern specified by either the
.Ar key
(searches the port name, comment, and dependencies) or
.Ar name
(just searches the port name) make argument.
For example, one would type:
.Pp
.Dl cd /usr/ports && make search name=query
.Pp
to find all ports whose
name matches
.Ql query .
Results include the matching ports' path, comment, maintainer,
build dependencies, and run dependencies.
.It Ar index
Create
.Pa /usr/ports/INDEX ,
which is used by the
.Ar pretty-print-*
and
.Ar search
targets.
While the master INDEX file in the CVS repository is periodically
updated, running the
.Ar index
target will ensure your INDEX file is up to date with your ports tree.
.El
.Sh ENVIRONMENT
You can change all of these.
.Bl -tag -width MASTER_SITES
.It Ev PORTSDIR
Location of the ports tree.  This is
.Pa /usr/ports
on
.Fx
and
.Ox
and
.Pa /usr/pkgsrc
on
.Nx .
.It Ev WRKDIRPREFIX
Where to create any temporary files.  Useful if
.Ev PORTSDIR
is read-only (perhaps mounted from a cdrom).
.It Ev DISTDIR
Where to find/put distfiles, normally
.Pa distfiles/
in
.Ev PORTSDIR .
.It Ev PACKAGES
Used only for the
.Ar package
target; the base directory for the packages tree, normally
.Pa packages/
in
.Ev PORTSDIR .
If this directory exists, the package tree will be (partially) constructed.
This directory does not have to exist; if it doesn't packages will be
placed into the current directory, or you can define one of
.Bl -tag -width PKGREPOSITORY
.It Ev PKGREPOSITORY
Directory to put the package in.
.It Ev PKGFILE
The full path to the package.
.El
.It Ev PREFIX
Where to install things in general
(usually
.Pa /usr/local
or
.Pa /usr/X11R6 )
.It Ev MASTER_SITES
Primary sites for distribution files if not found locally.
.It Ev PATCH_SITES
Primary location(s) for distribution patch files if not found
locally.
.It Ev MASTER_SITE_FREEBSD
If set, go to the master
.Fx
site for all files.
.It Ev MASTER_SITE_OVERRIDE
Try going to this site for all files and patches, first.
.It Ev NOCLEANDEPENDS
If defined, don't let
.Sq clean
recurse to dependencies.
.It Ev FETCH_CMD
Command to use to fetch files.  Normally
.Xr fetch 1 .
.It Ev FORCE_PKG_REGISTER
If set, overwrite any existing package registration on the system.
.It Ev MOTIFLIB
Location of libXm.{a,so}.
.It Ev INTERACTIVE
If defined, only operate on a port if it requires interaction.
.It Ev BATCH
If defined, only operate on a port if it can be installed 100% automatically.
.El
.Sh FILES
.Bl -tag -width /usr/ports/xxxx -compact
.It Pa /usr/ports
The default ports directory
.No ( Fx
and
.Ox ) .
.It Pa /usr/pkgsrc
The default ports directory
.Pq Nx .
.It Pa /usr/ports/Mk/bsd.port.mk
The big Kahuna.
.El
.Sh SEE ALSO
.Xr make 1 ,
.Xr pkg_add 1 ,
.Xr pkg_create 1 ,
.Xr pkg_delete 1 ,
.Xr pkg_info 1 ,
.Xr pkg_version 1
.Pp
The following are part of the ports collection:
.Pp
.Xr pib 1 ,
.Xr portcheckout 1 ,
.Xr portlint 1
.Pp
The
.Fx
handbook
.Pp
http://www.FreeBSD.org/ports
(searchable index of all ports)
.Sh AUTHORS
.An -nosplit
This man page was originated by
.An David O'Brien .
The ports collection is maintained by
.An Satoshi Asami
and the Awesome Ports Team.
.Sh HISTORY
.Nm The Ports Collection
appeared in
.Fx 1.0 .
It has since spread to
.Nx
and
.Ox .
.Sh BUGS
Ports documentation is split over four places ---
.Pa /usr/ports/Mk/bsd.port.mk ,
the
.Dq Ports Collection
section of the handbook, the
.Dq Porting Existing Software
section of the handbook, and
.Xr ports 7 .
.Pp
This man page is too long.
OpenPOWER on IntegriCloud