diff options
author | Tim Vanderhoek <hoek@FreeBSD.org> | 1998-07-27 21:14:50 +0000 |
---|---|---|
committer | Tim Vanderhoek <hoek@FreeBSD.org> | 1998-07-27 21:14:50 +0000 |
commit | 00505cbefa1df8a49f4931d5576ed90997ca359d (patch) | |
tree | f0d0007577705998874f7ac6805c2ce743262219 /lang/tcl80 | |
parent | a1dc260061b7e9acc2b26659debe9147205f2be6 (diff) | |
download | ports-00505cbefa1df8a49f4931d5576ed90997ca359d.tar.gz ports-00505cbefa1df8a49f4931d5576ed90997ca359d.zip |
Notes
Diffstat (limited to 'lang/tcl80')
-rw-r--r-- | lang/tcl80/Makefile | 7 | ||||
-rw-r--r-- | lang/tcl80/pkg-install.tclsh | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/lang/tcl80/Makefile b/lang/tcl80/Makefile index 6bc6fd35f089..e5ce84d0dfb1 100644 --- a/lang/tcl80/Makefile +++ b/lang/tcl80/Makefile @@ -3,7 +3,7 @@ # Date created: 19 August 1997 # Whom: jkh # -# $Id: Makefile,v 1.5 1998/03/18 00:56:08 jmz Exp $ +# $Id: Makefile,v 1.6 1998/07/03 23:06:48 steve Exp $ # DISTNAME= tcl8.0p2 @@ -32,8 +32,13 @@ pre-build: post-install: ${LDCONFIG} -m ${PREFIX}/lib +.if exists(${PKGDIR}/INSTALL.tclsh) + ${SH} ${PKGDIR}/INSTALL.tclsh +.endif test: cd ${WRKSRC} && ${MAKE} test .include <bsd.port.mk> + +PKG_ARGS+= -i ${PKGDIR}/INSTALL.tclsh diff --git a/lang/tcl80/pkg-install.tclsh b/lang/tcl80/pkg-install.tclsh new file mode 100644 index 000000000000..244df90dfdba --- /dev/null +++ b/lang/tcl80/pkg-install.tclsh @@ -0,0 +1,31 @@ +#!/bin/sh + +# The user may have a tclsh they want to preserve +if [ ! -f ${PKG_PREFIX}/bin/tclsh ] || [ \ + `grep -a awieYJFnsuILOnfsYEW ${PKG_PREFIX}/bin/tclsh | sed -e 's/.*\*\*//'` \ + -lt 001 ] +then + [ -f ${PKG_PREFIX}/bin/tclsh ] && chmod u+w ${PKG_PREFIX}/bin/tclsh + + cat > ${PKG_PREFIX}/bin/tclsh <<'EOF' +#!/bin/sh +# Installed by ports system. id: awieYJFnsuILOnfsYEW**001 + +( +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 '^tclsh[0-9]+\.[0-9]+([a-z][a-z])?$') +do + echo $name +done +[ "$name" = "" ] && echo "No tclsh installations found, sorry." +) 1>&2 +exit 1 +EOF + chmod a+rx ${PKG_PREFIX}/bin/tclsh +fi |