ea13d90a9a
The BWidget Toolkit is a high-level Widget Set for Tcl/Tk built using native Tcl/Tk 8.x namespaces. The BWidgets have a professional look&feel as in other well known Toolkits (Tix or Incr Widgets), but the concept is radically different because everything is pure Tcl/Tk. No platform dependencies, and no compiling required. The code is 100% Pure Tcl/Tk. The BWidget library was originally developed by UNIFIX Online, and released under both the GNU Public License and the Tcl license. BWidget is now maintained as a community project, hosted by Sourceforge. Scores of fixes and enhancements have been added by community developers. See the ChangeLog file for details.
26 lines
669 B
Makefile
26 lines
669 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2004/09/24 21:10:12 dmcmahill Exp $
|
|
|
|
DISTNAME= BWidget-1.7.0
|
|
PKGNAME= tk-${DISTNAME}
|
|
CATEGORIES= x11
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tcllib/}
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://tcllib.sourceforge.net/
|
|
COMMENT= High-level Widget Set for Tcl/Tk
|
|
|
|
DEPENDS+= tcl-8.4*:../../lang/tcl
|
|
DEPENDS+= tk-8.4*:../../x11/tk
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
NO_EXTRACT= YES
|
|
NO_BUILD= YES
|
|
NO_CONFIGURE= YES
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/lib/tcl
|
|
cd ${PREFIX}/lib/tcl && ${GTAR} zxpf ${DISTDIR}/${DISTFILES}
|
|
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/lib/tcl/${DISTNAME}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|