blob: 5ea37f69b369419188bd31a0bfc3fc195f4cf3ad (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 2000 Daniel Robbins, Gentoo Technologies, Inc.
# System-wide defaults for the Portage system
#proxy settings PROXY(both), or HTTP_PROXY/FTP_PROXY
#PROXY=freebox.gentoo.org:3128
#HTTP_PROXY=
#FTP_PROXY=
GENTOO_MIRRORS="ftp://ftp.ibiblio.org/pub/Linux"
# Host-type
CHOST=i686-pc-linux-gnu
PORTAGE_TMPDIR=/tmp
# Directory used for the build process
BUILD_PREFIX=${PORTAGE_TMPDIR}/portage
PKG_TMPDIR=${PORTAGE_TMPDIR}/portage-pkg
PORTDIR=/usr/portage
DISTDIR=${PORTDIR}/distfiles
PKGDIR=${PORTDIR}/packages
RPMDIR=${PORTDIR}/rpm
CURRENTFILE=${PORTDIR}/current-packages
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 \${x} -P \${DISTDIR}"
#For Prozilla (really rocks):
#FETCHCOMMAND="/usr/bin/proz -s \${x} -P \${DISTDIR}"
# Compile programs with GNOME/SLANG extensions
#USE="gnome bonobo X qt kde"
#USE="3dnow mmx esd"
#USE="berkdb gdbm readline libg++ gpm tcpd slang"
#USE="ssl postgres mysql ldap odbc"
#USE="tex"
USE="slang"
# C Compiler flags
CFLAGS="-O2 -mpentium"
# C++ Compiler flags
CXXFLAGS=${CFLAGS}
#DEBUG=true
|