diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2004-09-24 21:16:02 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2004-09-24 21:16:02 +0000 |
commit | 374f50660abe6c3813023cb2d2805bf3fc2683a8 (patch) | |
tree | ba4d6477cc4087a6423fb88e8878fb85df156325 /lang/tcl-itcl-current/Makefile | |
parent | 5d9dee37490eb82bf14e2166ba157864a242f668 (diff) | |
download | pkgsrc-374f50660abe6c3813023cb2d2805bf3fc2683a8.tar.gz |
import tcl-itcl-current-20040920. This is a snapshot from the [incr Tcl] CVS
repository. They have not made a release in years but development
has continued.
The largest item of note is this version works with tcl-8.4.
[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].
Diffstat (limited to 'lang/tcl-itcl-current/Makefile')
-rw-r--r-- | lang/tcl-itcl-current/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lang/tcl-itcl-current/Makefile b/lang/tcl-itcl-current/Makefile new file mode 100644 index 00000000000..a8761de29db --- /dev/null +++ b/lang/tcl-itcl-current/Makefile @@ -0,0 +1,28 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/09/24 21:16:02 dmcmahill Exp $ + +DISTNAME= tcl-itcl-20040920 +PKGNAME= ${DISTNAME:S/itcl/itcl-current/} +CATEGORIES= lang +MASTER_SITES= ${MASTER_SITE_LOCAL} + +MAINTAINER= tech-pkg@NetBSD.org +HOMEPAGE= http://tcltk.com/itcl/ +COMMENT= [incr Tcl] object-oriented extension to Tcl/Tk. CVS snapshot + +PKG_INSTALLATION_TYPES= overwrite pkgviews + +CONFLICTS+= tcl-itcl-[0-9]* + +WRKSRC= ${WRKDIR}/tcl-itcl-3.3 +USE_BUILDLINK3= yes +GNU_CONFIGURE= yes +USE_LIBTOOL= yes +CONFIGURE_ARGS= --with-tcl=${BUILDLINK_PREFIX.tcl}/lib \ + --with-tk=${BUILDLINK_PREFIX.tk}/lib \ + --enable-shared + +MAKE_ENV+= TCL_HEADER_DIR=${BUILDLINK_PREFIX.tcl}/include/tcl + +.include "../../lang/tcl/buildlink3.mk" +.include "../../x11/tk/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |