aboutsummaryrefslogtreecommitdiffstats
path: root/lang/tcl83/pkg-deinstall.tclsh
blob: 07c6493c07cf4c3344ceff4be242778bd9cf8440 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/sh
#
# Remove the ${PREFIX}/bin/tclsh script that gets installed by INSTALL.tclsh
# if we are the last tclsh installation to be pkg_delete'd.
#
# $FreeBSD$
#

#
# Explicitly listing /usr/X11R6/bin here is debatable.
#
BINDIR="${PKG_PREFIX}/bin /usr/X11R6/bin"
TCLSH=${PKG_PREFIX}/bin/tclsh

tclshs=$(/bin/ls ${BINDIR} 2> /dev/null | \
    egrep '^i?tclsh[0-9]+\.[0-9]+([a-z][a-z])?$')

if [ "$tclshs" = "" -a -f ${TCLSH} ] && \
    (head -3 ${TCLSH} | grep awieYJFnsuILOnfsYEW) > /dev/null 2>&1
then
    rm -f ${PKG_PREFIX}/bin/tclsh
fi