summaryrefslogtreecommitdiff
path: root/itcl/iwidgets/iwidgets.tcl.in
diff options
context:
space:
mode:
authorMartin M. Hunt <hunt@redhat.com>2003-01-21 20:42:51 +0000
committerMartin M. Hunt <hunt@redhat.com>2003-01-21 20:42:51 +0000
commit5601295b75f82401817b35387a9843a18a9ae357 (patch)
treefa1af8d7a69fc5757f91d1a9130e5189e6badc3d /itcl/iwidgets/iwidgets.tcl.in
parent112d7d270bc1e8172fa502c794d7872a27ab5b77 (diff)
downloadgdb-5601295b75f82401817b35387a9843a18a9ae357.tar.gz
imported itcl 3.2.1ITCL3_2_1
Diffstat (limited to 'itcl/iwidgets/iwidgets.tcl.in')
-rw-r--r--itcl/iwidgets/iwidgets.tcl.in31
1 files changed, 31 insertions, 0 deletions
diff --git a/itcl/iwidgets/iwidgets.tcl.in b/itcl/iwidgets/iwidgets.tcl.in
new file mode 100644
index 00000000000..93098c3b6b3
--- /dev/null
+++ b/itcl/iwidgets/iwidgets.tcl.in
@@ -0,0 +1,31 @@
+#
+# iwidgets.tcl
+# ----------------------------------------------------------------------
+# Invoked automatically by [incr Tk] upon startup to initialize
+# the [incr Widgets] package.
+# ----------------------------------------------------------------------
+# AUTHOR: Mark L. Ulferts EMAIL: mulferts@spd.dsccc.com
+#
+# @(#) $Id$
+# ----------------------------------------------------------------------
+# Copyright (c) 1995 Mark L. Ulferts
+# ======================================================================
+# See the file "license.terms" for information on usage and
+# redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
+
+package require Tcl 8.0
+package require Tk 8.0
+package require Itcl @ITCL_VERSION@
+package require Itk @ITCL_VERSION@
+
+namespace eval ::iwidgets {
+ namespace export *
+
+ variable library [file dirname [info script]]
+ variable version @VERSION@
+}
+
+lappend auto_path $iwidgets::library \
+ [file join $iwidgets::library generic] \
+ [file join $iwidgets::library scripts]
+package provide Iwidgets $iwidgets::version