Remove PORTAGE_IONICE_COMMAND setting since it's commented out.
[portage.git] / cnf / make.globals
1 # Copyright 1999-2006 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3 # $Id$
4 # System-wide defaults for the Portage system
5
6 #            *****************************
7 #            **  DO NOT EDIT THIS FILE  **
8 # ***************************************************
9 # **** CHANGES TO make.conf *OVERRIDE* THIS FILE ****
10 # ***************************************************
11 # ** Incremental Variables Accumulate Across Files **
12 # **  USE, CONFIG_*, and FEATURES are incremental  **
13 # ***************************************************
14
15 # When compiler flags are unset, many packages will substitute their own
16 # implicit flags. For uniformity, use an empty string as the default.
17 CFLAGS=""
18 CXXFLAGS=""
19 LDFLAGS=""
20
21 # Default rsync mirror
22 SYNC="rsync://rsync.gentoo.org/gentoo-portage"
23
24 # Default distfiles mirrors
25 GENTOO_MIRRORS="http://distfiles.gentoo.org http://distro.ibiblio.org/pub/linux/distributions/gentoo"
26
27 # Repository Paths
28 PORTDIR=/usr/portage
29 DISTDIR=/usr/portage/distfiles
30 PKGDIR=/usr/portage/packages
31 RPMDIR=/usr/portage/rpm
32
33 # Temporary build directory
34 PORTAGE_TMPDIR=/var/tmp
35
36 # Fetching command (5 tries, passive ftp for firewall compatibility)
37 FETCHCOMMAND="/usr/bin/wget -t 5 -T 60 --passive-ftp -O \"\${DISTDIR}/\${FILE}\" \"\${URI}\""
38 RESUMECOMMAND="/usr/bin/wget -c -t 5 -T 60 --passive-ftp -O \"\${DISTDIR}/\${FILE}\" \"\${URI}\""
39
40 # Default user options
41 FEATURES="distlocks parallel-fetch protect-owned sandbox
42           sfperms strict unmerge-orphans userfetch"
43
44 # Ignore file collisions in /lib/modules since files inside this directory
45 # are never unmerged, and therefore collisions must be ignored in order for
46 # FEATURES=protect-owned to operate smoothly in all cases.
47 COLLISION_IGNORE="/lib/modules"
48
49 # Enable for global testing
50 FEATURES="${FEATURES} preserve-libs"
51
52 # Default chunksize for binhost comms
53 PORTAGE_BINHOST_CHUNKSIZE="3000"
54
55 # By default wait 5 secs before cleaning a package
56 CLEAN_DELAY="5"
57
58 # By default wait 10 secs on an important warning
59 EMERGE_WARNING_DELAY="10"
60
61 # Automatically clean installed packages after they are updated.
62 # This option will be removed and forced to yes.
63 AUTOCLEAN="yes"
64
65 # Don't compress files with these suffixes.
66 PORTAGE_COMPRESS_EXCLUDE_SUFFIXES="css gif htm[l]? jp[e]?g js pdf png"
67
68 # Number of mirrors to try when a downloaded file has an incorrect checksum.
69 PORTAGE_FETCH_CHECKSUM_TRY_MIRRORS="5"
70
71 # Minimum size of existing file for RESUMECOMMAND to be called.
72 PORTAGE_FETCH_RESUME_MIN_SIZE="350K"
73
74 # Number of times 'emerge --sync' will run before giving up.
75 PORTAGE_RSYNC_RETRIES="3"
76
77 # Number of seconds rsync will wait before timing out.
78 #RSYNC_TIMEOUT="180"
79
80 PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --stats --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages"
81
82 # Minimal CONFIG_PROTECT
83 CONFIG_PROTECT="/etc"
84 CONFIG_PROTECT_MASK="/etc/env.d"
85
86 # Disable auto-use
87 USE_ORDER="env:pkg:conf:defaults:pkginternal:env.d"
88
89 # Default ownership of installed files.
90 PORTAGE_INST_UID="0"
91 PORTAGE_INST_GID="0"
92
93 # Mode bits for ${WORKDIR} (see ebuild.5).
94 PORTAGE_WORKDIR_MODE="0700"
95
96 # Some defaults for elog
97 PORTAGE_ELOG_CLASSES="log warn error"
98 PORTAGE_ELOG_SYSTEM="save_summary echo"
99
100 PORTAGE_ELOG_MAILURI="root"
101 PORTAGE_ELOG_MAILSUBJECT="[portage] ebuild log for \${PACKAGE} on \${HOST}"
102 PORTAGE_ELOG_MAILFROM="portage@localhost"
103
104 #            *****************************
105 #            **  DO NOT EDIT THIS FILE  **
106 # ***************************************************
107 # **** CHANGES TO make.conf *OVERRIDE* THIS FILE ****
108 # ***************************************************
109 # ** Incremental Variables Accumulate Across Files **
110 # **  USE, CONFIG_*, and FEATURES are incremental  **
111 # ***************************************************