blob: bc1b61d7cf2ecf71fcdff53cecef1142afb4716e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# System-wide defaults for all Darwin profiles
# This file should rarely need to be changed
# ccache settings for avoiding /root
CCACHE_DIR="/var/root/.ccache"
CFLAGS="-O2 -pipe"
CXXFLAGS=${CFLAGS}
MAKEOPTS="-j2"
PLATFORM=$CHOST
FETCHCOMMAND="/usr/bin/curl --connect-timeout 15 -# -o \${DISTDIR}/\${FILE} \${URI}"
RESUMECOMMAND="/usr/bin/curl --connect-timeout 15 -# -C - -o \${DISTDIR}/\${FILE} \${URI}"
FEATURES="-sandbox userpriv"
USE="emboss"
|