mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
23 lines
546 B
Plaintext
23 lines
546 B
Plaintext
|
#! /bin/sh
|
||
|
#
|
||
|
# Remove the ${PREFIX}/bin/wish script that gets installed by INSTALL.wish
|
||
|
# if we are the last wish installation to be pkg_delete'd.
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
#
|
||
|
# Explicitly listing /usr/X11R6/bin here is debatable.
|
||
|
#
|
||
|
BINDIR="${PKG_PREFIX}/bin /usr/X11R6/bin"
|
||
|
WISH=${PKG_PREFIX}/bin/wish
|
||
|
|
||
|
wishes=$(/bin/ls ${BINDIR} 2> /dev/null | \
|
||
|
egrep '^o?wish(step)?(x|([0-9]+\.[0-9]+))([a-z][a-z])?$')
|
||
|
|
||
|
if [ "$wishes" = "" -a -f ${WISH} ] && \
|
||
|
(head -3 ${WISH} | grep awieYJFnsuILOnfsYEW) > /dev/null 2>&1
|
||
|
then
|
||
|
rm -f ${PKG_PREFIX}/bin/wish
|
||
|
fi
|