summaryrefslogtreecommitdiff
path: root/lang/tcl-itcl/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-5/+5
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-10-26Update tcl-itcl to 3.2.1, a bug fix release.minskim1-24/+10
Also switch to Tcl/Tk 8.4.
2005-09-28Removed trailing white-space.rillig1-2/+2
2005-05-25Ensure that configure finds ar.kristerw1-1/+2
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-2/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-24add a conflicts with tcl-itcl-currentdmcmahill1-1/+3
2004-05-12- Rename tabset.n and watch.n to avoid conflicts with x11/blt.minskim1-17/+17
- Bl3ify. Tcl/Tk distfiles are not needed any more. Installed header files are used instead. - Enable pkgviews installation. Bump PKGREVISION due to PLIST changes.
2004-03-08Enable tk84 and replace x11/tk with x11/tk83. Packages compatibleminskim1-4/+4
with 8.4 will be updated to depend on x11/tk after Tk update.
2004-03-08Replace lang/tcl with lang/tcl83. Packages compatible with 8.4 willminskim1-4/+4
be updated to depend on lang/tcl after Tcl/Tk update.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2002-10-25Use buildlink2, and fix PLIST.wiz1-4/+4
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-10-17Get rid of BUILD_ROOT and replace it with PKGSRCDIR (which was therehubertf1-5/+5
before!)
2001-05-01Make it build by providing the source to tcl and tk at build time.jtb1-1/+24
Similar to what Nick Hudson did for tcl-tclX.
2001-02-23Initial import of tcl-itcl. Package submitted by Mark Daviesjtb1-0/+19
<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.