NOTICE: This package has been removed from pkgsrc

./lang/tcl-itcl-current, [incr Tcl] object-oriented extension to Tcl/Tk. CVS snapshot

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 20040920nb5, Package name: tcl-itcl-current-20040920nb5, Maintainer: pkgsrc-users

[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.

This package is based on CVS sources for [incr Tcl].


Required to run:
[lang/tcl] [x11/tk]

Required to build:
[pkgtools/x11-links] [devel/autoconf] [devel/libtool-base]

Master sites: (Expand)

SHA1: 469d8df8d7b506e7d175eb5a15fe68b5a60e95c6
RMD160: 3c992eb5aba9f1e8d21d57b854fe782d0e2ca1f5
Filesize: 1107.368 KB

Version history: (Expand)


CVS history: (Expand)


   2012-10-02 22:11:57 by Aleksej Saushev | Files touched by this commit (187)
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
   2012-08-22 01:49:27 by John Marino | Files touched by this commit (90)
Log message:
Recursive PKGREVISION bump for tcl and tk upgrade to 8.5.12
   2012-05-07 03:54:16 by David A. Holland | Files touched by this commit (473)
Log message:
Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=)
It turns out there were a lot of these.
   2010-02-11 14:58:05 by Joerg Sonnenberger | Files touched by this commit (1)
Log message:
Redo DESTDIR support
   2010-02-04 02:32:00 by Joerg Sonnenberger | Files touched by this commit (1)
Log message:
DESTDIR support
   2009-10-08 01:58:51 by Dan McMahill | Files touched by this commit (1)
Log message:
Get this to build again on NetBSD-5.0/i386.  The build was being tripped
up by a configure script generated by a newer autoconf calling a configure
script generated by an old autoconf in an incompatible way.
   2009-06-14 20:03:45 by Joerg Sonnenberger | Files touched by this commit (167)
Log message:
Remove @dirrm entries from PLISTs
   2009-03-20 20:25:55 by Joerg Sonnenberger | Files touched by this commit (1252)
Log message:
Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.