aboutsummaryrefslogtreecommitdiffstats
path: root/x11-toolkits/p5-Tcl-Tk/pkg-descr
diff options
context:
space:
mode:
Diffstat (limited to 'x11-toolkits/p5-Tcl-Tk/pkg-descr')
-rw-r--r--x11-toolkits/p5-Tcl-Tk/pkg-descr18
1 files changed, 18 insertions, 0 deletions
diff --git a/x11-toolkits/p5-Tcl-Tk/pkg-descr b/x11-toolkits/p5-Tcl-Tk/pkg-descr
new file mode 100644
index 000000000000..8c81ae0ecd4a
--- /dev/null
+++ b/x11-toolkits/p5-Tcl-Tk/pkg-descr
@@ -0,0 +1,18 @@
+ The Tcl::Tk submodule of the Tcl module gives access to
+ the Tk library. It does this by creating a Tcl
+ interpreter object (using the Tcl extension) and binding
+ in all of Tk into the interpreter (in the same way that
+ wish or other Tcl/Tk applications do).
+
+ Access to the Tcl and Tcl::Tk extensions
+
+ To get access to the Tcl and Tcl::Tk extensions, put the
+ commands
+ require Tcl;
+ use Tcl::Tk;
+
+ near the top of your program. The Tcl extension does not
+ alter your namespace at all (hence the "require"). The
+ Tcl::Tk extension imports the widget and other Tk commands
+ into your namespace (hence the "use").
+