| 1 | # Copyright 1999-2004 Gentoo Foundation |
|---|
| 2 | # Distributed under the terms of the GNU General Public License v2 |
|---|
| 3 | # $Id: make.globals 1912 2005-08-25 03:54:42Z ferringb $ |
|---|
| 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 | GENTOO_MIRRORS="http://distfiles.gentoo.org http://distro.ibiblio.org/pub/Linux/distributions/gentoo" |
|---|
| 16 | SYNC="rsync://rsync.gentoo.org/gentoo-portage" |
|---|
| 17 | |
|---|
| 18 | # Host-type |
|---|
| 19 | CHOST=i686-pc-linux-gnu |
|---|
| 20 | PORTAGE_TMPDIR=/var/tmp |
|---|
| 21 | |
|---|
| 22 | PORTDIR=/usr/portage |
|---|
| 23 | DISTDIR=${PORTDIR}/distfiles |
|---|
| 24 | PKGDIR=${PORTDIR}/packages |
|---|
| 25 | RPMDIR=${PORTDIR}/rpm |
|---|
| 26 | CONFIG_PROTECT="/etc /var/qmail/control /usr/share/config /usr/kde/2/share/config /usr/kde/3/share/config" |
|---|
| 27 | CONFIG_PROTECT_MASK="/etc/gconf" |
|---|
| 28 | |
|---|
| 29 | # Options passed to make during the build process |
|---|
| 30 | MAKEOPTS="-j2" |
|---|
| 31 | |
|---|
| 32 | # Fetching command (5 tries, passive ftp for firewall compatibility) |
|---|
| 33 | FETCHCOMMAND="/usr/bin/wget -t 5 --passive-ftp -P \${DISTDIR} \${URI}" |
|---|
| 34 | RESUMECOMMAND="/usr/bin/wget -c -t 5 --passive-ftp -P \${DISTDIR} \${URI}" |
|---|
| 35 | |
|---|
| 36 | CFLAGS="-O2 -mcpu=i686 -pipe" |
|---|
| 37 | CXXFLAGS=${CFLAGS} |
|---|
| 38 | |
|---|
| 39 | # Debug build -- if defined, binaries won't be stripped |
|---|
| 40 | #DEBUGBUILD=true |
|---|
| 41 | |
|---|
| 42 | # Default maintainer options |
|---|
| 43 | #FEATURES="digest sandbox noclean noauto buildpkg usersandbox" |
|---|
| 44 | # Default user options |
|---|
| 45 | FEATURES="sandbox distlocks ccache autoaddcvs strict" |
|---|
| 46 | |
|---|
| 47 | # By default output colored text where possible, set to "true" to output only |
|---|
| 48 | #black&white text |
|---|
| 49 | NOCOLOR="false" |
|---|
| 50 | |
|---|
| 51 | PORTAGE_BINHOST_CHUNKSIZE="3000" |
|---|
| 52 | USE_EXPAND="VIDEO_CARDS INPUT_DEVICES LINGUAS" |
|---|
| 53 | |
|---|
| 54 | # By default wait 5 secs before cleaning a package |
|---|
| 55 | CLEAN_DELAY="5" |
|---|
| 56 | |
|---|
| 57 | # Set to yes automatically run "emerge --clean" after each merge |
|---|
| 58 | # Important, as without this you may experience missing symlinks when |
|---|
| 59 | # downgrading libraries during a batch (world/system) update. |
|---|
| 60 | # DEPRECATED, THIS IS ALWAYS ENABLED IN >=PORTAGE-2.1 |
|---|
| 61 | AUTOCLEAN="yes" |
|---|
| 62 | |
|---|
| 63 | # Number of times 'emerge --sync' will run before giving up. |
|---|
| 64 | RSYNC_RETRIES="3" |
|---|
| 65 | # Number of seconds rsync will wait before timing out. |
|---|
| 66 | RSYNC_TIMEOUT="180" |
|---|
| 67 | |
|---|
| 68 | # ***************************** |
|---|
| 69 | # ** DO NOT EDIT THIS FILE ** |
|---|
| 70 | # *************************************************** |
|---|
| 71 | # **** CHANGES TO make.conf *OVERRIDE* THIS FILE **** |
|---|
| 72 | # *************************************************** |
|---|
| 73 | # ** Incremental Variables Accumulate Across Files ** |
|---|
| 74 | # ** USE, CONFIG_*, and FEATURES are incremental ** |
|---|
| 75 | # *************************************************** |
|---|