aboutsummaryrefslogtreecommitdiffstats
path: root/INSTALL
blob: b42a17ac4640e9a2bfe5e480e44d0eef3f365928 (plain) (blame)
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
Basic Installation
==================

   These are generic installation instructions.

   The `configure' shell script attempts to guess correct values for
various system-dependent variables used during compilation.  It uses
those values to create a `Makefile' in each directory of the package.
It may also create one or more `.h' files containing system-dependent
definitions.  Finally, it creates a shell script `config.status' that
you can run in the future to recreate the current configuration, a file
`config.cache' that saves the results of its tests to speed up
reconfiguring, and a file `config.log' containing compiler output
(useful mainly for debugging `configure').

   If you need to do unusual things to compile the package, please try
to figure out how `configure' could check whether to do them, and mail
diffs or instructions to the address given in the `README' so they can
be considered for the next release.  If at some point `config.cache'
contains results you don't want to keep, you may remove or edit it.

   The file `configure.in' is used to create `configure' by a program
called `autoconf'.  You only need `configure.in' if you want to change
it or regenerate `configure' using a newer version of `autoconf'.

The simplest way to compile this package is:

  1. `cd' to the directory containing the package's source code and type
     `./configure' to configure the package for your system.  If you're
     using `csh' on an old version of System V, you might need to type
     `sh ./configure' instead to prevent `csh' from trying to execute
     `configure' itself.

     Running `configure' takes awhile.  While running, it prints some
     messages telling which features it is checking for.

  2. Type `make' to compile the package.

  3. Optionally, type `make check' to run any self-tests that come with
     the package.

  4. Type `make install' to install the programs and any data files and
     documentation.

  5. You can remove the program binaries and object files from the
     source code directory by typing `make clean'.  To also remove the
     files that `configure' created (so you can compile the package for
     a different kind of computer), type `make distclean'.  There is
     also a `make maintainer-clean' target, but that is intended mainly
     for the package's developers.  If you use it, you may have to get
     all sorts of other programs in order to regenerate files that came
     with the distribution.

Compilers and Options
=====================

   Some systems require unusual options for compilation or linking that
the `configure' script does not know about.  You can give `configure'
initial values for variables by setting them in the environment.  Using
a Bourne-compatible shell, you can do that on the command line like
this:
     CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure

Or on systems that have the `env' program, you can do it like this:
     env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure

Compiling For Multiple Architectures
====================================

   You can compile the package for more than one kind of computer at the
same time, by placing the object files for each architecture in their
own directory.  To do this, you must use a version of `make' that
supports the `VPATH' variable, such as GNU `make'.  `cd' to the
directory where you want the object files and executables to go and run
the `configure' script.  `configure' automatically checks for the
source code in the directory that `configure' is in and in `..'.

   If you have to use a `make' that does not supports the `VPATH'
variable, you have to compile the package for one architecture at a time
in the source code directory.  After you have installed the package for
one architecture, use `make distclean' before reconfiguring for another
architecture.

Installation Names
==================

   By default, `make install' will install the package's files in
`/usr/local/bin', `/usr/local/man', etc.  You can specify an
installation prefix other than `/usr/local' by giving `configure' the
option `--prefix=PATH'.

   You can specify separate installation prefixes for
architecture-specific files and architecture-independent files.  If you
give `configure' the option `--exec-prefix=PATH', the package will use
PATH as the prefix for installing programs and libraries.
Documentation and other data files will still use the regular prefix.

   In addition, if you use an unusual directory layout you can give
options like `--bindir=PATH' to specify different values for particular
kinds of files.  Run `configure --help' for a list of the directories
you can set and what kinds of files go in them.

   If the package supports it, you can cause programs to be installed
with an extra prefix or suffix on their names by giving `configure' the
option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.

Optional Features
=================

   Some packages pay attention to `--enable-FEATURE' options to
`configure', where FEATURE indicates an optional part of the package.
They may also pay attention to `--with-PACKAGE' options, where PACKAGE
is something like `gnu-as' or `x' (for the X Window System).  The
`README' should mention any `--enable-' and `--with-' options that the
package recognizes.

   For packages that use the X Window System, `configure' can usually
find the X include and library files automatically, but if it doesn't,
you can use the `configure' options `--x-includes=DIR' and
`--x-libraries=DIR' to specify their locations.

Specifying the System Type
==========================

   There may be some features `configure' can not figure out
automatically, but needs to determine by the type of host the package
will run on.  Usually `configure' can figure that out, but if it prints
a message saying it can not guess the host type, give it the
`--host=TYPE' option.  TYPE can either be a short name for the system
type, such as `sun4', or a canonical name with three fields:
     CPU-COMPANY-SYSTEM

See the file `config.sub' for the possible values of each field.  If
`config.sub' isn't included in this package, then this package doesn't
need to know the host type.

   If you are building compiler tools for cross-compiling, you can also
use the `--target=TYPE' option to select the type of system they will
produce code for and the `--build=TYPE' option to select the type of
system on which you are compiling the package.

Sharing Defaults
================

   If you want to set default values for `configure' scripts to share,
you can create a site shell script called `config.site' that gives
default values for variables like `CC', `cache_file', and `prefix'.
`configure' looks for `PREFIX/share/config.site' if it exists, then
`PREFIX/etc/config.site' if it exists.  Or, you can set the
`CONFIG_SITE' environment variable to the location of the site script.
A warning: not all `configure' scripts look for a site script.

Operation Controls
==================

   `configure' recognizes the following options to control how it
operates.

`--cache-file=FILE'
     Use and save the results of the tests in FILE instead of
     `./config.cache'.  Set FILE to `/dev/null' to disable caching, for
     debugging `configure'.

`--help'
     Print a summary of the options to `configure', and exit.

`--quiet'
`--silent'
`-q'
     Do not print messages saying which checks are being made.  To
     suppress all normal output, redirect it to `/dev/null' (any error
     messages will still be shown).

`--srcdir=DIR'
     Look for the package's source code in directory DIR.  Usually
     `configure' can determine that directory automatically.

`--version'
     Print the version of Autoconf used to generate the `configure'
     script, and exit.

`configure' also accepts some other, not widely useful, options.
lass='deletions'>-0/+108 * Theme pack for the SLiM X login application.miwi2009-05-236-0/+257 * update audacious to 2.0.1oliver2009-05-211-1/+2 * Update to 2.18.2.kwm2009-05-202-4/+4 * Update to 2.26.2.marcus2009-05-192-4/+4 * - Update to 0.90.3miwi2009-05-174-11/+10 * Update KDE ports to 4.2.3makc2009-05-101-3/+3 * - Re-roll tarballtabthorpe2009-05-072-5/+5 * - Update to 2.0.3miwi2009-05-054-17/+13 * Update to 0.62.9makc2009-05-042-5/+4 * Connect kde4-windeco-dekorator to buildmakc2009-05-041-0/+1 * Add new port x11-themes/kde4-windeco-dekorator.makc2009-05-044-0/+38 * Presenting GNOME 2.26.1 for FreeBSD.kwm2009-04-246-10/+12 * - Mark all kde4 ports MAKE_JOBS_UNSAFEmiwi2009-04-171-1/+1 * - Make it fetchable againgarga2009-04-141-1/+2 * Presenting GNOME 2.26 for FreeBSD. Seemarcus2009-04-106-95/+174 * 2009-03-26 www/drupal4-attachment: Drupal 4.7.x is end-of-life since 200802. ...miwi2009-04-056-469/+0 * The KDE FreeBSD team is proud to announce the release of KDE 4.2.2miwi2009-04-023-4/+5 * Here are new Linux Fedora 8 infrastructure ports.bsam2009-04-013-6/+5 * Finish repocopies of new linux-f8 infrastructure ports:bsam2009-04-011-1/+3 * - Mark BROKEN: does not fetchpav2009-03-312-0/+4 * Remove MAKE_JOBS_SAFE, port has no build target.ehaupt2009-03-302-2/+0 * Mark MAKE_JOBS_SAFEehaupt2009-03-272-0/+3 * bump PORTREVISION after cmake updatemakc2009-03-257-2/+7 * - Fix clearlooks-themes slave port for people with gtk-engines2 installedpav2009-03-231-4/+4 * - udpate to 0.4.1dinoex2009-03-2011-16/+22 * - mark DEPRECATEDdinoex2009-03-201-0/+2 * Release these ports into wild. I don't have time for these ports anymore. I ammezz2009-03-191-1/+1 * Update to 2.24.1.marcus2009-03-183-4/+7 * - Update to 0.16.8.0.3gahr2009-03-103-9/+7 * - Reset farrokhi@freebsd.org due to long period of inactivity.miwi2009-03-105-5/+5 * Update KDE to 4.2.1.makc2009-03-092-3/+30 * - Bump PORTREVISION after claws-mail updatemiwi2009-03-071-0/+1 * - Update to 20090225miwi2009-03-063-24/+30 * update Xfce to 4.6oliver2009-03-038-1706/+7 * - cleanupdinoex2009-02-271-1/+0 * Update to 2.0.0makc2009-02-223-12/+5 * Update to 0.61.1makc2009-02-223-8/+4 * Update to 1.2.2 (backported from KDE4)makc2009-02-224-7/+41 * Use my @FreeBSD.org email for the rest of my portsmakc2009-02-211-1/+1 * The KDE FreeBSD team is proud to announce the release of KDE 4.2.0miwi2009-02-093-11990/+566 * - Update to 1.0.7beat2009-02-084-10/+8 * 2009-01-19 games/emacs-chess: has been broken for more than 6 monthsmiwi2009-02-046-118/+0 * - Update to 20090102miwi2009-02-033-168/+485 * - Use GNOME macro instead of ${MASTER_SITE_GNOME}, removearaujo2009-02-0212-13/+12 * - Fix build (needs Xtst)pav2009-01-281-0/+1 * - Add missing QT4 dependencymiwi2009-01-151-1/+2 * kde@freebsd team is pleased to announce KDE 4.1.4, the last bugfix release in...makc2009-01-143-4/+13 * Update to 2.24.3.marcus2009-01-132-4/+4 * Mark BROKEN with the latest intltool.marcus2009-01-131-0/+2 * - Fix INDEXmiwi2009-01-132-3206/+3205 * Claws-Mail Themes.miwi2009-01-125-0/+3244 * Fix the plist, bump the PORTREVISION.mezz2009-01-122-1/+22 * Fix the plist, bump the PORTREVISION.mezz2009-01-122-1/+45 * Presenting GNOME 2.24 for FreeBSD.marcus2009-01-1013-425/+662 * Bump PORTREVISION's after OpenLDAP update.delphij2009-01-0618-14/+18 * Update to 0.60.0makc2009-01-043-5/+6 * - Set for expiration in one month: has been broken for more than 6 monthspav2008-12-201-0/+2 * Reset remaining ports assigned to infofarmer@ due to maintainer-timeoutslinimon2008-11-293-3/+3 * - update etoile-0.4.0dinoex2008-11-279-75/+247 * - update etoile-0.4.0dinoex2008-11-256-13/+19 * Update to 0.0.17ahze2008-11-252-4/+4 * - Convert to OPTIONSdanfe2008-11-092-12/+7 * update xfce to 4.4.3oliver2008-10-314-10/+10 * - Update to 0.8.1 [1]garga2008-10-214-32/+27 * Add the Jini iconset for Gnome.olgeni2008-09-305-0/+4919 * Fix Makefile header.olgeni2008-09-301-1/+1 * Add the Dropline Nou iconset for Gnome.olgeni2008-09-295-0/+834 * Add Gion icon theme for Gnome.olgeni2008-09-295-0/+1945 * - Update to 1.0.6miwi2008-09-264-10/+8 * Fix MASTER_SITES.flz2008-09-211-1/+1 * The KDE FreeBSD team is proud to announce the release of KDE 4.1.1miwi2008-09-032-4/+3 * Reset MrL0Lz@gmail.com due to maintainer-timeouts and no response to email.linimon2008-09-031-1/+1 * o Update to 2.72lioux2008-09-012-7/+5 * sort (xfce4-icon-theme was out of order)makc2008-08-311-1/+1 * add qtcurve-gtk2 and qtcurve-kde* portsmakc2008-08-311-0/+3 * QtCurve is a set of widget styles for Qt4/KDE4, KDE3 and Gtk2 based apps.makc2008-08-314-0/+56 * QtCurve is a set of widget styles for Qt4/KDE4, KDE3 and Gtk2 based apps.makc2008-08-314-0/+48 * QtCurve is a set of widget styles for Qt4/KDE4, KDE3 and Gtk2 based apps.makc2008-08-314-0/+42 * The KDE FreeBSD team is proud to announce the releasemiwi2008-08-292-3/+6 * - Fix PLISTgahr2008-08-251-0/+2 * Mark BROKEN: does not fetch.erwin2008-08-241-0/+2 * - Yank removed enlightenment-theme-* ports from category Makefilepav2008-08-221-4/+0 * Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.rafan2008-08-211-1/+0 * - Connect x11-themes/gtk-qt4-engine to the buildmiwi2008-08-201-0/+1 * - Update to 1.1miwi2008-08-206-41/+40 * - Remove E16 themes deprecated by the new x11-themes/e16-themes bundle.gahr2008-08-2016-2431/+0 * - New port: e16-themesgahr2008-08-205-0/+2314 * Conversion from (now defunct) autoconf-2.61 to autoconf-2.62ade2008-08-201-1/+1 * - Add option to allow choice between x11/xscreensaver and x11/xscreensaver-gnomemiwi2008-08-191-4/+14 * The KDE FreeBSD team is proud to announce the releasemiwi2008-08-182-4/+3 * - Take over maintainship of vanilla@'s e16-related portsgahr2008-08-154-4/+4 * - fix build for gnustep-gui > 0.13dinoex2008-08-114-0/+79 * - Connect x11-themes/kde4-style-polyester to the buildmiwi2008-08-101-0/+1 * - Update to 1.98.0miwi2008-08-103-38/+21 * The KDE FreeBSD team is proud to announce the release of KDE 4.1.0miwi2008-08-104-2158/+9172 * Update my email address to my @FreeBSD.org address.rnoland2008-07-311-1/+1 * - Remove USE_GCC where it can be satisfied with base compiler on followingpav2008-07-252-2/+0 * - Mark BROKEN: conflicts with its own dependencypav2008-07-231-0/+2 * - Don't install *.bak files.tmclaugh2008-07-082-2/+2 * Update to 2.14.3.mezz2008-07-012-5/+4 * - add CONFLICTSdinoex2008-06-251-0/+2 * - Fix duplicate comma in index.theme to quell warnings.tmclaugh2008-06-231-1/+4 * Add lxappearance, a desktop-independent theme switcher for GTK+.chinsan2008-06-215-0/+50 * Update to 0.0.16ahze2008-06-083-5/+8 * Fix PORTREVISION on ports which have PORTVERSION?= set.edwin2008-06-071-1/+1 * Bump portrevision due to upgrade of devel/gettext.edwin2008-06-06122-103/+122 * - Update to 2.4.1miwi2008-06-064-32/+16 * - Add common code to support for cmake based ports.miwi2008-05-284-20/+24 * Maintainer wishes to give up this port.linimon2008-05-271-1/+1 * Update to 2.14.2.mezz2008-05-273-71/+5 * Update to 2.22.2.mezz2008-05-272-4/+4 * Fix Darklooks theme in which tooltips caused theming the break.marcus2008-05-262-0/+11 * - Fix patchpav2008-05-211-3/+0 * - Fix plistspav2008-05-181-1/+2 * - Unbreak and fix plistpav2008-05-142-5/+259 * - Make fetchable again by updating to Fedora 7pav2008-05-142-8/+7 * - update to etoile 0.2dinoex2008-05-1110-50/+196 * - update to etoile 0.2dinoex2008-05-114-11/+259 * The gnome-themes-extras no longer has industrial engine since GNOME 2.20 andmezz2008-04-305-348/+0 * Reset jylefort's port maintainerships. portmgr has taken his commit bitlinimon2008-04-292-2/+2 * o Update to version 2.5lioux2008-04-282-6/+4 * - Fix build after xorg cleanupmiwi2008-04-221-1/+2 * - Remove unneeded dependency from gtk12/gtk20 [1]miwi2008-04-2018-54/+47 * - Rollback the previous commit (it seems that new theme doesn'tstas2008-04-152-4/+5 * - Update to 0.4.3.stas2008-04-152-4/+4 * The Widget Factory is a program designed to show a wide range of widgetsmezz2008-04-134-0/+39 * Unbreak PLIST after my recent commit to linux_base_fc4.bsam2008-04-113-3/+0 * Update to version 1.0.4markus2008-04-096-8/+12 * Update to 2.14.1.marcus2008-04-082-5/+4 * Update to 2.22.0ahze2008-04-033-5/+240 * - clean X11BASEdinoex2008-03-291-2/+2 * Use MASTER_SITE_CRITICALehaupt2008-03-282-4/+3 * - Move themes to version undepended dir.anray2008-03-272-1264/+1265 * - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORGmiwi2008-03-261-1/+0 * - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORGmiwi2008-03-253-6/+3 * Update for GNOME 2.22ahze2008-03-252-1/+12 * Pass maintainership back to rnoland - he's back online.wxs2008-03-241-1/+1 * - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORGmiwi2008-03-242-2/+0 * The FreeBSD GNOME team is proud to annunce the release of GNOME 2.22.0 formarcus2008-03-2411-612/+220 * - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORGmiwi2008-03-241-2/+1 * - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORGmiwi2008-03-242-3/+2 * - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORGmiwi2008-03-233-6/+3 * - Remove USE_XLIB/USE_X_PREFIX in favor of USE_XORGmiwi2008-03-222-4/+2 * - Remove USE_XLIB in favor of USE_XORGmiwi2008-03-222-4/+2 * - Remove USE_XLIB in favor of USE_XORGmiwi2008-03-211-1/+2 * Reset maintainer due to bouncing mails.wxs2008-03-211-1/+1 * - Update to 0.8, the last release for KDE3miwi2008-03-208-70/+64 * - Update enlightenment-devel and EFL libraries to the latest snapshotstas2008-03-1221-68/+77 * - Fix plistpav2008-03-101-1/+0 * - update to snapshot 20061221dinoex2008-02-282-9/+10 * 2007-11-22 x11-themes/indubstrial: yesmiwi2008-02-2811-199/+0 * Update to 0.0.11ahze2008-02-272-4/+4 * - Fix build and take maintainership.anray2008-02-212-27/+2 * - Update to 1.0.5tabthorpe2008-02-204-8/+8 * - Fix previous commit.anray2008-02-181-1/+0 * - Update from 0.11 to 0.12anray2008-02-182-5/+5 * update xfce4 to 4.4.2oliver2008-02-134-10/+10 * Mark BROKEN: checksum mismatcherwin2008-02-111-0/+2 * - Mark BROKEN: checksum mismatchpav2008-01-201-0/+2 * Update to 0.0.10ahze2008-01-093-5/+20 * Update to 2.3lioux2007-12-212-4/+4 * - Unbreakmiwi2007-12-171-3/+8 * Update to 2.2lioux2007-12-162-4/+4 * Tenr Fluxbox themes packmiwi2007-12-155-0/+7312 * - Mark for removal in one monthpav2007-12-141-0/+3 * Update to 20071213ehaupt2007-12-134-155/+327 * Take over maintainership of all kde-icons-* ports unless otherwiselioux2007-12-131-1/+1 * Update to 2.20.2.mezz2007-12-122-6/+5 * o New port kde-icons-nuoveXT2 version 2.2: KDE nuoveXT 2 iconsetlioux2007-12-125-0/+34 * o New port kde-icons-nuoveXT version 1.6: KDE nuoveXT iconsetlioux2007-12-125-0/+34 * o New port kde-icons-os-k version 1.15: KDE OS-K iconsetlioux2007-12-125-0/+53 * o New port kde-icons-vista-inspirate version 1.0: KDE Vista Inspiratelioux2007-12-125-0/+36 * o New port kde-icons-exquisite version 0.2004081000: KDE Exquisite iconsetlioux2007-12-125-0/+48 * o New port kde-icons-dark-glass version 2.1: KDE Dark Glass iconsetlioux2007-12-125-0/+33 * o New port kde-icons-crystal-project version 0.2007052000: KDElioux2007-12-125-0/+41 * o New port kde-icons-black-and-white version 2.0.a: KDE Black Andlioux2007-12-125-0/+33 * o Fix: make fetchable againlioux2007-12-122-9/+6 * Fix fetchinglioux2007-12-122-6/+4 * Removed port x11-themes/kde-icons-gorilla_svg: Unfetchablelioux2007-12-1213-122/+0 * - s/GNUStep.sh/GNUstep.sh/ on install-user: and deinstall-user:garga2007-11-141-2/+2 * - Fix build with gcc 4.2miwi2007-11-142-7/+76 * Chase the icon-naming-utils update.marcus2007-10-308-29/+242 * Update to 0.8.6.marcus2007-10-302-4/+4 * Update to KDE 3.5.8lofi2007-10-306-8/+20 * Update to version 1.0.2markus2007-10-304-8/+8 * Don't create lib/locale dirahze2007-10-291-0/+2 * - Fix a typo in bsd.sites.mk along with all the places it affectedsat2007-10-262-2/+2 * Mark as broken: fails to fetch.linimon2007-10-262-0/+4 * Presenting GNOME 2.20.1 and all related works for FreeBSD. The officialmarcus2007-10-2560-1883/+6093 * Add audacious-skins, a collection of audacious skins.ehaupt2007-10-145-0/+113 * - Sort category Makefilessat2007-10-061-1/+1 * - Update to 2.2.3miwi2007-10-062-6/+4 * Remove always-false/true conditions based on OSVERSION 500000edwin2007-10-041-7/+1 * Give this one an expiration date: its plist is broken, and it's notlinimon2007-10-031-1/+3 * New Port: x11-theme/cursor-crystal-theme KDE crystal style cursor themeedwin2007-10-015-0/+579 * Switch autoconf dependencies from 2.53 or 2.59 to 2.61.linimon2007-09-301-2/+2 * - Update to 0.5.2.araujo2007-09-053-49/+64 * Tell the subdir of local master site.itetcu2007-08-241-0/+1 * Put the DISTFILE on MATER_SITE_LOCAL to fix fetch.itetcu2007-08-171-1/+2 * Homepage disappeared, mirrored on MASTER_SITE_LOCAL.laszlof2007-08-071-3/+2 * Update to 0.0.8ahze2007-08-062-4/+4 * BROKEN: Unfetchablekris2007-07-292-0/+4 * With portmgr hat, reset maintainership; the various ports that depend onlinimon2007-07-221-1/+1