Initial commit
commit
863e6fed1d
|
@ -0,0 +1,5 @@
|
|||
# Specify host-specific compiler options in this file
|
||||
|
||||
CHOST="x86_64-pc-linux-gnu"
|
||||
CFLAGS="-O2 -pipe -march=native"
|
||||
CXXFLAGS="${CFLAGS}"
|
|
@ -0,0 +1,6 @@
|
|||
# These non-standard variables are used to tune Portage configuration for
|
||||
# this specific host, without directly modifying the options themselves.
|
||||
# In this way, option "templates" can be shared between hosts.
|
||||
|
||||
NCPUS=8
|
||||
BINPKG_DIR=default-linux/amd64/bdver3
|
|
@ -0,0 +1,11 @@
|
|||
# Default Portage options. Host-specific variables (e.g. NCPUS) are defined
|
||||
# in 01-vars, allowing this file to be shared between machines without
|
||||
# any modifications.
|
||||
|
||||
MAKEOPTS="-j${NCPUS}"
|
||||
EMERGE_DEFAULT_OPTS="--jobs --load-average=${NCPUS} --quiet-fail --quiet-build --autounmask-write=n"
|
||||
|
||||
DISTDIR="/var/cache/portage/distfiles"
|
||||
PKGDIR="/var/cache/portage/binpkgs/${BINPKG_DIR}"
|
||||
|
||||
USE="acl aio caps -cups -consolekit filecaps -perl -policykit xattr"
|
|
@ -0,0 +1,3 @@
|
|||
# Do not install systemd unit files, etc.
|
||||
|
||||
INSTALL_MASK="${INSTALL_MASK} /usr/lib/systemd"
|
|
@ -0,0 +1,5 @@
|
|||
# USE flags related to GUI applications, etc.
|
||||
USE="${USE} X dbus gtk3 libnotify startup-notification xinerama"
|
||||
|
||||
# Prevent the Adwaita cursor theme from being installed because it is ugly
|
||||
INSTALL_MASK="${INSTALL_MASK} /usr/share/cursors/xorg-x11/Adwaita"
|
|
@ -0,0 +1,4 @@
|
|||
# Specify X.org drivers, etc. here
|
||||
|
||||
VIDEO_CARDS="amdgpu radeon radeonsi"
|
||||
USE="${USE} glamor"
|
|
@ -0,0 +1,2 @@
|
|||
# Enable Kerberos support everywhere (for Active Directory integration)
|
||||
USE="${USE} kerberos"
|
|
@ -0,0 +1,5 @@
|
|||
# USE flags for video/audio features, etc.
|
||||
USE="${USE} alsa egl gles2 gstreamer opengl pulseaudio vaapi vdpau"
|
||||
|
||||
# Multimedia codecs
|
||||
USE="${USE} flac gif jpeg ogg png speex theora vorbis x264 x265"
|
|
@ -0,0 +1,5 @@
|
|||
[DEFAULT]
|
||||
main-repo = gentoo
|
||||
|
||||
[gentoo]
|
||||
location = /var/db/repos/gentoo
|
Loading…
Reference in New Issue