OLD | NEW |
1 # See "man make.conf" for the available options. | 1 # See "man make.conf" for the available options. |
2 | 2 |
3 ACCEPT_KEYWORDS="amd64" | 3 ACCEPT_KEYWORDS="amd64" |
4 CHOST="x86_64-pc-linux-gnu" | 4 CHOST="x86_64-pc-linux-gnu" |
5 CFLAGS="-O2 -pipe" | 5 CFLAGS="-O2 -pipe" |
6 FEATURES="buildpkg -strict" | 6 FEATURES="buildpkg -strict" |
7 | 7 |
8 # Since our portage comes from version control, we redirect distfiles | 8 # Since our portage comes from version control, we redirect distfiles |
9 DISTDIR="/var/lib/portage/distfiles" | 9 DISTDIR="/var/lib/portage/distfiles" |
10 | 10 |
11 # We initialize PORTDIR_OVERLAY here to clobber any redefinitions elsewhere. | 11 # We initialize PORTDIR_OVERLAY here to clobber any redefinitions elsewhere. |
12 # This has to be the first overlay so crossdev finds the correct gcc and | 12 # This has to be the first overlay so crossdev finds the correct gcc and |
13 # glibc ebuilds. | 13 # glibc ebuilds. |
14 PORTDIR_OVERLAY="/usr/local/portage/chromiumos" | 14 PORTDIR_OVERLAY="/usr/local/portage/chromiumos" |
15 | 15 |
16 PORTAGE_BZIP2_COMMAND='eval function fbzip() { if which pbzip2 &> /dev/null; the
n pbzip2 \$*; else bzip2 \$*; fi; }; fbzip' | 16 PORTAGE_BZIP2_COMMAND='eval function fbzip() { if which pbzip2 &> /dev/null; the
n pbzip2 \$*; else bzip2 \$*; fi; }; fbzip' |
17 PORTAGE_BUNZIP2_COMMAND="bunzip2" | 17 PORTAGE_BUNZIP2_COMMAND="bunzip2" |
18 | 18 |
19 # Where to store built packages. | 19 # Where to store built packages. |
20 PKGDIR="/var/lib/portage/pkgs" | 20 PKGDIR="/var/lib/portage/pkgs" |
21 | 21 |
22 PORTAGE_BINHOST="http://commondatastorage.googleapis.com/chromeos-prebuilt/host/
amd64/master-13.01.11.020633/packages/" | 22 PORTAGE_BINHOST="http://commondatastorage.googleapis.com/chromeos-prebuilt/host/
amd64/master-13.01.11.020633/packages/" |
23 | 23 |
24 USE="${USE} -cups hardened pic pie" | 24 USE="${USE} -cups hardened pic pie -introspection" |
25 | 25 |
26 GENTOO_MIRRORS="http://gsdview.appspot.com/chromeos-mirror/gentoo" | 26 GENTOO_MIRRORS="http://gsdview.appspot.com/chromeos-mirror/gentoo" |
27 | 27 |
28 source make.conf.host_setup | 28 source make.conf.host_setup |
OLD | NEW |