1# pkgIndex.tcl.in --
2#
3#	The configure script will use this template to make the pkgIndex.tcl
4#	script that Tcl will use to find and load the libraries.
5#
6# Copyright (c) 2004 Gordon D. Carrie  All rights reserved.
7#
8# Licensed under the Open Software License version 2.1
9#
10# Please send feedback to user0@tkgeomap.org
11
12package ifneeded tkgeomap @PACKAGE_VERSION@ {
13    package require Tk 8
14    package require tclgeomap
15    set prefix @prefix@
16    set exec_prefix @exec_prefix@
17    set libdir @libdir@
18    load ${libdir}/@tkgeomap_LIB_FILE@
19}
20package ifneeded tkgeomap_procs @PACKAGE_VERSION@ {
21    package require tkgeomap
22    set pkglibdir $libdir/@PACKAGE_NAME@
23    source $pkglibdir/tkgeomap_procs.tcl
24}
25package ifneeded wdgeomap @PACKAGE_VERSION@ {
26    package require tkgeomap
27    set pkglibdir $libdir/@PACKAGE_NAME@
28    source $pkglibdir/wdgeomap.tcl
29}
30