315be02ac1
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.
34 lines
1,021 B
Makefile
34 lines
1,021 B
Makefile
# $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"
|