Mon Mar 1 09:48:40 2021 UTC ()
ivtools: update to 2.0.4a1

Changes: builds again;

August 22nd 2020 ivtools-2.0.3

* add Golang style "%v" format descriptor to comterp print func.

July 5th 2020 ivtools-2.0.2

* Change priority of "$$" (stream) operator to line up with other stream operators (i.e. ".." and "**").

June 30th 2020 ivtools-2.0.1

* Fix nested user defined funcs in comterp (the func() command).

* Change isalpha(), isdigit(), and isspace() funcs to return 0 or 1
  (instead of the bitmask which is returned for C).

* Add comterp_run utility script for hands-free launching of comterp scripts.
  Write scripts with this header:

   #! /usr/bin/env comterp_run

* Add csvfilt comterp script as an example of using comterp_run.
  After installing both try "csvfilt --help".

June 21st 2020 ivtools-2.0.0

Non-backward compatible changes from ivtools-1.2.11:

* Swap "$$" and "$" operators in comterp.  The "$$" operator is now stream() (which matches
  the other double-character stream operators - "..", "**", and ",,") and "$" is now list().

* Reverse the priority of ".." (iterate()) and "**" (repeat()), giving ".." precedence over "**".
  The reason is because ".." is more complex than "**", like multiplication is more complex than
  addition.

* Remove symmax() and symcnt() commands because they were redundant with symid() which accepts
  :max and :cnt keywords.

Other changes;

* remove patches directory, sourceforge102203.xml, aclocal.m4, README.cygwin, README.ivmkcm, and comtop.tgz

* migrated all CHANGES-* files to a CHANGES directory


(nia)
diff -r1.33 -r1.34 pkgsrc/graphics/ivtools/Makefile
diff -r1.12 -r1.13 pkgsrc/graphics/ivtools/PLIST
diff -r1.26 -r1.27 pkgsrc/graphics/ivtools/distinfo
diff -r0 -r1.1 pkgsrc/graphics/ivtools/patches/patch-Makefile.am
diff -r0 -r1.1 pkgsrc/graphics/ivtools/patches/patch-src_ComTerp_iofunc.cc
diff -r0 -r1.1 pkgsrc/graphics/ivtools/patches/patch-src_ComUtil_comutil.h
diff -r1.1.1.1 -r0 pkgsrc/graphics/ivtools/patches/patch-aa
diff -r1.5 -r0 pkgsrc/graphics/ivtools/patches/patch-ab
diff -r1.4 -r0 pkgsrc/graphics/ivtools/patches/patch-ac
diff -r1.4 -r0 pkgsrc/graphics/ivtools/patches/patch-aj
diff -r1.4 -r0 pkgsrc/graphics/ivtools/patches/patch-ak
diff -r1.4 -r0 pkgsrc/graphics/ivtools/patches/patch-al
diff -r1.4 -r0 pkgsrc/graphics/ivtools/patches/patch-am
diff -r1.4 -r0 pkgsrc/graphics/ivtools/patches/patch-an
diff -r1.4 -r0 pkgsrc/graphics/ivtools/patches/patch-ao
diff -r1.4 -r0 pkgsrc/graphics/ivtools/patches/patch-ap
diff -r1.4 -r0 pkgsrc/graphics/ivtools/patches/patch-aq
diff -r1.4 -r0 pkgsrc/graphics/ivtools/patches/patch-as
diff -r1.4 -r0 pkgsrc/graphics/ivtools/patches/patch-at
diff -r1.4 -r0 pkgsrc/graphics/ivtools/patches/patch-bd
diff -r1.7 -r0 pkgsrc/graphics/ivtools/patches/patch-ad
diff -r1.3 -r0 pkgsrc/graphics/ivtools/patches/patch-ae
diff -r1.3 -r0 pkgsrc/graphics/ivtools/patches/patch-af
diff -r1.3 -r0 pkgsrc/graphics/ivtools/patches/patch-ag
diff -r1.3 -r0 pkgsrc/graphics/ivtools/patches/patch-ah
diff -r1.3 -r0 pkgsrc/graphics/ivtools/patches/patch-ai
diff -r1.3 -r0 pkgsrc/graphics/ivtools/patches/patch-ar
diff -r1.2 -r0 pkgsrc/graphics/ivtools/patches/patch-au
diff -r1.2 -r0 pkgsrc/graphics/ivtools/patches/patch-av
diff -r1.2 -r0 pkgsrc/graphics/ivtools/patches/patch-aw
diff -r1.2 -r0 pkgsrc/graphics/ivtools/patches/patch-ax
diff -r1.2 -r0 pkgsrc/graphics/ivtools/patches/patch-ay
diff -r1.2 -r0 pkgsrc/graphics/ivtools/patches/patch-az
diff -r1.2 -r0 pkgsrc/graphics/ivtools/patches/patch-ba
diff -r1.2 -r0 pkgsrc/graphics/ivtools/patches/patch-bb
diff -r1.2 -r0 pkgsrc/graphics/ivtools/patches/patch-be
diff -r1.1 -r0 pkgsrc/graphics/ivtools/patches/patch-bc
diff -r1.1 -r0 pkgsrc/graphics/ivtools/patches/patch-bf
diff -r1.1 -r0 pkgsrc/graphics/ivtools/patches/patch-bg
diff -r1.1 -r0 pkgsrc/graphics/ivtools/patches/patch-bh
diff -r1.1 -r0 pkgsrc/graphics/ivtools/patches/patch-bi
diff -r1.1 -r0 pkgsrc/graphics/ivtools/patches/patch-bj
diff -r1.1 -r0 pkgsrc/graphics/ivtools/patches/patch-bk
diff -r1.1 -r0 pkgsrc/graphics/ivtools/patches/patch-bl
diff -r1.1 -r0 pkgsrc/graphics/ivtools/patches/patch-src_Attribute_attrvalue.h
diff -r1.1 -r0 pkgsrc/graphics/ivtools/patches/patch-src_ComUtil_comutil.arg
diff -r1.1 -r0 pkgsrc/graphics/ivtools/patches/patch-src_ComUtil_symbols.c
diff -r1.1 -r0 pkgsrc/graphics/ivtools/patches/patch-src_glyphs_strchooser_main.c
diff -r1.1 -r0 pkgsrc/graphics/ivtools/patches/patch-src_tests_y2k_y2ktest.cc

cvs diff -r1.33 -r1.34 pkgsrc/graphics/ivtools/Makefile (expand / switch to unified diff)

--- pkgsrc/graphics/ivtools/Makefile 2017/08/16 20:45:39 1.33
+++ pkgsrc/graphics/ivtools/Makefile 2021/03/01 09:48:40 1.34
@@ -1,41 +1,51 @@ @@ -1,41 +1,51 @@
1# $NetBSD: Makefile,v 1.33 2017/08/16 20:45:39 wiz Exp $ 1# $NetBSD: Makefile,v 1.34 2021/03/01 09:48:40 nia Exp $
2 2
3DISTNAME= ivtools-1.2.8 3DISTNAME= ivtools-2.0.4a1
4PKGREVISION= 4 
5CATEGORIES= graphics 4CATEGORIES= graphics
6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ivtools/} 5MASTER_SITES= ${MASTER_SITE_GITHUB:=vectaport/}
7EXTRACT_SUFX= .tgz 6GITHUB_PROJECT= ivtools
 7GITHUB_TAG= ${DISTNAME}
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10#HOMEPAGE= http://www.ivtools.org/ivtools/ 10HOMEPAGE= http://ivtools.sourceforge.net/ivtools/index.html
11COMMENT= Drawing editors for PostScript, TeX, and web graphics 11COMMENT= Drawing editors for PostScript, TeX, and web graphics
 12LICENSE= modified-bsd # close enough
12 13
13CONFLICTS+= dclock-[0-9]* 14CONFLICTS+= dclock-[0-9]*
14 15
15DEPENDS+= pstoedit>=3.0:../../graphics/pstoedit 16DEPENDS+= ghostscript-fonts-[0-9]*:../../fonts/ghostscript-fonts
16 17
 18WRKSRC= ${WRKDIR}/${GITHUB_PROJECT}-${GITHUB_TAG}
17USE_LANGUAGES= c c++ 19USE_LANGUAGES= c c++
18USE_TOOLS+= imake bash:run wget:run tar 20USE_TOOLS+= autoconf automake autoreconf
 21USE_TOOLS+= gmake bash:run
 22USE_LIBTOOL= yes
 23GNU_CONFIGURE= yes
 24
 25REPLACE_BASH+= src/scripts/comterp_run.bash
 26REPLACE_BASH+= src/scripts/ivgetjpg.bash
 27REPLACE_BASH+= src/scripts/ivtiftopnm.bash
 28
 29REPLACE_INTERPRETER+= comterp
 30REPLACE.comterp.old= /usr/bin/env comterp_run
 31REPLACE.comterp.new= ${PREFIX}/bin/comterp_run
 32REPLACE_FILES.comterp= src/scripts/csvfilt
 33
 34SUBST_CLASSES+= gsf
 35SUBST_STAGE.gsf= pre-configure
 36SUBST_MESSAGE.gsf= Correcting the path to Ghostscript fonts.
 37SUBST_FILES.gsf+= configure.ac
 38SUBST_SED.gsf+= -e "s,/usr/share/ghostscript/fonts,${PREFIX}/share/ghostscript/fonts,g"
 39
 40CONFIGURE_ARGS= --with-tiff=${BUILDLINK_PREFIX.tiff}
 41CONFIGURE_ARGS+= --without-ace
 42CONFIGURE_ARGS+= --without-clippoly
19 43
20REPLACE_BASH+= src/scripts/ivgetjpg.bash src/scripts/ivtiftopnm.bash 44pre-configure:
21 45 cd ${WRKSRC} && autoreconf -fi
22WRKSRC= ${WRKDIR}/ivtools-1.2 
23GNU_CONFIGURE= YES 
24CONFIGURE_ARGS= --with-tiff=${BUILDLINK_PREFIX.tiff} 
25 
26post-patch: 
27 ${RM} -f ${WRKSRC}/src/include/ivstd/strstream.h 
28 ${TOUCH} ${WRKSRC}/config/dragonfly-gcc.mk 
29 
30pre-install: 
31 ${RM} -f ${WRKSRC}/config/local.def.orig 
32 ${RM} -f ${WRKSRC}/config/params.def.orig 
33 ${RM} -f ${WRKSRC}/config/rules.def.orig 
34 ${RM} -f ${WRKSRC}/config/site.def.*.orig 
35 ${RM} -f ${WRKSRC}/config/arch.def.orig 
36 46
37.include "../../graphics/tiff/buildlink3.mk" 47.include "../../graphics/tiff/buildlink3.mk"
38.include "../../x11/libX11/buildlink3.mk" 48.include "../../x11/libX11/buildlink3.mk"
39.include "../../x11/libXext/buildlink3.mk" 49.include "../../x11/libXext/buildlink3.mk"
40.include "../../x11/libXt/buildlink3.mk" 50.include "../../x11/libXt/buildlink3.mk"
41.include "../../mk/bsd.pkg.mk" 51.include "../../mk/bsd.pkg.mk"

cvs diff -r1.12 -r1.13 pkgsrc/graphics/ivtools/PLIST (expand / switch to unified diff)

--- pkgsrc/graphics/ivtools/PLIST 2014/12/25 05:10:38 1.12
+++ pkgsrc/graphics/ivtools/PLIST 2021/03/01 09:48:40 1.13
@@ -1,34 +1,34 @@ @@ -1,34 +1,34 @@
1@comment $NetBSD: PLIST,v 1.12 2014/12/25 05:10:38 obache Exp $ 1@comment $NetBSD: PLIST,v 1.13 2021/03/01 09:48:40 nia Exp $
2bin/comdraw 2bin/comdraw
3bin/comterp 3bin/comterp
 4bin/comterp_run
4bin/comtest 5bin/comtest
 6bin/csvfilt
5bin/dclock 7bin/dclock
6bin/drawserv 8bin/drawserv
7bin/drawtool 9bin/drawtool
8bin/flipbook 10bin/flipbook
9bin/gclock 11bin/gclock
10bin/glyphterp 12bin/glyphterp
11bin/graphdraw 13bin/graphdraw
12bin/iclass 14bin/iclass
13bin/idemo 15bin/idemo
14bin/idraw 16bin/idraw
15bin/ivgetjpg 
16bin/ivmkmf 
17bin/ivtext 17bin/ivtext
18bin/ivtiftopnm 
19bin/ivtmpnam 
20bin/pnmtopgm 18bin/pnmtopgm
21bin/stdcmapppm 19bin/stdcmapppm
 20include/AceDispatch/ace_dispatcher.h
 21include/AceDispatch/ace_iohandler.h
22include/AttrGlyph/attredit.h 22include/AttrGlyph/attredit.h
23include/Attribute/_comterp.h 23include/Attribute/_comterp.h
24include/Attribute/_comutil.h 24include/Attribute/_comutil.h
25include/Attribute/alist.h 25include/Attribute/alist.h
26include/Attribute/aliterator.h 26include/Attribute/aliterator.h
27include/Attribute/attribute.h 27include/Attribute/attribute.h
28include/Attribute/attrlist.h 28include/Attribute/attrlist.h
29include/Attribute/attrvalue.h 29include/Attribute/attrvalue.h
30include/Attribute/classid.h 30include/Attribute/classid.h
31include/Attribute/commodule.h 31include/Attribute/commodule.h
32include/Attribute/lexscan.h 32include/Attribute/lexscan.h
33include/Attribute/paramlist.h 33include/Attribute/paramlist.h
34include/ComGlyph/attrdialog.h 34include/ComGlyph/attrdialog.h
@@ -48,33 +48,35 @@ include/ComTerp/commodule.h @@ -48,33 +48,35 @@ include/ComTerp/commodule.h
48include/ComTerp/comterp.h 48include/ComTerp/comterp.h
49include/ComTerp/comterpserv.h 49include/ComTerp/comterpserv.h
50include/ComTerp/comvalue.h 50include/ComTerp/comvalue.h
51include/ComTerp/condfunc.h 51include/ComTerp/condfunc.h
52include/ComTerp/ctrlfunc.h 52include/ComTerp/ctrlfunc.h
53include/ComTerp/debugfunc.h 53include/ComTerp/debugfunc.h
54include/ComTerp/dotfunc.h 54include/ComTerp/dotfunc.h
55include/ComTerp/helpfunc.h 55include/ComTerp/helpfunc.h
56include/ComTerp/iofunc.h 56include/ComTerp/iofunc.h
57include/ComTerp/lexscan.h 57include/ComTerp/lexscan.h
58include/ComTerp/listfunc.h 58include/ComTerp/listfunc.h
59include/ComTerp/mathfunc.h 59include/ComTerp/mathfunc.h
60include/ComTerp/numfunc.h 60include/ComTerp/numfunc.h
 61include/ComTerp/parsefunc.h
61include/ComTerp/parser.h 62include/ComTerp/parser.h
62include/ComTerp/postfunc.h 63include/ComTerp/postfunc.h
63include/ComTerp/randfunc.h 64include/ComTerp/randfunc.h
64include/ComTerp/scanner.h 65include/ComTerp/scanner.h
65include/ComTerp/statfunc.h 66include/ComTerp/statfunc.h
66include/ComTerp/strmfunc.h 67include/ComTerp/strmfunc.h
67include/ComTerp/symbolfunc.h 68include/ComTerp/symbolfunc.h
 69include/ComTerp/timefunc.h
68include/ComTerp/typefunc.h 70include/ComTerp/typefunc.h
69include/ComTerp/xformfunc.h 71include/ComTerp/xformfunc.h
70include/ComUnidraw/comeditor.h 72include/ComUnidraw/comeditor.h
71include/ComUnidraw/comterp-acehandler.h 73include/ComUnidraw/comterp-acehandler.h
72include/ComUnidraw/comterp-iohandler.h 74include/ComUnidraw/comterp-iohandler.h
73include/ComUnidraw/dialogfunc.h 75include/ComUnidraw/dialogfunc.h
74include/ComUnidraw/grdotfunc.h 76include/ComUnidraw/grdotfunc.h
75include/ComUnidraw/grfunc.h 77include/ComUnidraw/grfunc.h
76include/ComUnidraw/grlistfunc.h 78include/ComUnidraw/grlistfunc.h
77include/ComUnidraw/groupfunc.h 79include/ComUnidraw/groupfunc.h
78include/ComUnidraw/grstatfunc.h 80include/ComUnidraw/grstatfunc.h
79include/ComUnidraw/highlightfunc.h 81include/ComUnidraw/highlightfunc.h
80include/ComUnidraw/nfunc.h 82include/ComUnidraw/nfunc.h
@@ -140,26 +142,27 @@ include/FrameUnidraw/frameps.h @@ -140,26 +142,27 @@ include/FrameUnidraw/frameps.h
140include/FrameUnidraw/framescripts.h 142include/FrameUnidraw/framescripts.h
141include/FrameUnidraw/framestates.h 143include/FrameUnidraw/framestates.h
142include/FrameUnidraw/frameviewer.h 144include/FrameUnidraw/frameviewer.h
143include/FrameUnidraw/frameviews.h 145include/FrameUnidraw/frameviews.h
144include/GraphUnidraw/edgecomp.h 146include/GraphUnidraw/edgecomp.h
145include/GraphUnidraw/graphcatalog.h 147include/GraphUnidraw/graphcatalog.h
146include/GraphUnidraw/graphclasses.h 148include/GraphUnidraw/graphclasses.h
147include/GraphUnidraw/graphcmds.h 149include/GraphUnidraw/graphcmds.h
148include/GraphUnidraw/graphcomp.h 150include/GraphUnidraw/graphcomp.h
149include/GraphUnidraw/graphcreator.h 151include/GraphUnidraw/graphcreator.h
150include/GraphUnidraw/graphdata.h 152include/GraphUnidraw/graphdata.h
151include/GraphUnidraw/graphdialog.h 153include/GraphUnidraw/graphdialog.h
152include/GraphUnidraw/grapheditor.h 154include/GraphUnidraw/grapheditor.h
 155include/GraphUnidraw/graphexport.h
153include/GraphUnidraw/graphimport.h 156include/GraphUnidraw/graphimport.h
154include/GraphUnidraw/graphkit.h 157include/GraphUnidraw/graphkit.h
155include/GraphUnidraw/graphtools.h 158include/GraphUnidraw/graphtools.h
156include/GraphUnidraw/nodecomp.h 159include/GraphUnidraw/nodecomp.h
157include/IV-2_6/InterViews/adjuster.h 160include/IV-2_6/InterViews/adjuster.h
158include/IV-2_6/InterViews/alignment.h 161include/IV-2_6/InterViews/alignment.h
159include/IV-2_6/InterViews/banner.h 162include/IV-2_6/InterViews/banner.h
160include/IV-2_6/InterViews/border.h 163include/IV-2_6/InterViews/border.h
161include/IV-2_6/InterViews/box.h 164include/IV-2_6/InterViews/box.h
162include/IV-2_6/InterViews/button.h 165include/IV-2_6/InterViews/button.h
163include/IV-2_6/InterViews/compeditor.h 166include/IV-2_6/InterViews/compeditor.h
164include/IV-2_6/InterViews/control.h 167include/IV-2_6/InterViews/control.h
165include/IV-2_6/InterViews/deck.h 168include/IV-2_6/InterViews/deck.h
@@ -195,27 +198,26 @@ include/IV-2_6/InterViews/strbrowser.h @@ -195,27 +198,26 @@ include/IV-2_6/InterViews/strbrowser.h
195include/IV-2_6/InterViews/strchooser.h 198include/IV-2_6/InterViews/strchooser.h
196include/IV-2_6/InterViews/streditor.h 199include/IV-2_6/InterViews/streditor.h
197include/IV-2_6/InterViews/subject.h 200include/IV-2_6/InterViews/subject.h
198include/IV-2_6/InterViews/textbuffer.h 201include/IV-2_6/InterViews/textbuffer.h
199include/IV-2_6/InterViews/textdisplay.h 202include/IV-2_6/InterViews/textdisplay.h
200include/IV-2_6/InterViews/texteditor.h 203include/IV-2_6/InterViews/texteditor.h
201include/IV-2_6/InterViews/textstyle.h 204include/IV-2_6/InterViews/textstyle.h
202include/IV-2_6/InterViews/tray.h 205include/IV-2_6/InterViews/tray.h
203include/IV-2_6/InterViews/viewport.h 206include/IV-2_6/InterViews/viewport.h
204include/IV-2_6/InterViews/world.h 207include/IV-2_6/InterViews/world.h
205include/IV-2_6/_enter.h 208include/IV-2_6/_enter.h
206include/IV-2_6/_leave.h 209include/IV-2_6/_leave.h
207include/IV-2_6/_names.h 210include/IV-2_6/_names.h
208include/IV-3_1/InterViews 
209include/IV-X11/Xdefs.h 211include/IV-X11/Xdefs.h
210include/IV-X11/Xext.h 212include/IV-X11/Xext.h
211include/IV-X11/Xlib.h 213include/IV-X11/Xlib.h
212include/IV-X11/Xundefs.h 214include/IV-X11/Xundefs.h
213include/IV-X11/Xutil.h 215include/IV-X11/Xutil.h
214include/IV-X11/xbitmap.h 216include/IV-X11/xbitmap.h
215include/IV-X11/xbrush.h 217include/IV-X11/xbrush.h
216include/IV-X11/xcanvas.h 218include/IV-X11/xcanvas.h
217include/IV-X11/xcolor.h 219include/IV-X11/xcolor.h
218include/IV-X11/xcursor.h 220include/IV-X11/xcursor.h
219include/IV-X11/xdisplay.h 221include/IV-X11/xdisplay.h
220include/IV-X11/xdrag.h 222include/IV-X11/xdrag.h
221include/IV-X11/xevent.h 223include/IV-X11/xevent.h
@@ -264,26 +266,27 @@ include/IVGlyph/odialogs.h @@ -264,26 +266,27 @@ include/IVGlyph/odialogs.h
264include/IVGlyph/ofilechooser.h 266include/IVGlyph/ofilechooser.h
265include/IVGlyph/printchooser.h 267include/IVGlyph/printchooser.h
266include/IVGlyph/saveaschooser.h 268include/IVGlyph/saveaschooser.h
267include/IVGlyph/scrollable.h 269include/IVGlyph/scrollable.h
268include/IVGlyph/strchooser.h 270include/IVGlyph/strchooser.h
269include/IVGlyph/stredit.h 271include/IVGlyph/stredit.h
270include/IVGlyph/strlist.h 272include/IVGlyph/strlist.h
271include/IVGlyph/textbuff.h 273include/IVGlyph/textbuff.h
272include/IVGlyph/textedit.h 274include/IVGlyph/textedit.h
273include/IVGlyph/texteditor.h 275include/IVGlyph/texteditor.h
274include/IVGlyph/textform.h 276include/IVGlyph/textform.h
275include/IVGlyph/textview.h 277include/IVGlyph/textview.h
276include/IVGlyph/textwindow.h 278include/IVGlyph/textwindow.h
 279include/IVGlyph/timeglyph.h
277include/IVGlyph/toolbutton.h 280include/IVGlyph/toolbutton.h
278include/IVGlyph/valuator.h 281include/IVGlyph/valuator.h
279include/InterViews/_defines.h 282include/InterViews/_defines.h
280include/InterViews/_enter.h 283include/InterViews/_enter.h
281include/InterViews/_leave.h 284include/InterViews/_leave.h
282include/InterViews/_names.h 285include/InterViews/_names.h
283include/InterViews/_undefs.h 286include/InterViews/_undefs.h
284include/InterViews/action.h 287include/InterViews/action.h
285include/InterViews/adjust.h 288include/InterViews/adjust.h
286include/InterViews/aggr.h 289include/InterViews/aggr.h
287include/InterViews/align.h 290include/InterViews/align.h
288include/InterViews/alloctbl.h 291include/InterViews/alloctbl.h
289include/InterViews/arraycomp.h 292include/InterViews/arraycomp.h
@@ -434,46 +437,44 @@ include/OverlayUnidraw/paramlist.h @@ -434,46 +437,44 @@ include/OverlayUnidraw/paramlist.h
434include/OverlayUnidraw/phold.h 437include/OverlayUnidraw/phold.h
435include/OverlayUnidraw/ptinpoly.h 438include/OverlayUnidraw/ptinpoly.h
436include/OverlayUnidraw/rastercmds.h 439include/OverlayUnidraw/rastercmds.h
437include/OverlayUnidraw/scriptview.h 440include/OverlayUnidraw/scriptview.h
438include/OverlayUnidraw/setattrbyexpr.h 441include/OverlayUnidraw/setattrbyexpr.h
439include/OverlayUnidraw/slctbyattr.h 442include/OverlayUnidraw/slctbyattr.h
440include/OverlayUnidraw/textfile.h 443include/OverlayUnidraw/textfile.h
441include/TIFF/format.h 444include/TIFF/format.h
442include/TIFF/tiff.h 445include/TIFF/tiff.h
443include/TIFF/tiffio.h 446include/TIFF/tiffio.h
444include/Time/Date.h 447include/Time/Date.h
445include/Time/Time_.h 448include/Time/Time_.h
446include/Time/obstime.h 449include/Time/obstime.h
447include/Time/timeglyph.h 
448include/TopoFace/fgeomobjs.h 450include/TopoFace/fgeomobjs.h
449include/TopoFace/topoedge.h 451include/TopoFace/topoedge.h
450include/TopoFace/topoedgelist.h 452include/TopoFace/topoedgelist.h
451include/TopoFace/topoelt.h 453include/TopoFace/topoelt.h
452include/TopoFace/topoface.h 454include/TopoFace/topoface.h
453include/TopoFace/toponode.h 455include/TopoFace/toponode.h
454include/UniIdraw/idarrow.h 456include/UniIdraw/idarrow.h
455include/UniIdraw/idarrowhead.h 457include/UniIdraw/idarrowhead.h
456include/UniIdraw/idarrows.h 458include/UniIdraw/idarrows.h
457include/UniIdraw/idcatalog.h 459include/UniIdraw/idcatalog.h
458include/UniIdraw/idclasses.h 460include/UniIdraw/idclasses.h
459include/UniIdraw/idcmds.h 461include/UniIdraw/idcmds.h
460include/UniIdraw/idcomp.h 462include/UniIdraw/idcomp.h
461include/UniIdraw/idcreator.h 463include/UniIdraw/idcreator.h
462include/UniIdraw/iddialogs.h 464include/UniIdraw/iddialogs.h
463include/UniIdraw/ided.h 465include/UniIdraw/ided.h
464include/UniIdraw/idkybd.h 466include/UniIdraw/idkybd.h
465include/UniIdraw/idvars.h 467include/UniIdraw/idvars.h
466include/UniIdraw/idversion.h 
467include/Unidraw/Commands/align.h 468include/Unidraw/Commands/align.h
468include/Unidraw/Commands/brushcmd.h 469include/Unidraw/Commands/brushcmd.h
469include/Unidraw/Commands/catcmds.h 470include/Unidraw/Commands/catcmds.h
470include/Unidraw/Commands/colorcmd.h 471include/Unidraw/Commands/colorcmd.h
471include/Unidraw/Commands/command.h 472include/Unidraw/Commands/command.h
472include/Unidraw/Commands/data.h 473include/Unidraw/Commands/data.h
473include/Unidraw/Commands/datas.h 474include/Unidraw/Commands/datas.h
474include/Unidraw/Commands/dirty.h 475include/Unidraw/Commands/dirty.h
475include/Unidraw/Commands/edit.h 476include/Unidraw/Commands/edit.h
476include/Unidraw/Commands/font.h 477include/Unidraw/Commands/font.h
477include/Unidraw/Commands/import.h 478include/Unidraw/Commands/import.h
478include/Unidraw/Commands/macro.h 479include/Unidraw/Commands/macro.h
479include/Unidraw/Commands/nop.h 480include/Unidraw/Commands/nop.h
@@ -557,157 +558,67 @@ include/Unidraw/stateview.h @@ -557,157 +558,67 @@ include/Unidraw/stateview.h
557include/Unidraw/stateviews.h 558include/Unidraw/stateviews.h
558include/Unidraw/transfn.h 559include/Unidraw/transfn.h
559include/Unidraw/transfns.h 560include/Unidraw/transfns.h
560include/Unidraw/uarray.h 561include/Unidraw/uarray.h
561include/Unidraw/uctrl.h 562include/Unidraw/uctrl.h
562include/Unidraw/uctrls.h 563include/Unidraw/uctrls.h
563include/Unidraw/uformat.h 564include/Unidraw/uformat.h
564include/Unidraw/uhash.h 565include/Unidraw/uhash.h
565include/Unidraw/ulist.h 566include/Unidraw/ulist.h
566include/Unidraw/umap.h 567include/Unidraw/umap.h
567include/Unidraw/unidraw.h 568include/Unidraw/unidraw.h
568include/Unidraw/upage.h 569include/Unidraw/upage.h
569include/Unidraw/viewer.h 570include/Unidraw/viewer.h
 571include/ivstd/fstream
570include/ivstd/fstream.h 572include/ivstd/fstream.h
 573include/ivstd/ignores.h
571include/ivstd/iosfwd 574include/ivstd/iosfwd
572include/ivstd/iostream.h 575include/ivstd/iostream.h
573include/ivstd/leakchecker.h 576include/ivstd/leakchecker.h
574include/ivstd/malloc.h 577include/ivstd/malloc.h
575include/ivstd/math.h 578include/ivstd/math.h
576include/ivstd/nan.h 579include/ivstd/nan.h
577include/ivstd/osfcn.h 580include/ivstd/osfcn.h
578include/ivstd/signal.h 581include/ivstd/signal.h
579include/ivstd/stdio.h 582include/ivstd/stdio.h
580include/ivstd/stdlib.h 583include/ivstd/stdlib.h
581include/ivstd/stream.h 584include/ivstd/stream.h
582include/ivstd/string.h 585include/ivstd/string.h
583include/ivstd/version.h 586lib/libAttrGlyph.la
584lib/ivtools/Idemo 587lib/libAttribute.la
585lib/ivtools/InterViews 588lib/libComGlyph.la
586lib/ivtools/comterp.err 589lib/libComTerp.la
587lib/ivtools/config/InterViews/iv-DGUX.cf 590lib/libComUnidraw.la
588lib/ivtools/config/InterViews/iv-Mips.cf 591lib/libComUtil.la
589lib/ivtools/config/InterViews/iv-aix.cf 592lib/libDrawServ.la
590lib/ivtools/config/InterViews/iv-alpha.cf 593lib/libFrameUnidraw.la
591lib/ivtools/config/InterViews/iv-apollo.cf 594lib/libGraphUnidraw.la
592lib/ivtools/config/InterViews/iv-att.cf 595lib/libIV-common.la
593lib/ivtools/config/InterViews/iv-bsd.cf 596lib/libIV.la
594lib/ivtools/config/InterViews/iv-convex.cf 597lib/libIVGlyph.la
595lib/ivtools/config/InterViews/iv-cray.cf 598lib/libOverlayUnidraw.la
596lib/ivtools/config/InterViews/iv-cygwin.cf 599lib/libTime.la
597lib/ivtools/config/InterViews/iv-darwin.cf 600lib/libTopoFace.la
598lib/ivtools/config/InterViews/iv-freebsd.cf 601lib/libUniIdraw.la
599lib/ivtools/config/InterViews/iv-generic.cf 602lib/libUnidraw-common.la
600lib/ivtools/config/InterViews/iv-hp.cf 603lib/libUnidraw.la
601lib/ivtools/config/InterViews/iv-ibm.cf 
602lib/ivtools/config/InterViews/iv-linux.cf 
603lib/ivtools/config/InterViews/iv-luna.cf 
604lib/ivtools/config/InterViews/iv-m4330.cf 
605lib/ivtools/config/InterViews/iv-macII.cf 
606lib/ivtools/config/InterViews/iv-moto.cf 
607lib/ivtools/config/InterViews/iv-netbsd.cf 
608lib/ivtools/config/InterViews/iv-pegasus.cf 
609lib/ivtools/config/InterViews/iv-sgi.cf 
610lib/ivtools/config/InterViews/iv-sony.cf 
611lib/ivtools/config/InterViews/iv-stellar.cf 
612lib/ivtools/config/InterViews/iv-stratus.cf 
613lib/ivtools/config/InterViews/iv-sun.cf 
614lib/ivtools/config/InterViews/iv-ultrix.cf 
615lib/ivtools/config/InterViews/iv-x386.cf 
616lib/ivtools/config/InterViews/xparams.cf 
617lib/ivtools/config/alpha3.0-gcc.mk 
618lib/ivtools/config/alpha3.2-gcc.mk 
619lib/ivtools/config/alpha4-gcc.mk 
620lib/ivtools/config/arch.def 
621lib/ivtools/config/config-${LOWER_OPSYS}-gcc.defs 
622lib/ivtools/config/config.defs.in 
623lib/ivtools/config/config.mk 
624lib/ivtools/config/config.null.mk 
625lib/ivtools/config/darwin-gcc.mk 
626lib/ivtools/config/default-gcc.mk 
627lib/ivtools/config/dragonfly-gcc.mk 
628lib/ivtools/config/freebsd-gcc.mk 
629lib/ivtools/config/freebsd2.1-gcc.mk 
630lib/ivtools/config/gcc.def 
631lib/ivtools/config/hpux-gcc.mk 
632lib/ivtools/config/hpux10.20-gcc.mk 
633lib/ivtools/config/irix5-gcc.mk 
634lib/ivtools/config/irix6-gcc.mk 
635lib/ivtools/config/linux-gcc.mk 
636lib/ivtools/config/local.def 
637lib/ivtools/config/m88k-sysv3-gcc.mk 
638lib/ivtools/config/m88k-sysv4-gcc.mk 
639lib/ivtools/config/makevars.def 
640lib/ivtools/config/netbsd-gcc.mk 
641lib/ivtools/config/params.def 
642lib/ivtools/config/rules.def 
643lib/ivtools/config/sco3.2.4-gcc.mk 
644lib/ivtools/config/site.def.ALPHA 
645lib/ivtools/config/site.def.CYGWIN 
646lib/ivtools/config/site.def.DARWIN 
647lib/ivtools/config/site.def.FREEBSD 
648lib/ivtools/config/site.def.HP800 
649lib/ivtools/config/site.def.LINUX 
650lib/ivtools/config/site.def.NETBSD 
651lib/ivtools/config/site.def.SGI 
652lib/ivtools/config/site.def.SUN4 
653lib/ivtools/config/solaris-gcc.mk 
654lib/ivtools/config/sunos4-gcc.mk 
655lib/ivtools/config/template 
656lib/libAttrGlyph.so 
657lib/libAttrGlyph.so.${PKGVERSION} 
658lib/libAttribute.so 
659lib/libAttribute.so.${PKGVERSION} 
660lib/libComGlyph.so 
661lib/libComGlyph.so.${PKGVERSION} 
662lib/libComTerp.so 
663lib/libComTerp.so.${PKGVERSION} 
664lib/libComUnidraw.so 
665lib/libComUnidraw.so.${PKGVERSION} 
666lib/libComUtil.so 
667lib/libComUtil.so.${PKGVERSION} 
668lib/libDrawServ.so 
669lib/libDrawServ.so.${PKGVERSION} 
670lib/libFrameUnidraw.so 
671lib/libFrameUnidraw.so.${PKGVERSION} 
672lib/libGraphUnidraw.so 
673lib/libGraphUnidraw.so.${PKGVERSION} 
674lib/libIV-common.so 
675lib/libIV-common.so.${PKGVERSION} 
676lib/libIV.so 
677lib/libIV.so.${PKGVERSION} 
678lib/libIVGlyph.so 
679lib/libIVGlyph.so.${PKGVERSION} 
680lib/libOverlayUnidraw.so 
681lib/libOverlayUnidraw.so.${PKGVERSION} 
682lib/libTime.so 
683lib/libTime.so.${PKGVERSION} 
684lib/libTopoFace.so 
685lib/libTopoFace.so.${PKGVERSION} 
686lib/libUniIdraw.so 
687lib/libUniIdraw.so.${PKGVERSION} 
688lib/libUnidraw-common.so 
689lib/libUnidraw-common.so.${PKGVERSION} 
690lib/libUnidraw.so 
691lib/libUnidraw.so.${PKGVERSION} 
692man/man1/comdraw.1 604man/man1/comdraw.1
693man/man1/comterp.1 605man/man1/comterp.1
694man/man1/dclock.1 606man/man1/dclock.1
695man/man1/drawtool.1 607man/man1/drawtool.1
696man/man1/flipbook.1 608man/man1/flipbook.1
697man/man1/graphdraw.1 609man/man1/graphdraw.1
698man/man1/iclass.1 610man/man1/iclass.1
699man/man1/idraw.1 611man/man1/idraw.1
700man/man1/ivmkmf.1 
701man/man3/Adjuster.3 612man/man3/Adjuster.3
702man/man3/Banner.3 613man/man3/Banner.3
703man/man3/BasicDialog.3 614man/man3/BasicDialog.3
704man/man3/Border.3 615man/man3/Border.3
705man/man3/Box2_6.3 616man/man3/Box2_6.3
706man/man3/BrushCmd.3 617man/man3/BrushCmd.3
707man/man3/Button2_6.3 618man/man3/Button2_6.3
708man/man3/CGlue.3 619man/man3/CGlue.3
709man/man3/CSolver.3 620man/man3/CSolver.3
710man/man3/Catalog.3 621man/man3/Catalog.3
711man/man3/Clipboard.3 622man/man3/Clipboard.3
712man/man3/ColorCmd.3 623man/man3/ColorCmd.3
713man/man3/Command.3 624man/man3/Command.3
@@ -835,13 +746,17 @@ man/man3/lines.3 @@ -835,13 +746,17 @@ man/man3/lines.3
835man/man3/manips.3 746man/man3/manips.3
836man/man3/polygons.3 747man/man3/polygons.3
837man/man3/pspaint.3 748man/man3/pspaint.3
838man/man3/rpcbuf.3 749man/man3/rpcbuf.3
839man/man3/rpcstream.3 750man/man3/rpcstream.3
840man/man3/splines.3 751man/man3/splines.3
841man/man3/statevars.3 752man/man3/statevars.3
842man/man3/stateviews.3 753man/man3/stateviews.3
843man/man3/struct.3 754man/man3/struct.3
844man/man3/transfns.3 755man/man3/transfns.3
845man/man3/transforms.3 756man/man3/transforms.3
846man/man3/uctrls.3 757man/man3/uctrls.3
847man/man3/viewcmds.3 758man/man3/viewcmds.3
 759share/doc/ivtools/refman.pdf
 760share/ivtools/Idemo
 761share/ivtools/InterViews
 762share/ivtools/comterp.err

cvs diff -r1.26 -r1.27 pkgsrc/graphics/ivtools/distinfo (expand / switch to unified diff)

--- pkgsrc/graphics/ivtools/distinfo 2015/11/03 21:34:04 1.26
+++ pkgsrc/graphics/ivtools/distinfo 2021/03/01 09:48:40 1.27
@@ -1,49 +1,9 @@ @@ -1,49 +1,9 @@
1$NetBSD: distinfo,v 1.26 2015/11/03 21:34:04 agc Exp $ 1$NetBSD: distinfo,v 1.27 2021/03/01 09:48:40 nia Exp $
2 2
3SHA1 (ivtools-1.2.8.tgz) = b494c726cf8784e0a5ca3a4092e5831d2d5b2bba 3SHA1 (ivtools-2.0.4a1.tar.gz) = 170aa24379c01be7c8127e94bc16165c0121a4d6
4RMD160 (ivtools-1.2.8.tgz) = 7f63f2b491202ba81c6d24234760d17d7f95ebc6 4RMD160 (ivtools-2.0.4a1.tar.gz) = 58a7dc87414313b5946fe6421fbc356b23890857
5SHA512 (ivtools-1.2.8.tgz) = a0d44b74f179c37b692220da01c0c45fe2582e119cbddbc9f9d600362bc8f7fe097de6e65975bafaa3e846dbbe1ed6dea64c72987bd3c4cefc3bbce3d0aec781 5SHA512 (ivtools-2.0.4a1.tar.gz) = ff1dac25b33541235faba99af3443f2eaad5e816fabd4d32045076e4dfb998b2af0821bc7325dff3a44cb182db2ed4d50a623e5926f5cf77f6c75f7c215cc3ce
6Size (ivtools-1.2.8.tgz) = 2168627 bytes 6Size (ivtools-2.0.4a1.tar.gz) = 1829957 bytes
7SHA1 (patch-aa) = 191619b7db43c47d7cc991bc33787434f0ef6948 7SHA1 (patch-Makefile.am) = 0fd573d51567569a47f74a3464947f5f39fba816
8SHA1 (patch-ab) = 4d47be6b806f76d66eb83e2f32b0507c56ae8530 8SHA1 (patch-src_ComTerp_iofunc.cc) = c87b8266e4c4d2b673de45c1f534d62269039cd4
9SHA1 (patch-ac) = 2b9b8065194dc0badcafdabe22079101416515aa 9SHA1 (patch-src_ComUtil_comutil.h) = 3f7334adbd4b9dff710a3d494175601ecd29b303
10SHA1 (patch-ad) = f5e19829367fb8d0406077934d2ccc222497b9aa 
11SHA1 (patch-ae) = 64d0b99a868baf4be3ffd55f387ee1cd4f07747e 
12SHA1 (patch-af) = de74e5bcb19c61938269a08c88e5962bbf675f76 
13SHA1 (patch-ag) = d79843a5c27f024d4cb8f804c3875de29b0ec1cc 
14SHA1 (patch-ah) = 4542d8bc5118d85b9722eb2f400dcc74930ff43c 
15SHA1 (patch-ai) = 58bdfa9afb392298365c7d5cb203818cc64f437b 
16SHA1 (patch-aj) = 46c5fa3e02e5efe252e4a38c501a4f099523759c 
17SHA1 (patch-ak) = fa6204c100c4d9ef361e0877dd141d5e84d4cb3a 
18SHA1 (patch-al) = e3f9bb775035019bd148a5d2e90e0e6e5e23d9cc 
19SHA1 (patch-am) = fdfd7321e9840540b7dc47274c8c6abb9f790a18 
20SHA1 (patch-an) = 3b825ee567274415f81676b7d3e33fac69548f78 
21SHA1 (patch-ao) = 47846766bb3678ae24cbd5c4267aff317e330944 
22SHA1 (patch-ap) = 09750f3dfa7c50f4e74dc13f8882abb086f16ba1 
23SHA1 (patch-aq) = 452a19e3bc0cb032651de538a7a5e51f8b91ea75 
24SHA1 (patch-ar) = e15757657454a1d86be2d35eb723ae66137a3d6d 
25SHA1 (patch-as) = 56b8d26d3755c186c01575b49a91600f067bb878 
26SHA1 (patch-at) = 17e959ed87ebb1f6c8d102a89caa484fc1d784c4 
27SHA1 (patch-au) = 5ed1442edda4ccb19d36be3c948cdfcb4626cec8 
28SHA1 (patch-av) = ffb971e3c77f639fc2c55e0b3a0c9a369ecc0435 
29SHA1 (patch-aw) = bd9b55dad5a445832346a7d473102f0fad8ecbcf 
30SHA1 (patch-ax) = 94ef57a62db72099ff079a0153663e9d8c43b635 
31SHA1 (patch-ay) = 587d1090ea05108e5c9048a8ae5635069f47bec8 
32SHA1 (patch-az) = ec58b1583cf750031c848d0455250226f3d54d99 
33SHA1 (patch-ba) = bcc98482672d9c1642dd108fbecec16627d43345 
34SHA1 (patch-bb) = 8221a722579cc8921cd71e9ff8aedbf73a938e0b 
35SHA1 (patch-bc) = be65c4c37689880cb66de15efd27ab2fa77d76d0 
36SHA1 (patch-bd) = faf9683d941c342eb1ce70fff541e9b8f2034ba1 
37SHA1 (patch-be) = 11e770cd4288556ccd161afb86434591bb8c9e68 
38SHA1 (patch-bf) = 60e8f16226e526e75da80652aaeb11b7f51c30a9 
39SHA1 (patch-bg) = 36113051de323a5483337b4821ffa1a8163f59bf 
40SHA1 (patch-bh) = dcd30d0096d8a13bdd2e5db2eb5eace3b010ba56 
41SHA1 (patch-bi) = 477ce54baeb05a4c383c26af696ce18c07085e60 
42SHA1 (patch-bj) = d262c3a217b8f7838a08d6a0952417aeb3e525dd 
43SHA1 (patch-bk) = 96edb15971da782c78fc2dd177bce5869cb68201 
44SHA1 (patch-bl) = 807a2b860184e990fbf5afcebf4a161c4c614741 
45SHA1 (patch-src_Attribute_attrvalue.h) = 97be293d03aa7f9da5e0ca90580d91a33e43d418 
46SHA1 (patch-src_ComUtil_comutil.arg) = 8e36309f9f0f357f8f55572788595417de549ccf 
47SHA1 (patch-src_ComUtil_symbols.c) = 69e7c2bc4f9863bc0d3c9ae5e9b97550619cfe16 
48SHA1 (patch-src_glyphs_strchooser_main.c) = 7cd91aaaba73d412bb0d41d5030f0c956e3ef000 
49SHA1 (patch-src_tests_y2k_y2ktest.cc) = ef1b1d3d20031b3d769152e2896b656aa716abfd 

