packagens.n
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1998-2000 by Scriptics Corporation.
  3. '" All rights reserved.
  4. '" 
  5. '" RCS: @(#) $Id: packagens.n,v 1.4 2002/07/01 18:24:39 jenglish Exp $
  6. '" 
  7. .so man.macros
  8. .TH pkg::create n 8.3 Tcl "Tcl Built-In Commands"
  9. .BS
  10. '" Note:  do not modify the .SH NAME line immediately below!
  11. .SH NAME
  12. pkg::create - Construct an appropriate fBpackage ifneededfR
  13. command for a given package specification
  14. .SH SYNOPSIS
  15. fB::pkg::create fI-name packageNamefR fI-version packageVersionfR ?fI-load filespecfR? ... ?fI-source filespecfR? ...
  16. .BE
  17. .SH DESCRIPTION
  18. .PP
  19. fB::pkg::createfR is a utility procedure that is part of the standard Tcl
  20. library.  It is used to create an appropriate fBpackage ifneededfR
  21. command for a given package specification.  It can be used to construct a
  22. fBpkgIndex.tclfR file for use with the fBpackagefR mechanism.
  23. .SH OPTIONS
  24. The parameters supported are:
  25. .TP
  26. fB-namefRfIpackageNamefR
  27. This parameter specifies the name of the package.  It is required.
  28. .TP
  29. fB-versionfRfIpackageVersionfR
  30. This parameter specifies the version of the package.  It is required.
  31. .TP
  32. fB-loadfRfIfilespecfR
  33. This parameter specifies a binary library that must be loaded with the
  34. fBloadfR command.  fIfilespecfR is a list with two elements.  The
  35. first element is the name of the file to load.  The second, optional
  36. element is a list of commands supplied by loading that file.  If the
  37. list of procedures is empty or omitted, fB::pkg::createfR will
  38. set up the library for direct loading (see fBpkg_mkIndexfR).  Any
  39. number of fB-loadfR parameters may be specified.
  40. .TP
  41. fB-sourcefRfIfilespecfR
  42. This parameter is similar to the fB-loadfR parameter, except that it
  43. specifies a Tcl library that must be loaded with the
  44. fBsourcefR command.  Any number of fB-sourcefR parameters may be
  45. specified.
  46. .PP
  47. At least one fB-loadfR or fB-sourcefR parameter must be given.
  48. .SH "SEE ALSO"
  49. package(n)
  50. .SH KEYWORDS
  51. auto-load, index, package, version