diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-01-15 19:09:52 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-01-15 19:09:52 +0000 |
commit | 255d75dfd3e996e0df9a30d12bd5574aabbf226e (patch) | |
tree | c41424071543beb39934cfe5c91708b371e4983b /conf | |
parent | 4fb93223949395a31a909220e6a12ac174df1ac0 (diff) |
make use of /etc/sisyphus/mirrors.conf
Diffstat (limited to 'conf')
-rw-r--r-- | conf/intel/portage/make.conf.amd64-binmode | 9 | ||||
-rw-r--r-- | conf/intel/portage/make.conf.amd64-mixedmode | 9 | ||||
-rw-r--r-- | conf/intel/portage/make.conf.amd64-srcmode | 9 |
3 files changed, 24 insertions, 3 deletions
diff --git a/conf/intel/portage/make.conf.amd64-binmode b/conf/intel/portage/make.conf.amd64-binmode index bbd3dd8..52dcf57 100644 --- a/conf/intel/portage/make.conf.amd64-binmode +++ b/conf/intel/portage/make.conf.amd64-binmode @@ -2,8 +2,8 @@ FEATURES="parallel-fetch protect-owned candy compressdebug splitdebug -userpriv" EMERGE_DEFAULT_OPTS="${EMERGE_DEFAULT_OPTS} --getbinpkgonly --rebuilt-binaries" +## PORTAGE CONFIG ## source /etc/portage/global.conf/abi.conf -source /etc/portage/global.conf/binhost.conf source /etc/portage/global.conf/cflags.conf source /etc/portage/global.conf/cpuflags.conf source /etc/portage/global.conf/devices.conf @@ -17,3 +17,10 @@ source /etc/portage/global.conf/python.conf source /etc/portage/global.conf/qemu.conf source /etc/portage/global.conf/ruby.conf source /etc/portage/global.conf/useflags.conf + +## MIRROR CONFIG ## +if [[ -f /etc/sisyphus/mirrors.conf ]] ; then + source /etc/sisyphus/mirrors.conf +else + source /etc/portage/global.conf/binhost.conf +fi diff --git a/conf/intel/portage/make.conf.amd64-mixedmode b/conf/intel/portage/make.conf.amd64-mixedmode index 0961dbe..2b06174 100644 --- a/conf/intel/portage/make.conf.amd64-mixedmode +++ b/conf/intel/portage/make.conf.amd64-mixedmode @@ -2,8 +2,8 @@ FEATURES="parallel-fetch protect-owned candy buildpkg compressdebug splitdebug -userpriv" EMERGE_DEFAULT_OPTS="${EMERGE_DEFAULT_OPTS} --getbinpkg --rebuilt-binaries" +## PORTAGE CONFIG ## source /etc/portage/global.conf/abi.conf -source /etc/portage/global.conf/binhost.conf source /etc/portage/global.conf/cflags.conf source /etc/portage/global.conf/cpuflags.conf source /etc/portage/global.conf/devices.conf @@ -17,3 +17,10 @@ source /etc/portage/global.conf/python.conf source /etc/portage/global.conf/qemu.conf source /etc/portage/global.conf/ruby.conf source /etc/portage/global.conf/useflags.conf + +## MIRROR CONFIG ## +if [[ -f /etc/sisyphus/mirrors.conf ]] ; then + source /etc/sisyphus/mirrors.conf +else + source /etc/portage/global.conf/binhost.conf +fi diff --git a/conf/intel/portage/make.conf.amd64-srcmode b/conf/intel/portage/make.conf.amd64-srcmode index d00e308..3deaa10 100644 --- a/conf/intel/portage/make.conf.amd64-srcmode +++ b/conf/intel/portage/make.conf.amd64-srcmode @@ -1,8 +1,8 @@ ## PORTAGE FEATURES ## FEATURES="parallel-fetch protect-owned candy buildpkg compressdebug splitdebug -userpriv" +## PORTAGE CONFIG ## source /etc/portage/global.conf/abi.conf -source /etc/portage/global.conf/binhost.conf source /etc/portage/global.conf/cflags.conf source /etc/portage/global.conf/cpuflags.conf source /etc/portage/global.conf/devices.conf @@ -16,3 +16,10 @@ source /etc/portage/global.conf/python.conf source /etc/portage/global.conf/qemu.conf source /etc/portage/global.conf/ruby.conf source /etc/portage/global.conf/useflags.conf + +## MIRROR CONFIG ## +if [[ -f /etc/sisyphus/mirrors.conf ]] ; then + source /etc/sisyphus/mirrors.conf +else + source /etc/portage/global.conf/binhost.conf +fi |