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