blob: d6fd7eaf886fbc1e4f3bf9bd0f6130cbda1cf0e3 (
plain)
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
|
# Copyright 2004 Pieter Van den Abeele, Gentoo Foundation
# Copyright 2000 Daniel Robbins, Gentoo Foundation.
# System-wide defaults for the Portage system
GRP_STAGE23_USE="readline ssl perl python ncurses"
ARCH="macos"
# Host-type
CHOST=powerpc-apple-darwin
PLATFORM=$CHOST
# Options passed to make during the build process
MAKEOPTS="-j2"
# Fetching command (5 tries, passive ftp for firewall compatibility)
FETCHCOMMAND="/usr/bin/curl --connect-timeout 15 -# -o \${DISTDIR}/\${FILE} \${URI}"
# Global configure options
# C Compiler flags
CFLAGS="-O2 -pipe"
# C++ Compiler flags
CXXFLAGS=${CFLAGS}
USE=""
ACCEPT_KEYWORDS="macos"
COMPILER="gcc3"
|