diff options
Diffstat (limited to 'usermodeset')
-rwxr-xr-x | usermodeset | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/usermodeset b/usermodeset index 6a8e925..ae4a9ec 100755 --- a/usermodeset +++ b/usermodeset @@ -1,8 +1,12 @@ #!/usr/bin/env bash +export local portagedir="/usr/portage" +export local confdir="/etc/portage" +export local gitdir="/opt/kogaion-build/conf/intel/portage" + fetch_usermode_portage_tree() { - if [[ ! -d /usr/portage/.git ]] ; then - cd /usr/portage && git init > /dev/null 2>&1 + if [[ ! -d "$portagedir"/.git ]] ; then + cd "$portagedir" && git init > /dev/null 2>&1 git remote add origin git://anongit.gentoo.org/repo/gentoo.git git config core.sparsecheckout true echo "profiles/*" >> .git/info/sparse-checkout @@ -11,13 +15,13 @@ fetch_usermode_portage_tree() { echo ".gitignore" >> .git/info/sparse-checkout git pull --depth=1 origin master git branch -u origin/master master - rm -rf /usr/portage/profiles/updates + rm -rf ""$portagedir"/profiles/updates" fi } set_usermode_portage_tree() { - ln -sf /opt/kogaion-build/conf/intel/portage /etc/portage - ln -sf /etc/portage/make.conf.amd64-user /etc/portage/make.conf + ln -sf "$gitdir" "$confdir" + ln -sf "$confdir"/make.conf.amd64-user "$confdir"/make.conf eselect profile set 1 env-update . /etc/profile |