Advertisement
Brutico

Make.conf finales 2019

Nov 19th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 KB | None | 0 0
  1. # Build setup as of <add current date>
  2.  
  3. # C, C++ and FORTRAN options for GCC.
  4. COMMON_FLAGS="-march=native -O2 -pipe"
  5. CFLAGS="${COMMON_FLAGS}"
  6. CXXFLAGS="${COMMON_FLAGS}"
  7. FCFLAGS="${COMMON_FLAGS}"
  8. FFLAGS="${COMMON_FLAGS}"
  9.  
  10. # Note: MAKEOPTS and EMERGE_DEFAULT_OPTS are set in .bashrc
  11.  
  12. # WARNING: Changing your CHOST is not something that should be done lightly.
  13. # Please consult http://www.gentoo.org/doc/en/change-chost.xml before changing.
  14. CHOST="x86_64-pc-linux-gnu"
  15.  
  16. # Use the 'stable' branch - 'testing' no longer required for Gnome 3.
  17. # NB, amd64 is correct for both Intel and AMD 64-bit CPUs
  18. ACCEPT_KEYWORDS="~amd64"
  19.  
  20.  
  21. # Important Portage directories.
  22. PORTDIR="/var/db/repos/gentoo"
  23. DISTDIR="/var/cache/distfiles"
  24. PKGDIR="/var/cache/binpkgs"
  25.  
  26. # This sets the language of build output to English.
  27. # Please keep this setting intact when reporting bugs.
  28. LC_MESSAGES=C
  29.  
  30. # Turn on logging - see http://gentoo-en.vfose.ru/wiki/Gentoo_maintenance.
  31. #PORTAGE_ELOG_CLASSES="info warn error log qa"
  32. # Echo messages after emerge, also save to /var/log/portage/elog
  33. #PORTAGE_ELOG_SYSTEM="echo save"
  34.  
  35. # Ensure elogs saved in category subdirectories.
  36. # Build binary packages as a byproduct of each emerge, a useful backup.
  37. FEATURES="preserve-libs buildpkg"
  38.  
  39. # Settings for X11
  40. VIDEO_CARDS="nvidia"
  41. INPUT_DEVICES="libinput"
  42.  
  43.  
  44. INGUAS="es es_ES ca ca_ES"
  45. L10N="es es-ES ca ca-ES"
  46. #
  47. ########################
  48. # LIMPIEZA DEL SISTEMA #
  49. ########################
  50. #
  51. AUTOCLEAN="yes"
  52. #
  53. #######################
  54. # OPCIONES DE PORTAGE #
  55. #######################
  56. #
  57. EMERGE_DEFAULT_OPTS="--ask --jobs=4 --keep-going --nospinner --quiet-build --with-bdeps=y"
  58. MAKEOPTS="-j17"
  59. PORTAGE_TMPDIR="/tmp"
  60.  
  61.  
  62. #
  63. ########################
  64. # LINCENCIAS ACEPTADAS #
  65. ########################
  66. #
  67. ACCEPT_LICENSE="*"
  68. #
  69. #####################
  70. # BANDERAS GLOBALES #
  71. #####################
  72. #
  73. IMAGENES="apng exif gif jpeg jpeg2k png raw svg tiff webp"
  74. VIDEO="bluray ffmpeg libass libmpv mpv matroska x264 x265"
  75. AUDIO="alsa cdio faac faad fdk mp3 lame pulseaudio sndfile wavpack"
  76. RED="networkmanager samba zeroconf"
  77. PLASMA="consolekit plymouth policykit qt5"
  78. SISTEMA="cryptsetup device-mapper python udisks"
  79. HARDWARE="cpudetection libv4l threads nvenc vdpau X xa xvmc"
  80. PERIFERICOS="v4l mtp bluetooth scanner"
  81. FUENTES="truetype type1 cleartype corefonts"
  82. DENEGADAS="-gnome -qt3support -qt4 -kde"
  83. #
  84. USE="${IMAGENES} ${VIDEO} ${AUDIO} ${RED} ${PLASMA} ${SISTEMA} ${HARDWARE} ${PERIFERICOS} ${FUENTES} ${DENEGADAS}"
  85. #
  86. ###################
  87. # SOPORTE 32 BITS #
  88. ###################
  89. #
  90. ABI_X86="64 32"
  91.  
  92. # SCANER
  93. SANE_BACKENDS="pixma net usb"
  94.  
  95. # IMPRESORA
  96. CANON_PRINTERS="mx920"
  97.  
  98. # CPU FLAGS
  99. CPU_FLAGS_X86="aes avx avx2 f16c fma3 mmx mmxext pclmul popcnt sha sse sse2 sse3 sse4_1 sse4_2 sse4a ssse3"
  100.  
  101. GENTOO_MIRRORS="http://gentoo.modulix.net/gentoo/ http://gentoo.mirrors.ovh.net/gentoo-distfiles/ https://mirrors.soeasyto.com/distfiles.gentoo.org/ http://mirrors.soeasyto.com/distfiles.gentoo.org/ ftp://mirrors.soeasyto.com/distfiles.gentoo.org/ https://mirror.eu.oneandone.net/linux/distributions/gentoo/gentoo/ http://mirror.eu.oneandone.net/linux/distributions/gentoo/gentoo/"
  102.  
  103. PORTDIR_OVERLAY="/usr/local/portage ${PORTDIR_OVERLAY}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement