aboutsummaryrefslogtreecommitdiffstats
path: root/x11-toolkits/tk84/pkg-install.wish
diff options
context:
space:
mode:
authormiwi <miwi@FreeBSD.org>2007-03-08 22:17:27 +0800
committermiwi <miwi@FreeBSD.org>2007-03-08 22:17:27 +0800
commit78d2d076e49e55d4777d4b978c3a043cc8a4fb09 (patch)
treeba051c6db3932f4bd1ed115c25c808bf419d7394 /x11-toolkits/tk84/pkg-install.wish
parentc4944def578b138bd40a702400e001b3f2aaa712 (diff)
downloadfreebsd-ports-gnome-78d2d076e49e55d4777d4b978c3a043cc8a4fb09.tar.gz
freebsd-ports-gnome-78d2d076e49e55d4777d4b978c3a043cc8a4fb09.tar.zst
freebsd-ports-gnome-78d2d076e49e55d4777d4b978c3a043cc8a4fb09.zip
- Adds TK84_MAN and WISH_WRAPPER to OPTIONS
- Removes pseudo-installation of wish in favour of new lang/tcl-tk-wrapper port - Adds support for NO_INSTALL_MANPAGES knob - Uses USE_TCL from bsd.tcl.mk - Checks if threaded or non-threaded tcl is installed - Adds CONFLICTS between threaded and non-threaded versions - Pass maintainership to Submitter - Bump PORTREVISION PR: 110084 Submitted by: Martin Matuska <martin@matuska.org>
Diffstat (limited to 'x11-toolkits/tk84/pkg-install.wish')
-rw-r--r--x11-toolkits/tk84/pkg-install.wish32
1 files changed, 0 insertions, 32 deletions
diff --git a/x11-toolkits/tk84/pkg-install.wish b/x11-toolkits/tk84/pkg-install.wish
deleted file mode 100644
index d526f076a498..000000000000
--- a/x11-toolkits/tk84/pkg-install.wish
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-
-# The user may have a wish they want to preserve
-ver=`grep -a awieYJFnsuILOnfsYEW ${PKG_PREFIX}/bin/wish 2> /dev/null \
- | sed -e 's/.*\*\*//'`
-if [ ! -e ${PKG_PREFIX}/bin/wish ] || [ "$ver" != "" -a "$ver" -lt 001 ]
-then
- [ -f ${PKG_PREFIX}/bin/wish ] && chmod u+w ${PKG_PREFIX}/bin/wish
-
- mkdir -p ${PKG_PREFIX}/bin
- 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