[ << ]
[ < ]
[ Home ]
[ > ]
[ >> ]
2. Configuring through Variables
Content:
2.a. Portage Configuration
As noted previously, Portage is configurable through many variables which
you should define in /etc/portage/make.conf. Please refer to
the make.conf man page for more and complete information:
Code Listing 1.1: Reading the make.conf man page |
$ man make.conf
|
2.b. Build-specific Options
Configure and Compiler Options
When Portage builds applications, it passes the contents of the following
variables to the compiler and configure script:
-
CFLAGS & CXXFLAGS define the desired compiler flags for C and C++
compiling.
-
CHOST defines the build host information for the application's configure
script
-
MAKEOPTS is passed to the make command and is usually set to define
the amount of parallelism used during the compilation. More information
about the make options can be found in the make man page.
The USE variable is also used during configure and compilations but has been
explained in great detail in previous chapters.
Merge Options
When Portage has merged a newer version of a certain software title, it will
remove the obsoleted files of the older version from your system. Portage gives
the user a 5 second delay before unmerging the older version. These 5 seconds
are defined by the CLEAN_DELAY variable.
You can tell emerge to use certain options every time it is run by
setting EMERGE_DEFAULT_OPTS. Some useful options would be --ask, --verbose,
--tree, and so on.
2.c. Configuration File Protection
Portage's Protected Locations
Portage overwrites files provided by newer versions of a software title if the
files aren't stored in a protected location. These protected locations
are defined by the CONFIG_PROTECT variable and are generally configuration file
locations. The directory listing is space-delimited.
A file that would be written in such a protected location is renamed and the
user is warned about the presence of a newer version of the (presumable)
configuration file.
You can find out about the current CONFIG_PROTECT setting from the emerge
--info output:
Code Listing 3.1: Getting the CONFIG_PROTECT setting |
$ emerge --info | grep 'CONFIG_PROTECT='
|
More information about Portage's Configuration File Protection is available
in the CONFIGURATION FILES section of the emerge manpage:
Code Listing 3.2: More information about Configuration File Protection |
$ man emerge
|
Excluding Directories
To 'unprotect' certain subdirectories of protected locations you can use the
CONFIG_PROTECT_MASK variable.
2.d. Download Options
Server Locations
When the requested information or data is not available on your system, Portage
will retrieve it from the Internet. The server locations for the various
information and data channels are defined by the following variables:
-
GENTOO_MIRRORS defines a list of server locations which
contain source code (distfiles)
-
PORTAGE_BINHOST defines a particular server location containing prebuilt
packages for your system
A third setting involves the location of the rsync server which you use when you
update your Portage tree:
-
SYNC defines a particular server which Portage uses to fetch the
Portage tree from
The GENTOO_MIRRORS and SYNC variables can be set automatically through the
mirrorselect application. You need to emerge mirrorselect first
before you can use it. For more information, see mirrorselect's online
help:
Code Listing 4.1: More information about mirrorselect |
# mirrorselect --help
|
If your environment requires you to use a proxy server, you can use the
http_proxy, ftp_proxy and RSYNC_PROXY variables to declare a proxy server.
Fetch Commands
When Portage needs to fetch source code, it uses wget by default. You
can change this through the FETCHCOMMAND variable.
Portage is able to resume partially downloaded source code. It uses wget
by default, but this can be altered through the RESUMECOMMAND variable.
Make sure that your FETCHCOMMAND and RESUMECOMMAND stores the source code in the
correct location. Inside the variables you should use \${URI} and \${DISTDIR} to
point to the source code location and distfiles location respectively.
You can also define protocol-specific handlers with FETCHCOMMAND_HTTP,
FETCHCOMMAND_FTP, RESUMECOMMAND_HTTP, RESUMECOMMAND_FTP, and so on.
Rsync Settings
You cannot alter the rsync command used by Portage to update the Portage tree,
but you can set some variables related to the rsync command:
-
PORTAGE_RSYNC_OPTS sets a number of default variables used during sync,
each space-separated. These shouldn't be changed unless you know
exactly what you're doing. Note that certain absolutely required
options will always be used even if PORTAGE_RSYNC_OPTS is empty.
-
PORTAGE_RSYNC_EXTRA_OPTS can be used to set additional options when
syncing. Each option should be space separated.
-
--timeout=<number>: This defines the number of seconds an rsync
connection can idle before rsync sees the connection as timed-out. This
variable defaults to 180 but dialup users or individuals with slow
computers might want to set this to 300 or higher.
-
--exclude-from=/etc/portage/rsync_excludes: This points to a file
listing the packages and/or categories rsync should ignore during the
update process. In this case, it points to
/etc/portage/rsync_excludes. Please read Using a Portage Tree Subset for the
syntax of this file.
- --quiet: Reduces output to the screen
- --verbose: Prints a complete filelist
- --progress: Displays a progress meter for each file
-
PORTAGE_RSYNC_RETRIES defines how many times rsync should try connecting to
the mirror pointed to by the SYNC variable before bailing out. This
variable defaults to 3.
For more information on these options and others, please read man
rsync.
2.e. Gentoo Configuration
Branch Selection
You can change your default branch with the ACCEPT_KEYWORDS variable. It
defaults to your architecture's stable branch. More information on Gentoo's
branches can be found in the next chapter.
Portage Features
You can activate certain Portage features through the FEATURES variable. The
Portage Features have been discussed in previous chapters, such as Portage Features.
2.f. Portage Behaviour
Resource Management
With the PORTAGE_NICENESS variable you can augment or reduce the nice value
Portage runs with. The PORTAGE_NICENESS value is added to the current
nice value.
For more information about nice values, see the nice man page:
Code Listing 6.1: More information about nice |
$ man nice
|
Output Behaviour
The NOCOLOR, which defaults to "false", defines if Portage should disable the
use of coloured output.
[ << ]
[ < ]
[ Home ]
[ > ]
[ >> ]
The contents of this document, unless otherwise expressly stated, are licensed under the CC-BY-SA-2.5 license. The Gentoo Name and Logo Usage Guidelines apply.
|