summaryrefslogtreecommitdiff
path: root/uninstall812.sh
diff options
context:
space:
mode:
Diffstat (limited to 'uninstall812.sh')
-rwxr-xr-xuninstall812.sh40
1 files changed, 40 insertions, 0 deletions
diff --git a/uninstall812.sh b/uninstall812.sh
new file mode 100755
index 0000000..1ff0489
--- /dev/null
+++ b/uninstall812.sh
@@ -0,0 +1,40 @@
+FUSION="linux-fusion-8.1.2"
+DIRECTFB="DirectFB-1.4.1"
+SAWMAN="SaWMan-1.4.1"
+DIVINE="DiVine-0.4.0"
+FUSIONDALE="FusionDale-0.8.1"
+
+cd Source
+tar xfvz $FUSION.tar.gz
+tar xfvz $DIRECTFB.tar.gz
+tar xfvz $SAWMAN.tar.gz
+tar xfvz $DIVINE.tar.gz
+tar xfvz $FUSIONDALE.tar.gz
+cd $SAWMAN
+patch -p1 < ../sawman.patch
+./configure --prefix=/usr
+make uninstall
+cd ..
+cd $FUSIONDALE
+patch -p1 < ../fusiondale.patch
+./configure --prefix=/usr
+make uninstall
+cd ..
+cd $DIVINE
+patch -p1 < ../divine.patch
+./configure --prefix=/usr
+make uninstall
+cd ..
+cd $DIRECTFB
+patch -p1 < ../directfb.patch
+./configure --prefix=/usr --enable-voodoo --with-gfxdrivers=none --enable-multi
+make uninstall
+cd ..
+cd $FUSION
+patch -p1 < ../linux-fusion_8.1.2.patch
+make uninstall
+cd ..
+cd ..
+rm -rf /usr/etc/directfbrc*
+
+