spacepaste

  1.  
  2. # Please consult /usr/share/portage/config/make.conf.example for a more detailed example.
  3. ##########################################
  4. # AMD Ryzen 7 2700X Eight-Core Processor #
  5. ##########################################
  6. COMMON_FLAGS="-O2 -march=znver1 -pipe" # change to znver2 when using gcc9
  7. CFLAGS="${COMMON_FLAGS}"
  8. CXXFLAGS="${COMMON_FLAGS}"
  9. FCFLAGS="${COMMON_FLAGS}"
  10. FFLAGS="${COMMON_FLAGS}"
  11. MAKEOPS="-j17" # This should be the number of processors + 1
  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. # arch of mypc #
  18. ################
  19. ACCEPT_KEYWORDS="amd64" # use ~amd64 for bleeding edge software
  20. EMERGE_DEFAULT_OPTS="--ask --verbose"
  21. INPUT_DEVICES="evdev"
  22. VIDEO_CARDS="nvidia"
  23. # This sets the language of build output to English.
  24. # Please keep this setting intact when reporting bugs.
  25. LC_MESSAGES=C
  26. LINGUAS="de de_DE"
  27. L10N="de"
  28. ########
  29. # Grub #
  30. ########
  31. GRUB_PLATFORMS="efi-64"
  32. #GRUB_PLATFORMS="efi-64 multiboot"
  33. ##############
  34. # KVM & QEMU #
  35. ##############
  36. QEMU_SOFTMMU_TARGETS="arm x86_64"
  37. QEMU_USER_TARGETS="x86_64"
  38. ################
  39. # Repositories #
  40. ################
  41. GENTOO_MIRRORS="http://ftp.halifax.rwth-aachen.de/gentoo http://distfiles.gentoo.org"
  42. #############
  43. # USE-Flags #
  44. #############
  45. # security
  46. SEC_USE="-acl -consolekit cracklib crypt -kerberos -ldap policykit -sasl"
  47. # hardware
  48. HW_USE="acpi evdev hddtemp lm_sensors nvidia -pcmcia -smartcard smp udev udisks upnp usb vdpau xvmc"
  49. # network
  50. NET_USE="bluetooth ftp gnutls ipv6 -netboot nis ssl tcpd wifi"
  51. # sound
  52. SND_USE="alsa sound"
  53. # CD/DVD
  54. CD_USE="cdda cddb cdparanoia cdr dvd dvdr"
  55. # computer language
  56. CL_USE="-cgi -enscript -headers-only -introspection -java -javascript -lua -perl -php -python -ruby -tidy -vala"
  57. # Database
  58. DB_USE="berkdb -cdb -dbm -firebird -foomaticdb -gdbm -iodbc -mssql -mysql -mysqli -odbc -oracle -qdbm sqlite"
  59. # picture
  60. PIC_USE="cairo gif gimp jpeg png svg tiff"
  61. # printer
  62. PR_USE="-cups"
  63. # desktop enviroment
  64. DE_USE="dbus egl glut -gnome -gtk -gtk3 -kde opengl -plasma -qt5 session -wayland X xcomposite xft xinerama -xscreensaver"
  65. # codec
  66. CODEC_USE="encode ffmpeg -libav gstreamer matroska mp3 mp4 mpeg ogg v4l vcd -vlc vorbis x264 x265 xvid"
  67. # misc
  68. MISC_USE="mime modules -multilib nls pdf posix prefix readline spell syslog systemd truetype vim vim-syntax xattr zlib"
  69. # fuse all custom USE-Flags
  70. USE="$SEC_USE $HW_USE $NET_USE $SND_USE $CD_USE $CL_USE $DB_USE $PIC_USE $PR_USE $DE_USE $CODEC_USE $MISC_USE"
  71.