summaryrefslogtreecommitdiff
path: root/lang/tcl-itcl
AgeCommit message (Collapse)AuthorFilesLines
2001-12-23Update the path to the source code of the new version ofbjoern1-7/+7
Tcl and Tk
2001-12-15Modify all references to PKGSRCDIR to _PKGSRCDIR, except in the externalagc1-5/+5
references of the pkglint package. _PKGSRCDIR is an internal definition in bsd.pkg.mk, and a few packages which would like to refer to other packages in the build tree. It should not be set by users, but neither should it stop a user from building a package if it is defined, so make it obvious that this is the case.
2001-11-01Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-10-17Get rid of BUILD_ROOT and replace it with PKGSRCDIR (which was therehubertf1-5/+5
before!)
2001-05-01Don't use the tcl or tk stub libraries. Thanks to Nick Hudson for pointingjtb5-23/+107
out the problem.
2001-05-01Make it build by providing the source to tcl and tk at build time.jtb2-8/+31
Similar to what Nick Hudson did for tcl-tclX.
2001-04-19Move to sha1 digests, and add distfile sizes.agc1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-13/+11
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-02-23Initial import of tcl-itcl. Package submitted by Mark Daviesjtb13-0/+717
<mark@MCS.VUW.AC.NZ> in PR pkg/12060. Some minor adjustments by me. [incr Tcl] provides the extra language support needed to build large Tcl/Tk applications. It introduces the notion of objects, which act as building blocks for an application. Each object is a bag of data with a set of procedures or "methods" that are used to manipulate it. Objects are organized into "classes" with identical characteristics, and classes can inherit functionality from one another. This object-oriented paradigm adds another level of organization on top of the basic variable/procedure elements, and the resulting code is easier to understand and maintain.