diff options
author | agc <agc@pkgsrc.org> | 2006-01-21 08:12:03 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2006-01-21 08:12:03 +0000 |
commit | 315be02ac1f64e37eae03ae0977515ed1795efe7 (patch) | |
tree | 5f72c91777711d1f081baaca10a2246bb36c95e8 /devel/vtcl/Makefile | |
parent | 863c8a3454a72c1910710fd50dc65ed67146f5cf (diff) | |
download | pkgsrc-315be02ac1f64e37eae03ae0977515ed1795efe7.tar.gz |
Initial import of vtcl 1.6.0, a tcl development environment, into the
Packages Collection.
This package was provided by Stephen Borrill.
Visual Tcl is a freely-available, high-quality application development
environment for UNIX, Windows, Macintosh and AS400 platforms. Visual Tcl is
written entirely in Tcl/Tk and generates pure Tcl/Tk code. This makes
porting your Visual Tcl applications either unnecessary or trivial. Visual
Tcl is covered by the GNU General Public License.
Features
- 100% pure Tcl/Tk. No external libraries required.
- Extensible widget and geometry manager support.
- Create compound widgets and widget libraries.
- GUI interface for most aspects of Tcl/Tk development.
- Support for user images and fonts in your project.
- Imports pre-existing Tcl/Tk code.
- Built-in support for widget toolkits including: [incr Widgets], BLT, TkTable
- Visual Tcl features new ready-to-use widgets: combo box, multicolumn
listbox, progress bar
- Predefined compounds available including scrolled text, scrolled listbox,
scrolled canvas, horizontal and vertical splitters
- Exports Tclets which run in Netscape/MSIE.
- Support for freewrap. Generate binaries for Windows or Linux.
Diffstat (limited to 'devel/vtcl/Makefile')
-rw-r--r-- | devel/vtcl/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/devel/vtcl/Makefile b/devel/vtcl/Makefile new file mode 100644 index 00000000000..f7088067d3c --- /dev/null +++ b/devel/vtcl/Makefile @@ -0,0 +1,34 @@ +# $NetBSD: Makefile,v 1.1.1.1 2006/01/21 08:12:03 agc Exp $ + +DISTNAME= vtcl-1.6.0 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=vtcl/} + +MAINTAINER= tech-pkg@NetBSD.org +HOMEPAGE= http://vtcl.sourceforge.net/ +COMMENT= Visual Tcl/Tk application development environment + +HAS_CONFIGURE= yes +NO_BUILD= yes + +VTCLDIR= ${PREFIX}/lib/vtcl +VTCLDOCDIR= ${PREFIX}/share/doc/vtcl +VTCLEGDIR= ${PREFIX}/share/examples/vtcl + +CONFIGURE_ARGS+= --libdir ${VTCLDIR} + +do-install: + ${INSTALL_SCRIPT_DIR} ${PREFIX}/bin + ${INSTALL_SCRIPT_DIR} ${VTCLDIR} + ${INSTALL_SCRIPT_DIR} ${VTCLDOCDIR} + ${INSTALL_SCRIPT_DIR} ${VTCLEGDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/vtcl ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/vtcl.tcl ${VTCLDIR} + cd ${WRKSRC} && ${PAX} -rwpam lib ${VTCLDIR} + cd ${WRKSRC} && ${PAX} -rwpam images ${VTCLDIR} + cd ${WRKSRC} && ${PAX} -rwpam doc ${VTCLDOCDIR} + cd ${WRKSRC} && ${PAX} -rwpam demo ${VTCLEGDIR} + cd ${WRKSRC} && ${PAX} -rwpam sample ${VTCLEGDIR} + +.include "options.mk" +.include "../../mk/bsd.pkg.mk" |