Advertisement
Guest User

make.conf

a guest
Oct 9th, 2014
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.46 KB | None | 0 0
  1. #-- Compile
  2. CFLAGS="-pipe -O2 -march=x86-64"
  3. CXXFLAGS="${CFLAGS}"
  4. MAKEOPTS="-j4"
  5.  
  6. #-- Features
  7. FEATURES="-userpriv buildpkg"
  8. LINGUAS="en ru"
  9.  
  10. #-- Hardware
  11. CHOST="x86_64-pc-linux-gnu"
  12. VIDEO_CARDS="radeon r600 intel i915"
  13. INPUT_DEVICES="evdev synaptics keyboard mouse"
  14.  
  15. #-- Directories
  16. PORTDIR="/usr/portage"
  17. PKGDIR="/srv/export/x86_64/packages"
  18.  
  19. #-- ABI
  20. ABI_X86="64"
  21.  
  22. #-- Python
  23. PYTHON_TARGETS="python2_7 python3_2 python3_3"
  24. USE_PYTHON="2.7 3.2 3.3"
  25.  
  26. #-- Ruby
  27. RUBY_TARGETS="ruby20"
  28.  
  29. #-- Qemu
  30. QEMU_SOFTMMU_TARGETS="x86_64 i386 arm mips"
  31. QEMU_USER_TARGETS="x86_64 i386 arm mips"
  32.  
  33. #-- Generic
  34. USE="bindist unicode spell"
  35.  
  36. #-- System
  37. USE="inotify pam dbus udev udisks -upower consolekit policykit"
  38.  
  39. #-- Monolith
  40. USE="$USE -networkmanager -systemd gudev"
  41.  
  42. #-- Audio
  43. USE="$USE -oss pulseaudio alsa"
  44.  
  45. #-- Video
  46. USE="$USE gallium"
  47.  
  48. #-- DE & toolkit
  49. USE="$USE -gtk3 -gnome -kde qt3support gtkstyle -handbook -semantic-desktop -xscreensaver"
  50.  
  51. #-- Optimization
  52. USE="$USE mmx sse sse2"
  53.  
  54. #-- Compression
  55. USE="$USE lzma"
  56.  
  57. #-- Fonts
  58. USE="$USE truetype type1 cleartype corefonts"
  59.  
  60. #-- Media
  61. USE="$USE X xft djvu postscript imagemagick graphviz jpeg png svg tiff flac lame mpg123 ogg vorbis"
  62.  
  63. #-- Crypto
  64. USE="$USE sasl smime"
  65.  
  66. #-- Protocols
  67. USE="$USE samba sftp ssh"
  68.  
  69. #-- Version control
  70. USE="$USE subversion mercurial git"
  71.  
  72. #-- Bindings
  73. USE="$USE python perl"
  74.  
  75. #-- Syntax & completion
  76. USE="$USE emacs gzip-el vim-syntax zsh-completion"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement