diff options
author | tron <tron> | 1999-06-07 22:45:48 +0000 |
---|---|---|
committer | tron <tron> | 1999-06-07 22:45:48 +0000 |
commit | 910bbf77812851ab5dd938b1ba6ebe2085c29456 (patch) | |
tree | 35593ebfaf53faed92773cc9fbb2ed9ff43b3161 /graphics/tkpiechart | |
parent | 4ed4ca0848914f2f50146b296c006534326ce002 (diff) | |
download | pkgsrc-910bbf77812851ab5dd938b1ba6ebe2085c29456.tar.gz |
New "tkpiechart" package based on work contributed by Greg A. Woods in
PR pkg/6905:
A Tcl/Tk pie-chart utility; in Tcl, not as an extension.
Diffstat (limited to 'graphics/tkpiechart')
-rw-r--r-- | graphics/tkpiechart/Makefile | 20 | ||||
-rw-r--r-- | graphics/tkpiechart/files/md5 | 3 | ||||
-rw-r--r-- | graphics/tkpiechart/patches/patch-aa | 12 | ||||
-rw-r--r-- | graphics/tkpiechart/patches/patch-ab | 12 | ||||
-rw-r--r-- | graphics/tkpiechart/pkg/COMMENT | 1 | ||||
-rw-r--r-- | graphics/tkpiechart/pkg/DESCR | 25 | ||||
-rw-r--r-- | graphics/tkpiechart/pkg/PLIST | 12 |
7 files changed, 85 insertions, 0 deletions
diff --git a/graphics/tkpiechart/Makefile b/graphics/tkpiechart/Makefile new file mode 100644 index 00000000000..42688d1741f --- /dev/null +++ b/graphics/tkpiechart/Makefile @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1.1.1 1999/06/07 22:45:48 tron Exp $ + +DISTNAME= tkpiechart-5.3 +CATEGORIES= graphics +MASTER_SITES= http://www.multimania.com/jfontain/ + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://www.mygale.org/~jfontain/ + +DEPENDS+= tk-8.0.5:../../x11/tk80 +DEPENDS+= stooop-3.7:../../devel/stooop + +NO_CONFIGURE= yes +NO_BUILD= yes + +do-install: + ${MKDIR} ${PREFIX}/lib/tkpiechart + cd ${WRKSRC}; ./instapkg.tcl ${PREFIX}/lib/tkpiechart + +.include "../../mk/bsd.pkg.mk" diff --git a/graphics/tkpiechart/files/md5 b/graphics/tkpiechart/files/md5 new file mode 100644 index 00000000000..f4ceb957f2d --- /dev/null +++ b/graphics/tkpiechart/files/md5 @@ -0,0 +1,3 @@ +$NetBSD: md5,v 1.1.1.1 1999/06/07 22:45:49 tron Exp $ + +MD5 (tkpiechart-5.3.tar.gz) = 07ceff1b7f198da6f6e3fad92a7d80c8 diff --git a/graphics/tkpiechart/patches/patch-aa b/graphics/tkpiechart/patches/patch-aa new file mode 100644 index 00000000000..f69af23517c --- /dev/null +++ b/graphics/tkpiechart/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.1.1.1 1999/06/07 22:45:49 tron Exp $ + +--- instapkg.tcl.orig Tue Jun 8 00:38:40 1999 ++++ instapkg.tcl Tue Jun 8 00:38:59 1999 +@@ -1,6 +1,6 @@ + #!/bin/sh + # the next line restarts using the interpreter \ +-exec tclsh "$0" "$@" ++exec tclsh8.0 "$0" "$@" + + # $Id: patch-aa,v 1.1.1.1 1999/06/07 22:45:49 tron Exp $ + diff --git a/graphics/tkpiechart/patches/patch-ab b/graphics/tkpiechart/patches/patch-ab new file mode 100644 index 00000000000..4fbfbb42a3e --- /dev/null +++ b/graphics/tkpiechart/patches/patch-ab @@ -0,0 +1,12 @@ +$NetBSD: patch-ab,v 1.1.1.1 1999/06/07 22:45:49 tron Exp $ + +--- source.tcl.orig Tue Jun 8 00:38:54 1999 ++++ source.tcl Tue Jun 8 00:38:11 1999 +@@ -1,6 +1,6 @@ + #!/bin/sh + # the next line restarts using the interpreter \ +-exec tclsh "$0" "$@" ++exec tclsh8.0 "$0" "$@" + + set rcsId {$Id: patch-ab,v 1.1.1.1 1999/06/07 22:45:49 tron Exp $} + diff --git a/graphics/tkpiechart/pkg/COMMENT b/graphics/tkpiechart/pkg/COMMENT new file mode 100644 index 00000000000..b2a75678b9a --- /dev/null +++ b/graphics/tkpiechart/pkg/COMMENT @@ -0,0 +1 @@ +A Tcl/Tk pie-chart utility; in Tcl, not as an extension. diff --git a/graphics/tkpiechart/pkg/DESCR b/graphics/tkpiechart/pkg/DESCR new file mode 100644 index 00000000000..e86cdea088b --- /dev/null +++ b/graphics/tkpiechart/pkg/DESCR @@ -0,0 +1,25 @@ +Some people have asked for a Tcl/Tk pie utility: so here is my little +implementation with Tcl, not as an extension. + +This is version 3.0.2. It was tested with Tcl8.0/Tk8.0 and the +netscape plug-in 2.0b3 or above. + +It is object oriented using the stooop (Simple Tcl Only Object +Oriented Programming) extension (version 3.0 or above, tcl file +included). + +If you have netscape with the Tcl plug-in installed, just Open File... +demo.tcl and voila! + +Run the demo script to see what it looks like, read the man pages to +understand how to use it. + +Whether you like it (or hate it), please let me know. I would like to +hear about bugs and improvements you would like to see. I will correct +the bugs quickly, especially if you send me a test script. + +If you find a bug in the Tcl code and correct it yourself, please +email the modified code so I can include it in the next release. The +same goes for improvements. + +Jean-Luc Fontaine (mailto:jfontain@mygale.org) diff --git a/graphics/tkpiechart/pkg/PLIST b/graphics/tkpiechart/pkg/PLIST new file mode 100644 index 00000000000..ddf40178e6a --- /dev/null +++ b/graphics/tkpiechart/pkg/PLIST @@ -0,0 +1,12 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 1999/06/07 22:45:49 tron Exp $ +lib/tkpiechart/boxlabel.tcl +lib/tkpiechart/canlabel.tcl +lib/tkpiechart/labarray.tcl +lib/tkpiechart/objselec.tcl +lib/tkpiechart/perilabel.tcl +lib/tkpiechart/pie.tcl +lib/tkpiechart/pielabel.tcl +lib/tkpiechart/pkgIndex.tcl +lib/tkpiechart/selector.tcl +lib/tkpiechart/slice.tcl +@dirrm lib/tkpiechart |