blob: e93b497a112685d2e9b4729a5519c7450ebb6c25 (
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
|
# Copyright 2000 Daniel Robbins, Gentoo Technologies, Inc.
# System-wide defaults for the Portage system
ARCH="ppc"
# Host-type
CHOST=powerpc-unknown-linux-gnu
PLATFORM=$CHOST
# Options passed to make during the build process
MAKEOPTS="-j2"
# Fetching command (5 tries, passive ftp for firewall compatibility)
FETCHCOMMAND="/usr/bin/wget -t 5 --passive-ftp \${URI} -P \${DISTDIR}"
# Global configure options
# C Compiler flags
CFLAGS="-O2 -pipe"
# C++ Compiler flags
CXXFLAGS=${CFLAGS}
USE="oss dvd xv slang readline gpm berkdb gdbm tcpd pam libwww ssl jpeg
nls mitshm perl python esd gif imlib sdl oggvorbis gnome gtk X qt kde
motif opengl mozilla png truetype ppc"
# The following USE should _not_ bet set on ppc as they can cause breakage
# in some pacakges (are mostly x86 only options)
# 3dfx 3dnow avi icc icc-pgo mmx svga sse nas
ACCEPT_KEYWORDS="ppc"
|