Gentoo Archives: gentoo-commits

From: "Ned Ludd (solar)" <solar@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-projects commit in crossdev-wrappers/etc: make.conf make.globals
Date: Thu, 26 Feb 2009 23:19:55
Message-Id: E1LcpWB-00009j-Jh@stork.gentoo.org
1 solar 09/02/26 23:19:51
2
3 Added: make.conf make.globals
4 Log:
5 - initial import into cvs. git what? git lost.
6
7 Revision Changes Path
8 1.1 crossdev-wrappers/etc/make.conf
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/crossdev-wrappers/etc/make.conf?rev=1.1&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/crossdev-wrappers/etc/make.conf?rev=1.1&content-type=text/plain
12
13 Index: make.conf
14 ===================================================================
15 CHOST=__CHOST__
16 CBUILD=__CBUILD__
17 ARCH=__ARCH__
18
19 HOSTCC=__CBUILD__-gcc
20 #E_MACHINE=__E_MACHINE__
21
22 ROOT=/usr/${CHOST}/
23
24 ACCEPT_KEYWORDS="__ARCH__ ~__ARCH__"
25
26 USE="${ARCH} zlib bindist make-symlinks minimal \
27 input_devices_keyboard input_devices_evdev \
28 video_cards_fbdev video_cards_dummy"
29
30 #MARCH_TUNE="-march=armv4t -mtune=arm9tdmi" #arm-softfloat-linux-uclibc
31 #MARCH_TUNE="-march=armv5t -mtune=xscale" #armv5teb-softfloat-linux-gnueabi
32
33 CFLAGS="-Os -pipe ${MARCH_TUNE} -fomit-frame-pointer -I${ROOT}usr/include/ -I${ROOT}include/"
34 CXXFLAGS="${CFLAGS}"
35 LDFLAGS="-L${ROOT}usr/lib -L${ROOT}lib"
36
37 FEATURES="-collision-protect sandbox buildpkg noman noinfo nodoc"
38 # Be sure we dont overwrite pkgs from another repo..
39 PKGDIR=${ROOT}packages/
40 PORTAGE_TMPDIR=${ROOT}tmp/
41
42 CLEAN_DELAY=0
43 EPAUSE_IGNORE=1
44 EBEEP_IGNORE=1
45 PORTAGE_WORKDIR_MODE=2775
46 PORTAGE_ECLASS_WARNING_ENABLE=0
47
48 VIDEO_CARDS="fbdev dummy"
49 INPUT_DEVICES="evdev keyboard mouse touchscreen"
50 USE_EXPAND="video_cards input_devices"
51
52 PKG_CONFIG_PATH="${ROOT}usr/lib/pkgconfig/"
53 #PORTDIR_OVERLAY="/usr/portage/local/"
54
55
56
57 1.1 crossdev-wrappers/etc/make.globals
58
59 file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/crossdev-wrappers/etc/make.globals?rev=1.1&view=markup
60 plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/crossdev-wrappers/etc/make.globals?rev=1.1&content-type=text/plain
61
62 Index: make.globals
63 ===================================================================
64 # Copyright 1999-2006 Gentoo Foundation
65 # Distributed under the terms of the GNU General Public License v2
66 # $Id: make.globals,v 1.1 2009/02/26 23:19:51 solar Exp $
67 # System-wide defaults for the Portage system
68
69 # *****************************
70 # ** DO NOT EDIT THIS FILE **
71 # ***************************************************
72 # **** CHANGES TO make.conf *OVERRIDE* THIS FILE ****
73 # ***************************************************
74 # ** Incremental Variables Accumulate Across Files **
75 # ** USE, CONFIG_*, and FEATURES are incremental **
76 # ***************************************************
77
78 # When compiler flags are unset, many packages will substitute their own
79 # implicit flags. For uniformity, use an empty string as the default.
80 CFLAGS=""
81 CXXFLAGS=""
82 LDFLAGS=""
83
84 # Default rsync mirror
85 SYNC="rsync://rsync.gentoo.org/gentoo-portage"
86
87 # Default distfiles mirrors
88 GENTOO_MIRRORS="http://distfiles.gentoo.org http://distro.ibiblio.org/pub/linux/distributions/gentoo"
89
90 # Repository Paths
91 PORTDIR=/usr/portage
92 DISTDIR=/usr/portage/distfiles
93 PKGDIR=/usr/portage/packages
94 RPMDIR=/usr/portage/rpm
95
96 # Temporary build directory
97 PORTAGE_TMPDIR=/var/tmp
98
99 # Fetching command (5 tries, passive ftp for firewall compatibility)
100 FETCHCOMMAND="/usr/bin/wget -t 5 -T 60 --passive-ftp -O \"\${DISTDIR}/\${FILE}\" \"\${URI}\""
101 RESUMECOMMAND="/usr/bin/wget -c -t 5 -T 60 --passive-ftp -O \"\${DISTDIR}/\${FILE}\" \"\${URI}\""
102
103 # Default user options
104 FEATURES="distlocks fixpackages parallel-fetch protect-owned sandbox
105 sfperms strict unmerge-orphans userfetch"
106
107 # Ignore file collisions in /lib/modules since files inside this directory
108 # are never unmerged, and therefore collisions must be ignored in order for
109 # FEATURES=protect-owned to operate smoothly in all cases.
110 COLLISION_IGNORE="/lib/modules"
111
112 # Default chunksize for binhost comms
113 PORTAGE_BINHOST_CHUNKSIZE="3000"
114
115 # By default wait 5 secs before cleaning a package
116 CLEAN_DELAY="5"
117
118 # By default wait 10 secs on an important warning
119 EMERGE_WARNING_DELAY="10"
120
121 # Automatically clean installed packages after they are updated.
122 # This option will be removed and forced to yes.
123 AUTOCLEAN="yes"
124
125 # Don't compress files with these suffixes.
126 PORTAGE_COMPRESS_EXCLUDE_SUFFIXES="css gif htm[l]? jp[e]?g js pdf png"
127
128 # Number of mirrors to try when a downloaded file has an incorrect checksum.
129 PORTAGE_FETCH_CHECKSUM_TRY_MIRRORS="5"
130
131 # Minimum size of existing file for RESUMECOMMAND to be called.
132 PORTAGE_FETCH_RESUME_MIN_SIZE="350K"
133
134 # Number of times 'emerge --sync' will run before giving up.
135 PORTAGE_RSYNC_RETRIES="3"
136
137 # Number of seconds rsync will wait before timing out.
138 #RSYNC_TIMEOUT="180"
139
140 PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --stats --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages"
141
142 # Minimal CONFIG_PROTECT
143 CONFIG_PROTECT="/etc"
144 CONFIG_PROTECT_MASK="/etc/env.d"
145
146 # Disable auto-use
147 USE_ORDER="env:pkg:conf:defaults:pkginternal:env.d"
148
149 # Default ownership of installed files.
150 PORTAGE_INST_UID="0"
151 PORTAGE_INST_GID="0"
152
153 # Mode bits for ${WORKDIR} (see ebuild.5).
154 PORTAGE_WORKDIR_MODE="0700"
155
156 # Some defaults for elog
157 PORTAGE_ELOG_CLASSES="log warn error"
158 PORTAGE_ELOG_SYSTEM="save_summary echo"
159
160 PORTAGE_ELOG_MAILURI="root"
161 PORTAGE_ELOG_MAILSUBJECT="[portage] ebuild log for \${PACKAGE} on \${HOST}"
162 PORTAGE_ELOG_MAILFROM="portage@localhost"
163
164 # *****************************
165 # ** DO NOT EDIT THIS FILE **
166 # ***************************************************
167 # **** CHANGES TO make.conf *OVERRIDE* THIS FILE ****
168 # ***************************************************
169 # ** Incremental Variables Accumulate Across Files **
170 # ** USE, CONFIG_*, and FEATURES are incremental **
171 # ***************************************************