blob: ac1ff3fa96404e48f0ed8ec5ab4e1afd23a85b7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/usr/bin/env bash
export local portagedir="/usr/portage"
export local confdir="/etc/portage"
export local gitdir="/opt/kogaion-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/kogaion/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-devel "$confdir"/make.conf
eselect profile set 1
env-update
. /etc/profile
}
main() {
fetch_devmode_portage_tree
set_devmode_portage_tree
}
main
|