freebsd-nq/share/man/man7/ports.7

394 lines
9.5 KiB
Groff
Raw Normal View History

.\"
.\" 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.
.\"
1999-08-28 00:22:10 +00:00
.\" $FreeBSD$
.\"
1998-01-28 01:12:05 +00:00
.Dd January 25, 1998
.Dt PORTS 7
.Os
.Sh NAME
.Nm ports
.Nd contributed applications
.Sh DESCRIPTION
The
2000-11-14 11:20:58 +00:00
.Fx
2002-03-18 10:07:22 +00:00
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
.Bx .
Compiling an
application is as simple as typing
2002-03-18 10:07:22 +00:00
.Nm make Cm build
in the port directory!
The
.Pa Makefile
automatically fetches the
2002-03-18 10:07:22 +00:00
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
2002-03-18 10:07:22 +00:00
.Nm make Cm install
to install the application.
.Pp
2000-11-14 11:20:58 +00:00
It is possible to download and use ports from the
.Fx
repository
that are newer than the installed system; however it is important to
2002-03-18 10:07:22 +00:00
install the appropriate
.Dq "Upgrade Kit"
from
.Pa 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
2002-03-18 10:07:22 +00:00
.Dq "Packages and Ports"
in
2002-03-18 10:07:22 +00:00
.%B "The FreeBSD Handbook" ,
.Pa ( file:/usr/share/doc/en_US.ISO8859-1/books/handbook/ports.html
2002-03-18 10:07:22 +00:00
or
.Pa http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/ports.html ) .
For information about creating new ports, see
2002-03-18 10:07:22 +00:00
.%B "The Porter's Handbook"
.Pa ( file:/usr/share/doc/en_US.ISO8859-1/books/porters-handbook/index.html
2002-03-18 10:07:22 +00:00
or
.Pa http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/porters-handbook/ ) .
.Sh TARGETS
Some of the targets work recursively through subdirectories.
2002-03-18 10:07:22 +00:00
This lets you, for example, install all of the
.Dq Li biology
ports.
The targets that do this are
.Cm build , checksum , clean , configure ,
.Cm depends , extract , fetch , install ,
and
2002-03-18 10:07:22 +00:00
.Cm package .
.Pp
The following targets will be run automatically by each proceeding
2002-03-18 10:07:22 +00:00
target in order.
That is,
.Cm build
will be run
(if necessary)
by
2002-03-18 10:07:22 +00:00
.Cm install ,
and so on all the way to
2002-03-18 10:07:22 +00:00
.Cm fetch .
Usually, you will only use the
2002-03-18 10:07:22 +00:00
.Cm install
target.
2002-03-18 10:07:22 +00:00
.Bl -tag -width ".Cm configure"
.It Cm fetch
Fetch all of the files needed to build this port from the sites
listed in
.Va MASTER_SITES
and
2002-03-18 10:07:22 +00:00
.Va PATCH_SITES .
See
.Va FETCH_CMD
and
.Va MASTER_SITE_OVERRIDE .
.It Cm checksum
Verify that the fetched distfile's checksum matches the one the port was
tested against.
Defining
2002-03-18 10:07:22 +00:00
.Va NO_CHECKSUM
will skip this step.
2002-03-18 10:07:22 +00:00
.It Cm depends
Install
(or compile if only compilation is necessary)
2002-03-18 10:07:22 +00:00
any dependencies of the current port.
When called by the
.Cm extract
or
2002-03-18 10:07:22 +00:00
.Cm fetch
targets, this is run in piecemeal as
2002-03-18 10:07:22 +00:00
.Cm fetch-depends , build-depends ,
etc.
Defining
.Va NO_DEPENDS
will skip this step.
2002-03-18 10:07:22 +00:00
.It Cm extract
Expand the distfile into a work directory.
2002-03-18 10:07:22 +00:00
.It Cm patch
Apply any patches that are necessary for the port.
2002-03-18 10:07:22 +00:00
.It Cm configure
Configure the port.
Some ports will ask you questions during this stage.
See
.Va INTERACTIVE
and
2002-03-18 10:07:22 +00:00
.Va BATCH .
.It Cm build
Build the port.
This is the same as calling the
.Cm all
target.
2002-03-18 10:07:22 +00:00
.It Cm 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 ".Cm fetch-recursive"
2002-03-18 10:07:22 +00:00
.It Cm fetch-list
Show list of files needed to be fetched in order to build the port.
.It Cm fetch-recursive
Fetch the distfiles of the port and all its dependencies.
.It Cm fetch-recursive-list
Show list of files that would be retrieved by
.Cm fetch-recursive .
2002-03-18 10:07:22 +00:00
.It Cm 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.
2002-03-18 10:07:22 +00:00
.It Cm clean
Remove the expanded source code.
This recurses to dependencies unless
.Va NOCLEANDEPENDS
is defined.
2002-03-18 10:07:22 +00:00
.It Cm distclean
Remove the port's distfiles and perform the
.Cm clean
target.
The
2002-03-18 10:07:22 +00:00
.Cm clean
portion recurses to dependencies unless
2002-03-18 10:07:22 +00:00
.Va NOCLEANDEPENDS
is defined, but the
2002-03-18 10:07:22 +00:00
.Cm distclean
portion never recurses
(this is perhaps a bug).
2002-03-18 10:07:22 +00:00
.It Cm reinstall
Use this to restore a port after using
.Xr pkg_delete 1
when you should have used
2002-03-18 10:07:22 +00:00
.Cm deinstall .
.It Cm deinstall
Remove an installed port from the system, similar to
.Xr pkg_delete 1 .
.It Cm deinstall-all
Remove all installed ports with the same
.Va PKGORIGIN
from the system.
2002-03-18 10:07:22 +00:00
.It Cm package
Make a binary package for the port.
The port will be installed if it has not already been.
The package is a
.Pa .tbz
2002-03-18 10:07:22 +00:00
file that you can use to
install the port on other machines with
.Xr pkg_add 1 .
If the directory specified by
2002-03-18 10:07:22 +00:00
.Va PACKAGES
does not exist, the package will be put into the current directory.
See
2002-03-18 10:07:22 +00:00
.Va PKGREPOSITORY
and
2002-03-18 10:07:22 +00:00
.Va PKGFILE .
.It Cm package-recursive
Like
.Cm package ,
but makes a package for each depending port as well.
2002-03-18 10:07:22 +00:00
.It Cm 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!
2002-03-18 10:07:22 +00:00
.It Cm search
Search the
.Pa INDEX
file for the pattern specified by either the
2002-03-18 10:07:22 +00:00
.Va key
(searches the port name, comment, and dependencies) or
2002-03-18 10:07:22 +00:00
.Va name
(searches the port name only)
.Xr make 1
variable.
For example, one would type:
.Pp
2002-03-18 10:07:22 +00:00
.Dl "cd /usr/ports && make search name=query"
.Pp
to find all ports whose
name matches
2002-03-18 10:07:22 +00:00
.Dq Li query .
Results include the matching ports' path, comment, maintainer,
build dependencies, and run dependencies.
2002-03-18 10:07:22 +00:00
.It Cm index
Create
.Pa /usr/ports/INDEX ,
which is used by the
2002-03-18 10:07:22 +00:00
.Cm pretty-print-*
and
2002-03-18 10:07:22 +00:00
.Cm search
targets.
2002-03-18 10:07:22 +00:00
While the master
.Pa INDEX
file in the CVS repository is periodically
updated, running the
2002-03-18 10:07:22 +00:00
.Cm index
target will ensure your
.Pa INDEX
file is up to date with your ports tree.
2000-12-29 09:18:45 +00:00
.El
.Sh ENVIRONMENT
You can change all of these.
2002-03-18 10:07:22 +00:00
.Bl -tag -width ".Va MASTER_SITES"
.It Va PORTSDIR
Location of the ports tree.
This is
.Pa /usr/ports
on
2000-11-14 11:20:58 +00:00
.Fx
and
2002-03-18 10:07:22 +00:00
.Ox ,
and
.Pa /usr/pkgsrc
on
.Nx .
2002-03-18 10:07:22 +00:00
.It Va WRKDIRPREFIX
Where to create any temporary files.
Useful if
.Va PORTSDIR
is read-only (perhaps mounted from a CD-ROM).
.It Va DISTDIR
Where to find/put distfiles, normally
.Pa distfiles/
in
2002-03-18 10:07:22 +00:00
.Va PORTSDIR .
.It Va PACKAGES
Used only for the
2002-03-18 10:07:22 +00:00
.Cm package
target; the base directory for the packages tree, normally
.Pa packages/
in
2002-03-18 10:07:22 +00:00
.Va PORTSDIR .
If this directory exists, the package tree will be (partially) constructed.
2002-03-18 10:07:22 +00:00
This directory does not have to exist; if it does not, packages will be
placed into the current directory, or you can define one of
2002-03-18 10:07:22 +00:00
.Bl -tag -width ".Va PKGREPOSITORY"
.It Va PKGREPOSITORY
Directory to put the package in.
2002-03-18 10:07:22 +00:00
.It Va PKGFILE
The full path to the package.
.El
2002-03-18 10:07:22 +00:00
.It Va PREFIX
Where to install things in general
(usually
.Pa /usr/local
or
2002-03-18 10:07:22 +00:00
.Pa /usr/X11R6 ) .
.It Va MASTER_SITES
Primary sites for distribution files if not found locally.
2002-03-18 10:07:22 +00:00
.It Va PATCH_SITES
Primary locations for distribution patch files if not found
locally.
2002-03-18 10:07:22 +00:00
.It Va MASTER_SITE_FREEBSD
2000-11-14 11:20:58 +00:00
If set, go to the master
.Fx
site for all files.
2002-03-18 10:07:22 +00:00
.It Va MASTER_SITE_OVERRIDE
Try going to these sites for all files and patches, first.
2002-03-18 10:07:22 +00:00
.It Va NOCLEANDEPENDS
If defined, do not let
.Cm clean
recurse to dependencies.
2002-03-18 10:07:22 +00:00
.It Va FETCH_CMD
Command to use to fetch files.
Normally
.Xr fetch 1 .
2002-03-18 10:07:22 +00:00
.It Va FORCE_PKG_REGISTER
If set, overwrite any existing package registration on the system.
2002-03-18 10:07:22 +00:00
.It Va MOTIFLIB
Location of
.Pa libXm. Ns Brq Pa a , Ns Pa so .
.It Va INTERACTIVE
If defined, only operate on a port if it requires interaction.
2002-03-18 10:07:22 +00:00
.It Va BATCH
If defined, only operate on a port if it can be installed 100% automatically.
.El
.Sh FILES
2002-03-18 10:07:22 +00:00
.Bl -tag -width ".Pa /usr/ports/Mk/bsd.port.mk" -compact
.It Pa /usr/ports
2000-11-14 11:20:58 +00:00
The default ports directory
.No ( Fx
2000-11-14 11:20:58 +00:00
and
.Ox ) .
.It Pa /usr/pkgsrc
The default ports directory
.Pq Nx .
.It Pa /usr/ports/Mk/bsd.port.mk
The big Kahuna.
2000-12-29 09:18:45 +00:00
.El
.Sh SEE ALSO
.Xr make 1 ,
.Xr pkg_add 1 ,
.Xr pkg_create 1 ,
.Xr pkg_delete 1 ,
.Xr pkg_info 1 ,
2000-01-02 17:55:03 +00:00
.Xr pkg_version 1
.Pp
The following are part of the ports collection:
.Pp
.Xr pib 1 ,
.Xr portcheckout 1 ,
1999-07-12 07:49:28 +00:00
.Xr portlint 1
2002-03-18 10:07:22 +00:00
.Rs
.%B "The FreeBSD Handbook"
.Re
.Pp
2002-03-18 10:07:22 +00:00
.Pa http://www.FreeBSD.org/ports
(searchable index of all ports)
.Sh AUTHORS
.An -nosplit
This man page was originated by
.An David O'Brien .
.Sh HISTORY
2002-03-18 10:07:22 +00:00
The Ports Collection
appeared in
.Fx 1.0 .
It has since spread to
.Nx
and
.Ox .
.Sh BUGS
2002-03-18 10:07:22 +00:00
Ports documentation is split over four places \(em
1999-04-29 21:41:11 +00:00
.Pa /usr/ports/Mk/bsd.port.mk ,
2002-03-18 10:07:22 +00:00
.%B "The Porter's Handbook" ,
the
2002-03-18 10:07:22 +00:00
.Dq "Packages and Ports"
chapter of
2002-03-18 10:07:22 +00:00
.%B "The FreeBSD Handbook" ,
and
2002-12-24 13:41:48 +00:00
this man page.
.Pp
This man page is too long.