]> git.friedersdorff.com Git - max/saltfiles.git/blob - states/portage/files/make.conf
Correct subtle errors in make.conf
[max/saltfiles.git] / states / portage / files / make.conf
1 {% if grains['host'] in useflags %}
2 {% set use = useflags[grains['host']] %}
3 {% endif %}
4 # These settings were set by the catalyst build script that automatically
5 # built this stage.
6 # Please consult /usr/share/portage/config/make.conf.example for a more
7 # detailed example.
8 CFLAGS="-O2 -pipe -march=native -fomit-frame-pointer"
9 CXXFLAGS="${CFLAGS}"
10 MAKEOPTS="-j{{ grains['num_cpus'] + 1 }}"
11
12 # NOTE: This stage was built with the bindist Use flag enabled
13 PORTDIR="/usr/portage"
14 DISTDIR="/usr/portage/distfiles"
15 PKGDIR="/usr/portage/packages"
16
17 # This sets the language of build output to English.
18 # Please keep this setting intact when reporting bugs.
19 LC_MESSAGES=C
20
21 GENTOO_MIRRORS="ftp://ftp.mirrorservice.org/sites/distfiles.gentoo.org/"
22
23 USE="-pulseaudio -bindist -cups -ldap pcsc-lite X alsa libressl wayland unicode ipv6 ipv4 {{ use }}"
24 GRUB_PLATFORMS="efi-64"
25
26 VIDEO_CARDS="{{ video_cards }}"
27 INPUT_DEVICES="libinput"
28
29 {% if testing == True %}
30 ACCEPT_KEYWORDS="~amd64"
31 {% endif %}
32
33 RUBY_TARGETS="ruby25"
34
35 PORTAGE_NICENESS="19"
36
37 FEATURES="buildpkg sign"
38 PORTAGE_GPG_KEY="BA1CE947376048A4B3C4D4E50B3B880CF5E7FCB3"
39
40 EMERGE_DEFAULT_OPTS="-av --quiet-build=y"
41 PORTAGE_IONICE_COMMAND="ionice -c 3 -p \${PID}"
42
43 CURL_SSL="libressl"