#!/bin/sh

chk_me=`whoami | grep root`
if [ "$chk_me.x" == ".x" ]; then
    echo "Need root priviledge to update Pkg(s)."
    exit
fi

for i in phonon_backend_vlc kdnssd kwallet ; do
    removepkg $i
done

for i in *txz ; do
    updatepkg -f $i
done

