openbsd-ports/lang/python/2.1/pkg/DEINSTALL-idle
sturm 68a978a26f new packages -gdbm (GNU DBM support) and -idle (split from -tools)
from new maintainer Aleksander Piotrowski
<aleksander dot piotrowski at nic dot com dot pl>

more to come
2003-12-13 15:03:07 +00:00

17 lines
263 B
Bash

#!/bin/sh
#
# $OpenBSD: DEINSTALL-idle,v 1.1 2003/12/13 15:03:08 sturm Exp $
#
# Clean up python symlink, if it was ours.
#
set -e
PATH=/bin
PREFIX=${PKG_PREFIX:-/usr/local}
if [ ${PREFIX}/bin/idle -ef ${PREFIX}/bin/idle2.1 ]
then
rm -f ${PREFIX}/bin/idle
fi