diff options
author | hoek <hoek@FreeBSD.org> | 1998-07-28 05:14:50 +0800 |
---|---|---|
committer | hoek <hoek@FreeBSD.org> | 1998-07-28 05:14:50 +0800 |
commit | b8968b217b3ff6b20550c28fe8baf53415049535 (patch) | |
tree | d72391087b0f27f1b44626ebf63df772c8843645 /lang/tcl84/Makefile | |
parent | d9a8378ffc6de213bd9281274c86d25cb5335e52 (diff) | |
download | freebsd-ports-gnome-b8968b217b3ff6b20550c28fe8baf53415049535.tar.gz freebsd-ports-gnome-b8968b217b3ff6b20550c28fe8baf53415049535.tar.zst freebsd-ports-gnome-b8968b217b3ff6b20550c28fe8baf53415049535.zip |
Install a "tclsh" script that spits-out a list of the real tclsh's, as
discussed many times on -ports. I expect that a few of the dependencies
will break silently.
I didn't touch ja-tcl (etc.) since the tclsh message should perhaps
be translated?
PR: ports/5894
Mention: Eivind (a first shot at a tclsh script)
Diffstat (limited to 'lang/tcl84/Makefile')
-rw-r--r-- | lang/tcl84/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lang/tcl84/Makefile b/lang/tcl84/Makefile index ec87b60f5440..e3651a2e407f 100644 --- a/lang/tcl84/Makefile +++ b/lang/tcl84/Makefile @@ -3,7 +3,7 @@ # Date created: 19 August 1997 # Whom: jkh # -# $Id: Makefile,v 1.8 1998/07/01 10:20:59 jseger Exp $ +# $Id: Makefile,v 1.9 1998/07/04 17:29:15 jdp Exp $ # DISTNAME= tcl8.1a2 @@ -21,8 +21,13 @@ CONFIGURE_ENV= PORTSDIR=${PORTSDIR} post-install: ${LDCONFIG} -m ${PREFIX}/lib +.if exists(${PORTSDIR}/lang/tcl80/pkg/INSTALL.tclsh) + ${SH} ${PORTSDIR}/lang/tcl80/pkg/INSTALL.tclsh +.endif test: cd ${WRKSRC} && ${MAKE} test .include <bsd.port.mk> + +PKG_ARGS+= -i ${PORTSDIR}/lang/tcl80/pkg/INSTALL.tclsh |