aboutsummaryrefslogtreecommitdiff
path: root/bin/pddp/pkgIndex.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'bin/pddp/pkgIndex.tcl')
-rw-r--r--bin/pddp/pkgIndex.tcl10
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/pddp/pkgIndex.tcl b/bin/pddp/pkgIndex.tcl
new file mode 100644
index 0000000..a3abe3d
--- /dev/null
+++ b/bin/pddp/pkgIndex.tcl
@@ -0,0 +1,10 @@
+proc LoadPddp { version dir } {
+ namespace eval ::pddp {}
+ set ::pddp::theVersion $version
+ set ::pddp::theDir $dir
+ source [file join $dir pddpboot.tcl]
+}
+
+set version "0.1.0.2"
+
+package ifneeded pddp $version [list LoadPddp $version $dir]