diff options
author | minskim <minskim@pkgsrc.org> | 2004-03-08 23:47:44 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2004-03-08 23:47:44 +0000 |
commit | 7e0a784184c2c4abf6a9686f4a10e6e955ec3655 (patch) | |
tree | 48d588b9b6f8da3aa86d2ae16360593b5b2ccdaf /lang/tcl-otcl/Makefile | |
parent | 49d66e667c0c439e0f41d610a4e83422ce10eca5 (diff) | |
download | pkgsrc-7e0a784184c2c4abf6a9686f4a10e6e955ec3655.tar.gz |
Update tcl-otcl to 1.8 and take maintainership.
Changes:
* Define macros CONST84 and CONST84_RETURN in otcl.h
* Change char* to CONST84 char* (or CONST84_RETRUN char * if it is a
function return) in otcl.c
* test hangs for lib/test.tcl (autoload), see comments in lib/test.tcl
Diffstat (limited to 'lang/tcl-otcl/Makefile')
-rw-r--r-- | lang/tcl-otcl/Makefile | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/lang/tcl-otcl/Makefile b/lang/tcl-otcl/Makefile index a298f5cc0aa..838fb2a22f5 100644 --- a/lang/tcl-otcl/Makefile +++ b/lang/tcl-otcl/Makefile @@ -1,18 +1,19 @@ -# $NetBSD: Makefile,v 1.8 2004/03/08 20:27:14 minskim Exp $ +# $NetBSD: Makefile,v 1.9 2004/03/08 23:47:44 minskim Exp $ -DISTNAME= otcl-1.0a8 -PKGNAME= tcl-${DISTNAME:S/a/rc/} -PKGREVISION= 2 +DISTNAME= otcl-1.8 +PKGNAME= tcl-${DISTNAME} CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=otcl-tclcl/} -MAINTAINER= tech-pkg@NetBSD.org +MAINTAINER= minskim@NetBSD.org HOMEPAGE= http://otcl-tclcl.sourceforge.net/otcl/ COMMENT= MIT Object Tcl +PKG_INSTALLATION_TYPES= overwrite pkgviews + +USE_BUILDLINK3= yes GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_BUILDLINK2= yes USE_X11= yes CONFIGURE_ARGS+= --with-tcl=${BUILDLINK_PREFIX.tcl} @@ -26,6 +27,11 @@ DOCS= otcl-paper.ps.gz HTMLDOCDIR= ${PREFIX}/share/doc/html/tcl/otcl DOCDIR= ${PREFIX}/share/doc/tcl/otcl +INSTALLATION_DIRS= bin include lib + +.include "../../lang/tcl/buildlink3.mk" +.include "../../x11/tk/buildlink3.mk" + post-install: ${INSTALL_DATA_DIR} ${HTMLDOCDIR} ${INSTALL_DATA_DIR} ${DOCDIR} @@ -36,5 +42,4 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/doc/${_file_} ${DOCDIR} .endfor -.include "../../x11/tk83/buildlink2.mk" .include "../../mk/bsd.pkg.mk" |