File Added: pkgsrc/graphics/ivtools/patches/patch-Makefile.am
$NetBSD: patch-Makefile.am,v 1.1 2021/03/01 09:48:40 nia Exp $

_POSIX_C_SOURCE=200112L or higher is needed for strdup.

--- Makefile.am.orig	2020-10-10 13:03:09.000000000 +0000
+++ Makefile.am
@@ -436,7 +436,7 @@ src/ComUtil/symbols.cc src/ComUtil/txtut
 src/ComUtil/util.cc src/ComUtil/xdll.cc
 
 libComUtil_la_CPPFLAGS = \
- -D_POSIX_C_SOURCE $(IVSTD_INCLUDES)
+ -D_POSIX_C_SOURCE=200112L $(IVSTD_INCLUDES)
 
 libComUtilPART1_la_SOURCES = src/ComUtil/errsys.cc
 
@@ -447,7 +447,7 @@ libComUtilPART1_la_SOURCES = src/ComUtil
 libComUtilPART1_la_CPPFLAGS = \
  -DABSLIBALLDIR=\"$(pkgdatadir)/\" \
  -DRELLIBALLDIR=\"lib/$(PACKAGE)/\" \
- -D_POSIX_C_SOURCE $(IVSTD_INCLUDES)
+ -D_POSIX_C_SOURCE=200112L $(IVSTD_INCLUDES)
 
 # NOTE: inconsistency in whether ABSLIBALLDIR has a trailing slash
 

File Added: pkgsrc/graphics/ivtools/patches/patch-src_ComTerp_iofunc.cc
$NetBSD: patch-src_ComTerp_iofunc.cc,v 1.1 2021/03/01 09:48:40 nia Exp $

Fix building without HAVE_ACE:
SocketObj is only defined if HAVE_ACE.

--- src/ComTerp/iofunc.cc.orig	2020-10-10 13:03:09.000000000 +0000
+++ src/ComTerp/iofunc.cc
@@ -441,11 +441,13 @@ void CloseFileFunc::execute() {
     pipeobj->close();
     return;
   }
+#ifdef HAVE_ACE
   if (objv.is_socketobj()) {
     SocketObj *sockobj = (SocketObj*)objv.geta(SocketObj::class_symid());
     sockobj->close();
     return;
   }
+#endif
 }
 
 /*****************************************************************************/

File Added: pkgsrc/graphics/ivtools/patches/patch-src_ComUtil_comutil.h
$NetBSD: patch-src_ComUtil_comutil.h,v 1.1 2021/03/01 09:48:40 nia Exp $

Include <sys/types.h> for the use of pid_t in the subsequently included
header.

--- src/ComUtil/comutil.h.orig	2020-10-10 13:03:09.000000000 +0000
+++ src/ComUtil/comutil.h
@@ -139,6 +139,7 @@ struct _dmmwalk {
 
 /* Package function prototypes */
 #if !defined(OSK)
+#include <sys/types.h>
 #include <ComUtil/comutil.arg>
 #endif
 

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-aa

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-ab

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-ac

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-aj

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-ak

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-al

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-am

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-an

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-ao

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-ap

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-aq

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-as

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-at

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-bd

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-ad

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-ae

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-af

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-ag

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-ah

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-ai

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-ar

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-au

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-av

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-aw

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-ax

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-ay

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-az

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-ba

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-bb

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-be

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-bc

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-bf

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-bg

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-bh

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-bi

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-bj

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-bk

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-bl

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-src_Attribute_attrvalue.h

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-src_ComUtil_comutil.arg

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-src_ComUtil_symbols.c

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-src_glyphs_strchooser_main.c

File Deleted: pkgsrc/graphics/ivtools/patches/Attic/patch-src_tests_y2k_y2ktest.cc