aboutsummaryrefslogtreecommitdiff
path: root/lang/tcl84/pkg-install.tclsh
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2007-03-08 14:00:58 +0000
committerMartin Wilke <miwi@FreeBSD.org>2007-03-08 14:00:58 +0000
commitbcf60e8ba355bfbed3501bba3783b458db5a7957 (patch)
tree0bd15df8298fdd3a023459980b38be0149d17231 /lang/tcl84/pkg-install.tclsh
parent92bc0115f83db9ee001ddf4c55f3038e864d061c (diff)
- Ddds TCL84_MAN and TCLSH_WRAPPER to OPTIONS
- Removes pseudo-installation of tclsh in favour of new lang/tcl-tk-wrapper port - Adds CONFLICTS between threaded and non-threaded versions - Adds support for NO_INSTALL_MANPAGES knob - Pass maintainership to Submitter PR: 110082 Submitted by: Martin Matuska <martin@matuska.org>
Notes
Notes: svn path=/head/; revision=186895
Diffstat (limited to 'lang/tcl84/pkg-install.tclsh')
-rw-r--r--lang/tcl84/pkg-install.tclsh35
1 files changed, 0 insertions, 35 deletions
diff --git a/lang/tcl84/pkg-install.tclsh b/lang/tcl84/pkg-install.tclsh
deleted file mode 100644
index 3b808e2b500f..000000000000
--- a/lang/tcl84/pkg-install.tclsh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-
-# The user may have a tclsh they want to preserve
-ver=`grep -a awieYJFnsuILOnfsYEW ${PKG_PREFIX}/bin/tclsh 2> /dev/null \
- | sed -e 's/.*\*\*//'`
-if [ ! -e ${PKG_PREFIX}/bin/tclsh ] || [ "$ver" != "" -a "$ver" -lt 002 ]
-then
- [ -f ${PKG_PREFIX}/bin/tclsh ] && chmod u+w ${PKG_PREFIX}/bin/tclsh
-
- mkdir -p ${PKG_PREFIX}/bin
- cat > ${PKG_PREFIX}/bin/tclsh <<'EOF'
-#!/bin/sh
-# Installed by ports system. id: awieYJFnsuILOnfsYEW**002
-#
-# $FreeBSD$
-#
-
-(
-echo "In FreeBSD, tclsh is named with a version number. This is because"
-echo "different versions of tclsh are not compatible with each other and"
-echo "they can not all be called \"tclsh\"! You may need multiple versions"
-echo "installed because a given port may depend on a specific version."
-echo
-echo "On your system, tclsh is installed under at least the following names:"
-echo
-for name in $(/bin/ls $(echo $PATH | sed 's/:/ /g') 2> /dev/null | egrep '^(i?tclsh[0-9]+\.[0-9]+(\_r)?([a-z][a-z])?)|otclsh$')
-do
- echo $name
-done
-[ "$name" = "" ] && echo "No tclsh installations found, sorry."
-) 1>&2
-exit 1
-EOF
- chmod 555 ${PKG_PREFIX}/bin/tclsh
-fi