summaryrefslogtreecommitdiff
path: root/mixedmode
diff options
context:
space:
mode:
Diffstat (limited to 'mixedmode')
-rwxr-xr-xmixedmode30
1 files changed, 30 insertions, 0 deletions
diff --git a/mixedmode b/mixedmode
new file mode 100755
index 0000000..fab1bc2
--- /dev/null
+++ b/mixedmode
@@ -0,0 +1,30 @@
+#!/usr/bin/env bash
+
+export local portagedir="/usr/portage"
+export local confdir="/etc/portage"
+export local gitdir="/opt/redcore-build/conf/intel/portage"
+
+fetch_devmode_portage_tree() {
+ if [[ ! -d "$portagedir"/.git ]] ; then
+ cd "$portagedir" && git init > /dev/null 2>&1
+ git remote add origin https://gitlab.com/redcore/portage.git
+ git pull --depth=1 origin master
+ git branch -u origin/master master
+ rm -rf ""$portagedir"/profiles/updates"
+ fi
+}
+
+set_devmode_portage_tree() {
+ ln -sf "$gitdir" "$confdir"
+ ln -sf "$confdir"/make.conf.amd64-mixedmode "$confdir"/make.conf
+ eselect profile set 1
+ env-update
+ . /etc/profile
+}
+
+main() {
+ fetch_devmode_portage_tree
+ set_devmode_portage_tree
+}
+
+main