#!/bin/sh

case "$1" in
    remove|purge)
	release=$(lsb_release -c -s)
	RMBLDS="`cat /usr/share/mythbuntu/plugins/mythbuntu-repos.db | grep $release | cut -f 2`"
	for version in $RMBLDS
	do
		## Fixes for 0.21 and 0.22 PPA's
	        if [ "$version" = "0.21" ]; then
	          version="fixes-0.21"
	        elif [ "$version" = "0.22" ]; then
	          version="trunk-0.22"
	        elif [ "$version" = "0.24.x" ]; then
	          version="0.24"
	        fi
		apt-add-repository -r -y ppa:mythbuntu/$version || true
	done
	apt-add-repository -r -y ppa:mythbuntu/testing || true
    apt-add-repository -r -y ppa:mythbuntu/xmltv || true
	;;
esac

#DEBHELPER#

