diff options
author | mm <mm@FreeBSD.org> | 2007-05-31 21:41:18 +0800 |
---|---|---|
committer | mm <mm@FreeBSD.org> | 2007-05-31 21:41:18 +0800 |
commit | bfc1ae63300b9dd26a6954c94432195b2b41211f (patch) | |
tree | 4ae681435dd1e1c2fc3becea0d0cde57f068376f /lang | |
parent | 246b1d59db56cd863db49e1bebfd6c853e18c198 (diff) | |
download | freebsd-ports-gnome-bfc1ae63300b9dd26a6954c94432195b2b41211f.tar.gz freebsd-ports-gnome-bfc1ae63300b9dd26a6954c94432195b2b41211f.tar.zst freebsd-ports-gnome-bfc1ae63300b9dd26a6954c94432195b2b41211f.zip |
Remove port: tcl-tk-wrapper - obsolete (replaced by tcl-wrapper and
tk-wrapper)
Diffstat (limited to 'lang')
-rw-r--r-- | lang/Makefile | 1 | ||||
-rw-r--r-- | lang/tcl-tk-wrapper/Makefile | 36 | ||||
-rw-r--r-- | lang/tcl-tk-wrapper/files/pkg-message.in | 13 | ||||
-rw-r--r-- | lang/tcl-tk-wrapper/files/tclsh.in | 31 | ||||
-rw-r--r-- | lang/tcl-tk-wrapper/files/tcltk.conf.sample.in | 17 | ||||
-rw-r--r-- | lang/tcl-tk-wrapper/files/wish.in | 31 | ||||
-rw-r--r-- | lang/tcl-tk-wrapper/pkg-descr | 12 |
7 files changed, 0 insertions, 141 deletions
diff --git a/lang/Makefile b/lang/Makefile index f695ef11f62d..9180429fa4a8 100644 --- a/lang/Makefile +++ b/lang/Makefile @@ -304,7 +304,6 @@ SUBDIR += sxm SUBDIR += t3x SUBDIR += tcl-manual - SUBDIR += tcl-tk-wrapper SUBDIR += tcl-wrapper SUBDIR += tcl80 SUBDIR += tcl82 diff --git a/lang/tcl-tk-wrapper/Makefile b/lang/tcl-tk-wrapper/Makefile deleted file mode 100644 index 01235e4e8a55..000000000000 --- a/lang/tcl-tk-wrapper/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# Ports collection makefile for: tcl-tk-wrapper -# Date created: 4 March 2007 -# Whom: Martin Matuska <mm@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= wrapper -PORTVERSION= 1.0 -CATEGORIES= lang tcl84 tk84 -MASTER_SITES= # empty -PKGNAMEPREFIX= tcl-tk- -DISTFILES= # none -EXTRACT_ONLY= # empty - -MAINTAINER= mm@FreeBSD.org -COMMENT= Shell wrapper for tclsh and wish (Tcl/Tk) - -NO_BUILD= yes - -TCLTK_CONF= ${PREFIX}/etc/tcltk.conf - -SUB_FILES= tclsh wish tcltk.conf.sample pkg-message -SUB_LIST+= ECHO_CMD="${ECHO_CMD}" GREP="${GREP}" LS="${LS}" \ - TCLTK_CONF="${TCLTK_CONF}" -PLIST_FILES= bin/tclsh bin/wish etc/tcltk.conf.sample - -do-install: - ${INSTALL_SCRIPT} ${WRKDIR}/tclsh ${PREFIX}/bin/tclsh - ${INSTALL_SCRIPT} ${WRKDIR}/wish ${PREFIX}/bin/wish - ${INSTALL_DATA} ${WRKDIR}/tcltk.conf.sample ${PREFIX}/etc/tcltk.conf.sample - -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/lang/tcl-tk-wrapper/files/pkg-message.in b/lang/tcl-tk-wrapper/files/pkg-message.in deleted file mode 100644 index 8eaf8a7cec78..000000000000 --- a/lang/tcl-tk-wrapper/files/pkg-message.in +++ /dev/null @@ -1,13 +0,0 @@ -******************************************************************* -Tcl is required to use the "tclsh" wrapper. -Recommended ports: lang/tcl84 lang/tcl85 - -Tk is required to use the "wish" wrapper. -Recommended ports: x11-toolkits/tk84 x11-toolkits/tk85 - -You may wish to create or modify the configuration file: -%%TCLTK_CONF%% - -Sample configuration file is located at: -%%PREFIX%%/etc/tcltk.conf.sample -******************************************************************* diff --git a/lang/tcl-tk-wrapper/files/tclsh.in b/lang/tcl-tk-wrapper/files/tclsh.in deleted file mode 100644 index 429c4cca974e..000000000000 --- a/lang/tcl-tk-wrapper/files/tclsh.in +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# $FreeBSD$ -# -# Wrapper for the tcl shell "tclsh" - -TCLSH= -TCLTK_CONF=%%TCLTK_CONF%% - -if [ -f "${TCLTK_CONF}" ]; then - . ${TCLTK_CONF} - if [ -n "${TCLSH}" ]; then - if [ -x "${TCLSH}" ]; then - exec ${TCLSH} "$@" - else - %%ECHO_CMD%% "File not found or not executable: ${TCLSH}" - %%ECHO_CMD%% "Please check variable TCLSH in: ${TCLTK_CONF}" - fi - else - %%ECHO_CMD%% "You do not have set path to default tclsh in the configuration file:" - %%ECHO_CMD%% "%%TCLTK_CONF%%" - %%ECHO_CMD%% "Please see the sample configuration file for details:" - %%ECHO_CMD%% "%%TCLTK_CONF%%.sample" - fi - %%ECHO_CMD%% "" - %%ECHO_CMD%% "You may need a tcl shell installed to use this wrapper from ports like:" - %%ECHO_CMD%% "lang/tcl84 or lang/tcl85" -else - %%ECHO_CMD%% "Configuration file not found: %%TCLTK_CONF%%" - %%ECHO_CMD%% "Please see the sample configuration file for details:" - %%ECHO_CMD%% "%%TCLTK_CONF%%.sample" -fi diff --git a/lang/tcl-tk-wrapper/files/tcltk.conf.sample.in b/lang/tcl-tk-wrapper/files/tcltk.conf.sample.in deleted file mode 100644 index feba8f11df2e..000000000000 --- a/lang/tcl-tk-wrapper/files/tcltk.conf.sample.in +++ /dev/null @@ -1,17 +0,0 @@ -# This is a sample configuration file for tcltk.conf -# Targets for "tclsh" and "wish" shell wrappers are configured here. -# Please copy this file to: %%TCLTK_CONF%% -# -# You require tcl installed to use the "tclsh" wrapper -# Recommended tcl ports: lang/tcl84 lang/tcl85 -# -# You require tk installed to use the "wish" wrapper -# Recommended tk ports: x11-toolkits/tk84 x11-toolkits/tk85 - -# TCLSH= full path to your tclsh shell -#TCLSH=%%PREFIX%%/bin/tclsh8.4 -#TCLSH=%%PREFIX%%/bin/tclsh8.5 - -# WISH= full path to your wish shell -#WISH=%%PREFIX%%/bin/wish8.4 -#WISH=%%PREFIX%%/bin/wish8.5 diff --git a/lang/tcl-tk-wrapper/files/wish.in b/lang/tcl-tk-wrapper/files/wish.in deleted file mode 100644 index f7c09398a997..000000000000 --- a/lang/tcl-tk-wrapper/files/wish.in +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# $FreeBSD$ -# -# Wrapper for the tk shell "wish" - -WISH= -TCLTK_CONF=%%TCLTK_CONF%% - -if [ -f "${TCLTK_CONF}" ]; then - . ${TCLTK_CONF} - if [ -n "${WISH}" ]; then - if [ -x "${WISH}" ]; then - exec ${WISH} "$@" - else - %%ECHO_CMD%% "File not found or not executable: ${WISH}" - %%ECHO_CMD%% "Please check variable WISH in: ${TCLTK_CONF}" - fi - else - %%ECHO_CMD%% "Path to default wish shell is not set in the configuration file:" - %%ECHO_CMD%% "%%TCLTK_CONF%%" - %%ECHO_CMD%% "Please see the sample configuration file for details:" - %%ECHO_CMD%% "%%TCLTK_CONF%%.sample" - fi - %%ECHO_CMD%% "" - %%ECHO_CMD%% "You may need a wish shell installed to use this wrapper from ports like:" - %%ECHO_CMD%% "x11-toolkits/tk84 or x11-toolkits/tk85" -else - %%ECHO_CMD%% "Configuration file not found: %%TCLTK_CONF%%" - %%ECHO_CMD%% "Please see the sample configuration file for details:" - %%ECHO_CMD%% "%%TCLTK_CONF%%.sample" -fi diff --git a/lang/tcl-tk-wrapper/pkg-descr b/lang/tcl-tk-wrapper/pkg-descr deleted file mode 100644 index fe10675e098a..000000000000 --- a/lang/tcl-tk-wrapper/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -Tcl-tk-wrapper installs shell wrappers for "tclsh" and "wish" commands that -come with different versions of tcl and tk. Users can define which version -of the tcl and tk shells should be called. - -To make use of the "tclsh" wrapper, users need to install tcl. -Recommended tcl ports: lang/tcl84 lang/tcl85 - -To make use of the "wish" wrapper, users need to install tk. -Recommended tk ports: x11-toolkits/tk84 x11-toolkits/tk85 - -- Martin Matuska -mm@FreeBSD.org |