From 0af2a7c2941ce15a5b04c276c2df2df82a2bd38c Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Sun, 30 Jul 2023 09:02:04 +0200 Subject: Add make.conf --- data.d/etc-portage/make.conf/00-defaults.conf | 15 ++++++++ data.d/etc-portage/make.conf/10-global.conf | 54 +++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 data.d/etc-portage/make.conf/00-defaults.conf create mode 100644 data.d/etc-portage/make.conf/10-global.conf diff --git a/data.d/etc-portage/make.conf/00-defaults.conf b/data.d/etc-portage/make.conf/00-defaults.conf new file mode 100644 index 0000000..21c3c58 --- /dev/null +++ b/data.d/etc-portage/make.conf/00-defaults.conf @@ -0,0 +1,15 @@ +# These settings were set by the catalyst build script that automatically +# built this stage. +# Please consult /usr/share/portage/config/make.conf.example for a more +# detailed example. +COMMON_FLAGS="-O2 -pipe" +CFLAGS="${COMMON_FLAGS}" +CXXFLAGS="${COMMON_FLAGS}" +FCFLAGS="${COMMON_FLAGS}" +FFLAGS="${COMMON_FLAGS}" + +# NOTE: This stage was built with the bindist Use flag enabled + +# This sets the language of build output to English. +# Please keep this setting intact when reporting bugs. +LC_MESSAGES=C.utf8 diff --git a/data.d/etc-portage/make.conf/10-global.conf b/data.d/etc-portage/make.conf/10-global.conf new file mode 100644 index 0000000..deff7d8 --- /dev/null +++ b/data.d/etc-portage/make.conf/10-global.conf @@ -0,0 +1,54 @@ +USE=" + bash-completion + introspection + vim-syntax + zsh-completion +" + +FEATURES=" + $FEATURES + buildpkg + network-sandbox + parallel-fetch + parallel-install + sandbox + sign + userfetch + userpriv + usersandbox + usersync +" + +EMERGE_DEFAULT_OPTS=" + $EMERGE_DEFAULT_OPTS + --alert + --ask + --binpkg-changed-deps=y + --binpkg-respect-use=y + --buildpkg-exclude */*-bin + --buildpkg-exclude acct-*/* + --buildpkg-exclude sys-kernel/*-sources + --buildpkg-exclude virtual/* + --keep-going + --tree + --usepkg-exclude */*-bin + --usepkg-exclude acct-*/* + --usepkg-exclude sys-kernel/*-sources + --usepkg-exclude virtual/* + --verbose +" + +PKGDIR="/var/portage/packages" +DISTDIR="/var/portage/distfiles" + +ACCEPT_LICENSE=" + -* + @FREE +" + +LC_MESSAGES=C.UTF8 + +L10N=" + en + nl +" -- cgit v1.1