Sophie

Sophie

distrib > Mandriva > 8.2 > i586 > by-pkgid > 7d8718d10ee368e61105617106658b8f > scriptlet

xmame-x11-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.x11-68k 9
update-alternatives --install /usr/bin/xmame xmame /usr/X11R6/bin/xmame.x11     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.x11-68k
  update-alternatives --remove xmame /usr/X11R6/bin/xmame.x11
  update-alternatives --auto xmame
fi