From 8a135bbda0c193a88f9bbce611a6bf3148c67b96 Mon Sep 17 00:00:00 2001 From: Tim Vanderhoek Date: Mon, 27 Jul 1998 21:36:08 +0000 Subject: Install a wish script that spits-out all the various names for wish. The script handles for tclX and tkstep. This is as per several discussions on -ports. I expect one or two of the depending ports to break silently. I didn't touch the ja-ports, since INSTALL.wish might want translating? PR: bin/5894 Mention: Eivind, who wrote part of INSTALL.wish --- x11-toolkits/tk82/Makefile | 7 ++++++- x11-toolkits/tk82/pkg-install.wish | 31 +++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 x11-toolkits/tk82/pkg-install.wish (limited to 'x11-toolkits/tk82') diff --git a/x11-toolkits/tk82/Makefile b/x11-toolkits/tk82/Makefile index 22070a3e53e1..54158bd12ee9 100644 --- a/x11-toolkits/tk82/Makefile +++ b/x11-toolkits/tk82/Makefile @@ -3,7 +3,7 @@ # Date created: 19 August 1997 # Whom: jkh # -# $Id: Makefile,v 1.11 1998/07/01 10:21:02 jseger Exp $ +# $Id: Makefile,v 1.12 1998/07/12 21:07:21 jdp Exp $ # DISTNAME= tk8.1a2 @@ -23,8 +23,13 @@ CONFIGURE_ENV= PORTSDIR=${PORTSDIR} post-install: ${LDCONFIG} -m ${PREFIX}/lib +.if exists(${PORTSDIR}/x11/tk80/pkg/INSTALL.wish) + ${SH} ${PORTSDIR}/x11/tk80/pkg/INSTALL.wish +.endif test: cd ${WRKSRC}; make test .include + +PKG_ARGS+= -i ${PORTSDIR}/x11/tk80/pkg/INSTALL.wish diff --git a/x11-toolkits/tk82/pkg-install.wish b/x11-toolkits/tk82/pkg-install.wish new file mode 100644 index 000000000000..ad18109783f1 --- /dev/null +++ b/x11-toolkits/tk82/pkg-install.wish @@ -0,0 +1,31 @@ +#!/bin/sh + +# The user may have a wish they want to preserve +if [ ! -f ${PKG_PREFIX}/bin/wish ] || [ \ + `grep -a awieYJFnsuILOnfsYEW ${PKG_PREFIX}/bin/wish | sed -e 's/.*\*\*//'` \ + -lt 001 ] +then + [ -f ${PKG_PREFIX}/bin/wish ] && chmod u+w ${PKG_PREFIX}/bin/wish + + cat > ${PKG_PREFIX}/bin/wish <<'EOF' +#!/bin/sh +# Installed by ports system. id: awieYJFnsuILOnfsYEW**001 + +( +echo "In FreeBSD, wish is named with a version number. This is because" +echo "different versions of wish are not compatible with each other and" +echo "they can not all be called \"wish\"! You may need multiple versions" +echo "installed because a given port may depend on a specific version." +echo +echo "On your system, wish is installed under at least the following names:" +echo +for name in $(/bin/ls $(echo $PATH | sed 's/:/ /g') 2> /dev/null | egrep '^wish(step)?(x|([0-9]+\.[0-9]+))([a-z][a-z])?$') +do + echo $name +done +[ "$name" = "" ] && echo "No wish installations found, sorry." +) 1>&2 +exit 1 +EOF + chmod a+rx ${PKG_PREFIX}/bin/wish +fi -- cgit v1.2.3