Sophie

Sophie

distrib > Mandriva > 8.2 > i586 > media > contrib > by-pkgid > 4dabaf7ccbe522bef15f689c495b3981 > scriptlet

xmame-SDL-0.58.2-1mdk.i586.rpm

POSTIN

/bin/sh
if [ -x /usr/bin/update-menus ]; then /usr/bin/update-menus || true ; fi 

update-alternatives --install /usr/bin/xmame xmame /usr/X11R6/bin/xmame.SDL-68k 9
update-alternatives --install /usr/bin/xmame xmame /usr/X11R6/bin/xmame.SDL     10
# without the following, the group stays in default manual mode,
#  and no link is created
[ -e /usr/bin/xmame ] || update-alternatives --auto xmame

POSTUN

/bin/sh
if [ "$1" = "0" -a -x /usr/bin/update-menus ]; then /usr/bin/update-menus || true ; fi 
 
if [ "$1" = 0 ]; then
  # Remove update-alternatives entries
  update-alternatives --remove xmame /usr/X11R6/bin/xmame.SDL-68k
  update-alternatives --remove xmame /usr/X11R6/bin/xmame.SDL
  update-alternatives --auto xmame
fi