2019-03-15 19:44:51 +01:00
|
|
|
#!/bin/bash
|
|
|
|
# This is an example catalystrc. As such, it doesn't actually *do* anything.
|
|
|
|
|
|
|
|
# Uncomment the following to increase the number of threads used to compile.
|
|
|
|
# export MAKEOPTS="-j16"
|
|
|
|
|
|
|
|
#export EMERGE_DEFAULT_OPTS=-j8
|
|
|
|
|
|
|
|
export BINPKG_COMPRESS="gzip"
|
|
|
|
#export BINPKG_COMPRESS_FLAGS="-4"
|
|
|
|
|
|
|
|
export SHELL=/bin/bash
|
|
|
|
export PYTHON=python
|
|
|
|
|
|
|
|
# We're going unstable
|
|
|
|
export ACCEPT_KEYWORDS="~amd64"
|
|
|
|
|
|
|
|
# Hardware flags
|
|
|
|
export CPU_FLAGS_X86="aes mmx mmxext pclmul popcnt sse sse2 sse3 sse4_1 sse4_2 ssse3"
|
2019-07-16 08:49:42 +02:00
|
|
|
# Needed for some binary packages (Steam, for example)
|
2019-03-15 19:44:51 +01:00
|
|
|
export ABI_X86="32 64"
|
2019-03-26 15:29:28 +01:00
|
|
|
export LLVM_TARGETS="X86 AMDGPU BPF NVPTX"
|
2019-03-15 19:44:51 +01:00
|
|
|
export VIDEO_CARDS="i915 i965 intel nouveau amdgpu radeon r600"
|
|
|
|
export INPUT_DEVICES="evdev keyboard libinput mouse synaptics joystick"
|
|
|
|
|
|
|
|
|
|
|
|
# Software environments.
|
2019-03-26 15:29:28 +01:00
|
|
|
#export PYTHON_TARGETS="python2_7 python3_6 python3_7"
|
|
|
|
#export PYTHON_SINGLE_TARGET="python3_6"
|
2019-07-02 08:54:50 +02:00
|
|
|
export RUBY_TARGETS="ruby26"
|
2019-03-15 19:44:51 +01:00
|
|
|
|
|
|
|
# Internationalization
|
|
|
|
export L10N="en fr"
|
|
|
|
|
|
|
|
#export USE="gold plugins"
|
2019-07-16 08:50:09 +02:00
|
|
|
# * Error: circular dependencies:
|
|
|
|
#
|
|
|
|
# (virtual/pam-0-r1:0/0::gentoo, ebuild scheduled for merge) depends on
|
|
|
|
# (sys-libs/pam-1.3.1-r1:0/0::gentoo, ebuild scheduled for merge) (runtime)
|
|
|
|
# (sys-libs/libcap-2.27:0/0::gentoo, ebuild scheduled for merge) (buildtime)
|
|
|
|
# (virtual/pam-0-r1:0/0::gentoo, ebuild scheduled for merge) (buildtime)
|
|
|
|
#
|
|
|
|
# It might be possible to break this cycle
|
|
|
|
# by applying any of the following changes:
|
|
|
|
# - sys-libs/libcap-2.27 (Change USE: -pam)
|
|
|
|
# - sys-libs/pam-1.3.1-r1 (Change USE: -filecaps)
|
|
|
|
export USE="-filecaps"
|