diff options
Diffstat (limited to 'graphics/tcm')
37 files changed, 0 insertions, 2058 deletions
diff --git a/graphics/tcm/DESCR b/graphics/tcm/DESCR deleted file mode 100644 index 6ca7b4e79dd..00000000000 --- a/graphics/tcm/DESCR +++ /dev/null @@ -1,22 +0,0 @@ -TCM is a collection of graphical editors for different software -specification methods. It contains generic editors (for generic -diagrams, tables and trees), editors for Structured Analysis -(entity-relationship diagrams, data and event flow diagrams, -state-transition diagrams, function refinement trees etc.) and editors -for UML (static-structure diagrams, use-case diagrams, activity -diagrams etc.). - -TCM supports constraint checking for single documents (e.g. name -duplication and cycles in is-a relationships). TCM distinguishes -built-in constraints (of which a violation cannot even be attempted) -from immediate constraints (of which an attempted violation is -immediately prevented) and soft constraints (against which the editor -provides a warning when it checks the drawing). TCM is planned to -support hierarchic graphs, so that it can handle, for example, -hierarchic statecharts. Features to be added later include constraint -checking across documents and executable models. - -In addition to the TCM file format, TCM outputs Plain PostScript, -Encapsulated PostScript, PNG and the XFig file format. The TCM file -format is simple to read and parse so other forms of output can be -generated easily. diff --git a/graphics/tcm/Makefile b/graphics/tcm/Makefile deleted file mode 100644 index c0dc320f69b..00000000000 --- a/graphics/tcm/Makefile +++ /dev/null @@ -1,98 +0,0 @@ -# $NetBSD: Makefile,v 1.24 2005/04/11 21:46:09 tv Exp $ - -DISTNAME= tcm-2.01.src -PKGNAME= tcm-2.01 -PKGREVISION= 2 -CATEGORIES= graphics devel -MASTER_SITES= ftp://ftp.cs.utwente.nl/pub/tcm/ - -MAINTAINER= tech-pkg@NetBSD.org -HOMEPAGE= http://wwwhome.cs.utwente.nl/~tcm/index.html -COMMENT= TCM - Toolkit for Conceptual Modeling - -WRKSRC= ${WRKDIR}/tcm-2.01/src -USE_PKGINSTALL= YES -USE_X11BASE= YES - -# These two variables denote where the installed location of the libraries -# are located. -# -MAKE_ENV+= XWIN_HOME=${X11BASE} -MAKE_ENV+= MOTIF_HOME=${MOTIFBASE} - -TCM_SRC= ${WRKDIR}/tcm-2.01 -MAKE_ENV+= TCM_HOME=${TCM_SRC} - -CPPFLAGS+= -DPKG_SYSCONFDIR="\"${PKG_SYSCONFDIR}\"" -CONF_FILES= ${PREFIX}/share/examples/tcm/tcm.conf \ - ${PKG_SYSCONFDIR}/tcm.conf - -BUILD_TARGET= depend all - -post-extract: - ${RM} -f ${TCM_SRC}/lib/COPYING ${TCM_SRC}/lib/CHANGELOG - -do-configure: - ${RM} -f ${WRKSRC}/Config.tmpl - ${LN} -fs ${WRKSRC}/Config.tmpl_netbsd ${WRKSRC}/Config.tmpl - ${RM} -f ${WRKSRC}/Makefile - ${LN} -fs ${WRKSRC}/Makefile.gcc ${WRKSRC}/Makefile - ${MV} -f ${WRKSRC}/gl/system.c ${WRKSRC}/gl/system.c.dist - ${SED} -e "s|@PREFIX@|${PREFIX}|g" \ - -e "s|@X11BASE@|${X11BASE}|g" \ - -e "s|@LOCALBASE@|${LOCALBASE}|g" \ - ${WRKSRC}/gl/system.c.dist > ${WRKSRC}/gl/system.c - for f in `${FIND} ${WRKSRC} -name \*.c -print`; do \ - ${MV} -f $$f $$f`${ECHO} c`; \ - done - ${MV} -f ${WRKSRC}/gl/text2ps.cc ${WRKSRC}/gl/text2ps.c - -do-install: - cd ${TCM_SRC}/bin && ${INSTALL_PROGRAM} tcm tcmd tcmt text2ps \ - ${PREFIX}/bin/ - for f in tatd tcpd tcrd tdfd tdpd tefd terd tesd tfrt tgd \ - tgtt tpsd trpg tsnd tssd tstd tucd; do \ - ${LN} -fs ${PREFIX}/bin/tcmd ${PREFIX}/bin/$$f; \ - done - for f in tfet tgt ttdt ttut; do \ - ${LN} -fs ${PREFIX}/bin/tcmt ${PREFIX}/bin/$$f; \ - done - ${INSTALL_SCRIPT} ${TCM_SRC}/bin/psf ${PREFIX}/bin - ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/tcm - ${INSTALL_DATA} ${TCM_SRC}/lib/tcm.conf ${PREFIX}/share/examples/tcm - ${INSTALL_DATA} ${TCM_SRC}/lib/TCM ${PREFIX}/lib/X11/app-defaults/ - ${INSTALL_DATA} ${TCM_SRC}/man/man1/*.1 ${PREFIX}/man/man1/ - ${INSTALL_DATA_DIR} ${PREFIX}/share/tcm - ${INSTALL_DATA} ${TCM_SRC}/lib/colorrgb.txt ${PREFIX}/share/tcm - ${INSTALL_DATA} ${TCM_SRC}/lib/banner.ps ${PREFIX}/share/tcm - ${INSTALL_DATA_DIR} ${PREFIX}/share/tcm/help - cd ${TCM_SRC} && ${INSTALL_DATA} COPYING CHANGELOG lib/help/* \ - ${PREFIX}/share/tcm/help/ - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/tcm - cd ${TCM_SRC} && ${INSTALL_DATA} README COPYING CHANGELOG \ - ${PREFIX}/share/doc/tcm/ - ${INSTALL_DATA} ${TCM_SRC}/doc/*.ps.gz ${PREFIX}/share/doc/tcm/ - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/tcm - ${INSTALL_DATA} ${TCM_SRC}/doc/*.html ${PREFIX}/share/doc/html/tcm/ - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/tcm/developersguide - ${INSTALL_DATA} ${TCM_SRC}/doc/developersguide/* \ - ${PREFIX}/share/doc/html/tcm/developersguide/ - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/tcm/sourcecode - ${INSTALL_DATA} ${TCM_SRC}/doc/sourcecode/* \ - ${PREFIX}/share/doc/html/tcm/sourcecode/ - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/tcm/specifications - ${INSTALL_DATA} ${TCM_SRC}/doc/specifications/* \ - ${PREFIX}/share/doc/html/tcm/specifications/ - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/tcm/usersguide - ${INSTALL_DATA} ${TCM_SRC}/doc/usersguide/* \ - ${PREFIX}/share/doc/html/tcm/usersguide/ - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/tcm/wishlist - ${INSTALL_DATA} ${TCM_SRC}/doc/wishlist/* \ - ${PREFIX}/share/doc/html/tcm/wishlist/ - -.include "../../mk/motif.buildlink3.mk" -.include "../../mk/bsd.pkg.mk" - -.if defined(MOTIF_TYPE) && (${MOTIF_TYPE} == "lesstif") -CPPFLAGS+= -DLESSTIF -.endif diff --git a/graphics/tcm/PLIST b/graphics/tcm/PLIST deleted file mode 100644 index 57df59254e0..00000000000 --- a/graphics/tcm/PLIST +++ /dev/null @@ -1,856 +0,0 @@ -@comment $NetBSD: PLIST,v 1.2 2003/01/01 22:02:01 jmmv Exp $ -bin/psf -bin/tatd -bin/tcm -bin/tcmd -bin/tcmt -bin/tcpd -bin/tcrd -bin/tdfd -bin/tdpd -bin/tefd -bin/terd -bin/tesd -bin/text2ps -bin/tfet -bin/tfrt -bin/tgd -bin/tgt -bin/tgtt -bin/tpsd -bin/trpg -bin/tsnd -bin/tssd -bin/tstd -bin/ttdt -bin/ttut -bin/tucd -lib/X11/app-defaults/TCM -man/man1/psf.1 -man/man1/tatd.1 -man/man1/tcm.1 -man/man1/tcpd.1 -man/man1/tcrd.1 -man/man1/tdfd.1 -man/man1/tdpd.1 -man/man1/tefd.1 -man/man1/terd.1 -man/man1/tesd.1 -man/man1/text2ps.1 -man/man1/tfet.1 -man/man1/tfrt.1 -man/man1/tgd.1 -man/man1/tgt.1 -man/man1/tgtt.1 -man/man1/tpsd.1 -man/man1/trpg.1 -man/man1/tsnd.1 -man/man1/tssd.1 -man/man1/tstd.1 -man/man1/ttdt.1 -man/man1/ttut.1 -man/man1/tucd.1 -share/doc/html/tcm/developersguide/TechDoc.css -share/doc/html/tcm/developersguide/TechDoc.html -share/doc/html/tcm/developersguide/contents_motif.gif -share/doc/html/tcm/developersguide/developersguideimg1.gif -share/doc/html/tcm/developersguide/developersguideimg10.gif -share/doc/html/tcm/developersguide/developersguideimg11.gif -share/doc/html/tcm/developersguide/developersguideimg12.gif -share/doc/html/tcm/developersguide/developersguideimg13.gif -share/doc/html/tcm/developersguide/developersguideimg14.gif -share/doc/html/tcm/developersguide/developersguideimg15.gif -share/doc/html/tcm/developersguide/developersguideimg2.gif -share/doc/html/tcm/developersguide/developersguideimg3.gif -share/doc/html/tcm/developersguide/developersguideimg4.gif -share/doc/html/tcm/developersguide/developersguideimg5.gif -share/doc/html/tcm/developersguide/developersguideimg6.gif -share/doc/html/tcm/developersguide/developersguideimg7.gif -share/doc/html/tcm/developersguide/developersguideimg8.gif -share/doc/html/tcm/developersguide/developersguideimg9.gif -share/doc/html/tcm/developersguide/developersguidenode1.html -share/doc/html/tcm/developersguide/developersguidenode10.html -share/doc/html/tcm/developersguide/developersguidenode11.html -share/doc/html/tcm/developersguide/developersguidenode2.html -share/doc/html/tcm/developersguide/developersguidenode3.html -share/doc/html/tcm/developersguide/developersguidenode4.html -share/doc/html/tcm/developersguide/developersguidenode5.html -share/doc/html/tcm/developersguide/developersguidenode6.html -share/doc/html/tcm/developersguide/developersguidenode7.html -share/doc/html/tcm/developersguide/developersguidenode8.html -share/doc/html/tcm/developersguide/developersguidenode9.html -share/doc/html/tcm/developersguide/index.html -share/doc/html/tcm/developersguide/next_motif.gif -share/doc/html/tcm/developersguide/next_motif_gr.gif -share/doc/html/tcm/developersguide/previous_motif.gif -share/doc/html/tcm/developersguide/previous_motif_gr.gif -share/doc/html/tcm/developersguide/up_motif.gif -share/doc/html/tcm/developersguide/up_motif_gr.gif -share/doc/html/tcm/index.html -share/doc/html/tcm/sourcecode/AFont.html -share/doc/html/tcm/sourcecode/ATChecks.html -share/doc/html/tcm/sourcecode/ATDActionStateNode.html -share/doc/html/tcm/sourcecode/ATDDecisionStateNode.html -share/doc/html/tcm/sourcecode/ATDFinalStateNode.html -share/doc/html/tcm/sourcecode/ATDInitialStateNode.html -share/doc/html/tcm/sourcecode/ATDSynchronizationNode.html -share/doc/html/tcm/sourcecode/ATDTransitionEdge.html -share/doc/html/tcm/sourcecode/ATDWaitStateNode.html -share/doc/html/tcm/sourcecode/ATDiagram.html -share/doc/html/tcm/sourcecode/ATGraph.html -share/doc/html/tcm/sourcecode/ATUpdateNodeShapeTypeCmd.html -share/doc/html/tcm/sourcecode/ATViewer.html -share/doc/html/tcm/sourcecode/ATWindow.html -share/doc/html/tcm/sourcecode/AddColumnsCmd.html -share/doc/html/tcm/sourcecode/AddHandleCmd.html -share/doc/html/tcm/sourcecode/AddRowsCmd.html -share/doc/html/tcm/sourcecode/AlignNodeShapesCmd.html -share/doc/html/tcm/sourcecode/AppendTableCmd.html -share/doc/html/tcm/sourcecode/Application.html -share/doc/html/tcm/sourcecode/ArrowTextBox.html -share/doc/html/tcm/sourcecode/Assoc.html -share/doc/html/tcm/sourcecode/AssocList.html -share/doc/html/tcm/sourcecode/BidirectionalDataFlow.html -share/doc/html/tcm/sourcecode/BinaryRelationship.html -share/doc/html/tcm/sourcecode/Bitmap.html -share/doc/html/tcm/sourcecode/BlackDot.html -share/doc/html/tcm/sourcecode/Box.html -share/doc/html/tcm/sourcecode/Buffer.html -share/doc/html/tcm/sourcecode/BuildingBlock.html -share/doc/html/tcm/sourcecode/BullsEye.html -share/doc/html/tcm/sourcecode/C1Arrow.html -share/doc/html/tcm/sourcecode/C1Edge.html -share/doc/html/tcm/sourcecode/C2R2Line.html -share/doc/html/tcm/sourcecode/CPDComponentNode.html -share/doc/html/tcm/sourcecode/CPDDependencyEdge.html -share/doc/html/tcm/sourcecode/CPDInterfaceNode.html -share/doc/html/tcm/sourcecode/CPDRealizationEdge.html -share/doc/html/tcm/sourcecode/CPDiagram.html -share/doc/html/tcm/sourcecode/CPGraph.html -share/doc/html/tcm/sourcecode/CPViewer.html -share/doc/html/tcm/sourcecode/CPWindow.html -share/doc/html/tcm/sourcecode/CRChecks.html -share/doc/html/tcm/sourcecode/CRDiagram.html -share/doc/html/tcm/sourcecode/CRGraph.html -share/doc/html/tcm/sourcecode/CRViewer.html -share/doc/html/tcm/sourcecode/CRWindow.html -share/doc/html/tcm/sourcecode/Cell.html -share/doc/html/tcm/sourcecode/CellColumn.html -share/doc/html/tcm/sourcecode/CellRow.html -share/doc/html/tcm/sourcecode/CellSelection.html -share/doc/html/tcm/sourcecode/CellText.html -share/doc/html/tcm/sourcecode/CellTextBuffer.html -share/doc/html/tcm/sourcecode/CellTextEditor.html -share/doc/html/tcm/sourcecode/CellVector.html -share/doc/html/tcm/sourcecode/Circle.html -share/doc/html/tcm/sourcecode/ClassNode.html -share/doc/html/tcm/sourcecode/Code.html -share/doc/html/tcm/sourcecode/Color.html -share/doc/html/tcm/sourcecode/ColorChooserDialog.html -share/doc/html/tcm/sourcecode/Command.html -share/doc/html/tcm/sourcecode/Comment.html -share/doc/html/tcm/sourcecode/CommentLink.html -share/doc/html/tcm/sourcecode/Component.html -share/doc/html/tcm/sourcecode/ComponentFunction.html -share/doc/html/tcm/sourcecode/Config.html -share/doc/html/tcm/sourcecode/ConnectionEnd.html -share/doc/html/tcm/sourcecode/ConnectionStart.html -share/doc/html/tcm/sourcecode/ContinuousDataFlow.html -share/doc/html/tcm/sourcecode/ContinuousEventFlow.html -share/doc/html/tcm/sourcecode/ControlProcess.html -share/doc/html/tcm/sourcecode/ControlledDataStream.html -share/doc/html/tcm/sourcecode/CopyCellTextsCmd.html -share/doc/html/tcm/sourcecode/CopyShapesCmd.html -share/doc/html/tcm/sourcecode/CreateEdgeCmd.html -share/doc/html/tcm/sourcecode/CreateNodeCmd.html -share/doc/html/tcm/sourcecode/Cube.html -share/doc/html/tcm/sourcecode/CutCellTextsCmd.html -share/doc/html/tcm/sourcecode/CutShapesCmd.html -share/doc/html/tcm/sourcecode/DCFChecks.html -share/doc/html/tcm/sourcecode/DCFDiagram.html -share/doc/html/tcm/sourcecode/DCFGraph.html -share/doc/html/tcm/sourcecode/DCFStubs.html -share/doc/html/tcm/sourcecode/DCFViewer.html -share/doc/html/tcm/sourcecode/DCFWindow.html -share/doc/html/tcm/sourcecode/DFChecks.html -share/doc/html/tcm/sourcecode/DFDiagram.html -share/doc/html/tcm/sourcecode/DFEdge.html -share/doc/html/tcm/sourcecode/DFGraph.html -share/doc/html/tcm/sourcecode/DFNode.html -share/doc/html/tcm/sourcecode/DFProcess.html -share/doc/html/tcm/sourcecode/DFStore.html -share/doc/html/tcm/sourcecode/DFStubs.html -share/doc/html/tcm/sourcecode/DFViewer.html -share/doc/html/tcm/sourcecode/DFWindow.html -share/doc/html/tcm/sourcecode/DPDCommunicationEdge.html -share/doc/html/tcm/sourcecode/DPDResourceNode.html -share/doc/html/tcm/sourcecode/DPDiagram.html -share/doc/html/tcm/sourcecode/DPWindow.html -share/doc/html/tcm/sourcecode/DataFlow.html -share/doc/html/tcm/sourcecode/DataProcess.html -share/doc/html/tcm/sourcecode/DataStore.html -share/doc/html/tcm/sourcecode/DataStream.html -share/doc/html/tcm/sourcecode/DecisionPoint.html -share/doc/html/tcm/sourcecode/DeleteAllCellsCmd.html -share/doc/html/tcm/sourcecode/DeleteAllSubjectsCmd.html -share/doc/html/tcm/sourcecode/DeleteCellsCmd.html -share/doc/html/tcm/sourcecode/DeleteColumnsCmd.html -share/doc/html/tcm/sourcecode/DeleteHandleCmd.html -share/doc/html/tcm/sourcecode/DeleteRowsCmd.html -share/doc/html/tcm/sourcecode/DeleteSelectedSubjectsCmd.html -share/doc/html/tcm/sourcecode/DeleteShapesCmd.html -share/doc/html/tcm/sourcecode/DeleteSubjectsCmd.html -share/doc/html/tcm/sourcecode/Diagram.html -share/doc/html/tcm/sourcecode/DiagramChecks.html -share/doc/html/tcm/sourcecode/DiagramStubs.html -share/doc/html/tcm/sourcecode/DiagramViewer.html -share/doc/html/tcm/sourcecode/DiagramWindow.html -share/doc/html/tcm/sourcecode/Dialog.html -share/doc/html/tcm/sourcecode/Diamond.html -share/doc/html/tcm/sourcecode/Disk.html -share/doc/html/tcm/sourcecode/Document.html -share/doc/html/tcm/sourcecode/DoubleBox.html -share/doc/html/tcm/sourcecode/DoubleClassBox.html -share/doc/html/tcm/sourcecode/DragCellTextCmd.html -share/doc/html/tcm/sourcecode/DragCmd.html -share/doc/html/tcm/sourcecode/DragColumnCmd.html -share/doc/html/tcm/sourcecode/DragColumnLabelCmd.html -share/doc/html/tcm/sourcecode/DragHLineCmd.html -share/doc/html/tcm/sourcecode/DragHandleCmd.html -share/doc/html/tcm/sourcecode/DragRowCmd.html -share/doc/html/tcm/sourcecode/DragRowLabelCmd.html -share/doc/html/tcm/sourcecode/DragSTLabelCmd.html -share/doc/html/tcm/sourcecode/DragShapeCmd.html -share/doc/html/tcm/sourcecode/DragShapesCmd.html -share/doc/html/tcm/sourcecode/DragTextShapeCmd.html -share/doc/html/tcm/sourcecode/DrawWindow.html -share/doc/html/tcm/sourcecode/DrawingArea.html -share/doc/html/tcm/sourcecode/DumpWidgetTree.html -share/doc/html/tcm/sourcecode/DuplicateShapesCmd.html -share/doc/html/tcm/sourcecode/ERChecks.html -share/doc/html/tcm/sourcecode/ERDiagram.html -share/doc/html/tcm/sourcecode/ERGraph.html -share/doc/html/tcm/sourcecode/ERStubs.html -share/doc/html/tcm/sourcecode/ERView.html -share/doc/html/tcm/sourcecode/ERViewer.html -share/doc/html/tcm/sourcecode/ERWindow.html -share/doc/html/tcm/sourcecode/ESDDiagram.html -share/doc/html/tcm/sourcecode/ESDWindow.html -share/doc/html/tcm/sourcecode/Edge.html -share/doc/html/tcm/sourcecode/EditStubs.html -share/doc/html/tcm/sourcecode/EditWindow.html -share/doc/html/tcm/sourcecode/Element.html -share/doc/html/tcm/sourcecode/Ellipse.html -share/doc/html/tcm/sourcecode/EllipsedBox.html -share/doc/html/tcm/sourcecode/Ellipsis.html -share/doc/html/tcm/sourcecode/EmptyEdge.html -share/doc/html/tcm/sourcecode/EmptyNode.html -share/doc/html/tcm/sourcecode/EndC1Arrow.html -share/doc/html/tcm/sourcecode/EntityType.html -share/doc/html/tcm/sourcecode/Event.html -share/doc/html/tcm/sourcecode/EventFlow.html -share/doc/html/tcm/sourcecode/EventStore.html -share/doc/html/tcm/sourcecode/ExternalEntity.html -share/doc/html/tcm/sourcecode/FDDiagram.html -share/doc/html/tcm/sourcecode/FDGraph.html -share/doc/html/tcm/sourcecode/FDViewer.html -share/doc/html/tcm/sourcecode/FDWindow.html -share/doc/html/tcm/sourcecode/FETable.html -share/doc/html/tcm/sourcecode/FEViewer.html -share/doc/html/tcm/sourcecode/FEWindow.html -share/doc/html/tcm/sourcecode/FigGrafport.html -share/doc/html/tcm/sourcecode/File.html -share/doc/html/tcm/sourcecode/FileSelectionDialog.html -share/doc/html/tcm/sourcecode/FileUtils.html -share/doc/html/tcm/sourcecode/FillStyle.html -share/doc/html/tcm/sourcecode/FindAllCellsCmd.html -share/doc/html/tcm/sourcecode/FindAllTextsCmd.html -share/doc/html/tcm/sourcecode/FindDialog.html -share/doc/html/tcm/sourcecode/FindNextCellCmd.html -share/doc/html/tcm/sourcecode/FindNextTextCmd.html -share/doc/html/tcm/sourcecode/FlashArrow.html -share/doc/html/tcm/sourcecode/Folder.html -share/doc/html/tcm/sourcecode/FontChooserDialog.html -share/doc/html/tcm/sourcecode/Function.html -share/doc/html/tcm/sourcecode/GDDiagram.html -share/doc/html/tcm/sourcecode/GDGraph.html -share/doc/html/tcm/sourcecode/GDUpdateNodeShapeTypeCmd.html -share/doc/html/tcm/sourcecode/GDViewer.html -share/doc/html/tcm/sourcecode/GDWindow.html -share/doc/html/tcm/sourcecode/GShape.html -share/doc/html/tcm/sourcecode/GenericEdge.html -share/doc/html/tcm/sourcecode/GenericNode.html -share/doc/html/tcm/sourcecode/Grafport.html -share/doc/html/tcm/sourcecode/Graph.html -share/doc/html/tcm/sourcecode/Grid.html -share/doc/html/tcm/sourcecode/HIER.html -share/doc/html/tcm/sourcecode/HIERjava.html -share/doc/html/tcm/sourcecode/Helper.html -share/doc/html/tcm/sourcecode/Hexagon.html -share/doc/html/tcm/sourcecode/HorizontalBar.html -share/doc/html/tcm/sourcecode/InitialState.html -share/doc/html/tcm/sourcecode/InitialStateBox.html -share/doc/html/tcm/sourcecode/InlineEditor.html -share/doc/html/tcm/sourcecode/InputFile.html -share/doc/html/tcm/sourcecode/Intersect.html -share/doc/html/tcm/sourcecode/IsaRelationship.html -share/doc/html/tcm/sourcecode/Key.html -share/doc/html/tcm/sourcecode/LeftLineCircle.html -share/doc/html/tcm/sourcecode/Line.html -share/doc/html/tcm/sourcecode/LineEnd.html -share/doc/html/tcm/sourcecode/LineEndDialog.html -share/doc/html/tcm/sourcecode/LinePiece.html -share/doc/html/tcm/sourcecode/LineStyle.html -share/doc/html/tcm/sourcecode/LineStyleDialog.html -share/doc/html/tcm/sourcecode/LineStyleSideDialog.html -share/doc/html/tcm/sourcecode/LineWidthDialog.html -share/doc/html/tcm/sourcecode/LineWidthSideDialog.html -share/doc/html/tcm/sourcecode/Link.html -share/doc/html/tcm/sourcecode/List.html -share/doc/html/tcm/sourcecode/MWidget.html -share/doc/html/tcm/sourcecode/MainWindow.html -share/doc/html/tcm/sourcecode/Matrix.html -share/doc/html/tcm/sourcecode/MatrixViewer.html -share/doc/html/tcm/sourcecode/Menu.html -share/doc/html/tcm/sourcecode/MenuItem.html -share/doc/html/tcm/sourcecode/MessageDialog.html -share/doc/html/tcm/sourcecode/MessageLogDialog.html -share/doc/html/tcm/sourcecode/MiniArrowEllipse.html -share/doc/html/tcm/sourcecode/MiniBox.html -share/doc/html/tcm/sourcecode/MiniDiamond.html -share/doc/html/tcm/sourcecode/MiniEllipse.html -share/doc/html/tcm/sourcecode/MiniTriangle.html -share/doc/html/tcm/sourcecode/ModeJunction.html -share/doc/html/tcm/sourcecode/MouseCursor.html -share/doc/html/tcm/sourcecode/MoveAllShapesCmd.html -share/doc/html/tcm/sourcecode/MoveShapesCmd.html -share/doc/html/tcm/sourcecode/MoveTableCmd.html -share/doc/html/tcm/sourcecode/NToggleListDialog.html -share/doc/html/tcm/sourcecode/Node.html -share/doc/html/tcm/sourcecode/NodeAlign.html -share/doc/html/tcm/sourcecode/NodeAlignmentDialog.html -share/doc/html/tcm/sourcecode/NodeShape.html -share/doc/html/tcm/sourcecode/NodeShapeDialog.html -share/doc/html/tcm/sourcecode/Note.html -share/doc/html/tcm/sourcecode/NoteBox.html -share/doc/html/tcm/sourcecode/OutputFile.html -share/doc/html/tcm/sourcecode/PSChecks.html -share/doc/html/tcm/sourcecode/PSDiagram.html -share/doc/html/tcm/sourcecode/PSGrafport.html -share/doc/html/tcm/sourcecode/PSGraph.html -share/doc/html/tcm/sourcecode/PSProcess.html -share/doc/html/tcm/sourcecode/PSStubs.html -share/doc/html/tcm/sourcecode/PSViewer.html -share/doc/html/tcm/sourcecode/PSWindow.html -share/doc/html/tcm/sourcecode/PageSize.html -share/doc/html/tcm/sourcecode/PasteCellTextsCmd.html -share/doc/html/tcm/sourcecode/PasteShapesCmd.html -share/doc/html/tcm/sourcecode/Point.html -share/doc/html/tcm/sourcecode/Printer.html -share/doc/html/tcm/sourcecode/PrinterOptions.html -share/doc/html/tcm/sourcecode/PrinterQueueDialog.html -share/doc/html/tcm/sourcecode/ProcessGraphNode.html -share/doc/html/tcm/sourcecode/ProcessGraphRoot.html -share/doc/html/tcm/sourcecode/PromptDialog.html -share/doc/html/tcm/sourcecode/Properties.html -share/doc/html/tcm/sourcecode/Property.html -share/doc/html/tcm/sourcecode/PurgeCellsCmd.html -share/doc/html/tcm/sourcecode/QuestionDialog.html -share/doc/html/tcm/sourcecode/RPDiagram.html -share/doc/html/tcm/sourcecode/RPGraph.html -share/doc/html/tcm/sourcecode/RPUpdateNodeShapeTypeCmd.html -share/doc/html/tcm/sourcecode/RPViewer.html -share/doc/html/tcm/sourcecode/RPWindow.html -share/doc/html/tcm/sourcecode/ReadDirection.html -share/doc/html/tcm/sourcecode/Rectangle.html -share/doc/html/tcm/sourcecode/ReindexCmd.html -share/doc/html/tcm/sourcecode/RelationshipNode.html -share/doc/html/tcm/sourcecode/ReplaceAllCellTextsCmd.html -share/doc/html/tcm/sourcecode/ReplaceAllTextsCmd.html -share/doc/html/tcm/sourcecode/ReplaceCellTextCmd.html -share/doc/html/tcm/sourcecode/ReplaceDialog.html -share/doc/html/tcm/sourcecode/ReplaceNextCellTextCmd.html -share/doc/html/tcm/sourcecode/ReplaceNextTextCmd.html -share/doc/html/tcm/sourcecode/ReplaceTextCmd.html -share/doc/html/tcm/sourcecode/RoundedBox.html -share/doc/html/tcm/sourcecode/RowColumnLabel.html -share/doc/html/tcm/sourcecode/SNChecks.html -share/doc/html/tcm/sourcecode/SNDiagram.html -share/doc/html/tcm/sourcecode/SNGraph.html -share/doc/html/tcm/sourcecode/SNNode.html -share/doc/html/tcm/sourcecode/SNProcess.html -share/doc/html/tcm/sourcecode/SNViewer.html -share/doc/html/tcm/sourcecode/SNWindow.html -share/doc/html/tcm/sourcecode/SSDAggregationEdge.html -share/doc/html/tcm/sourcecode/SSDAggregationNode.html -share/doc/html/tcm/sourcecode/SSDAssociationLinkEdge.html -share/doc/html/tcm/sourcecode/SSDAssociationNode.html -share/doc/html/tcm/sourcecode/SSDBinaryAssociationEdge.html -share/doc/html/tcm/sourcecode/SSDChecks.html -share/doc/html/tcm/sourcecode/SSDClassNode.html -share/doc/html/tcm/sourcecode/SSDCompositionEdge.html -share/doc/html/tcm/sourcecode/SSDDiagram.html -share/doc/html/tcm/sourcecode/SSDDoubleClassBox.html -share/doc/html/tcm/sourcecode/SSDDoubleObjectBox.html -share/doc/html/tcm/sourcecode/SSDGeneralizationEdge.html -share/doc/html/tcm/sourcecode/SSDGeneralizationNode.html -share/doc/html/tcm/sourcecode/SSDGraph.html -share/doc/html/tcm/sourcecode/SSDObjectLinkEdge.html -share/doc/html/tcm/sourcecode/SSDObjectNode.html -share/doc/html/tcm/sourcecode/SSDParticipantLinkEdge.html -share/doc/html/tcm/sourcecode/SSDR2Line.html -share/doc/html/tcm/sourcecode/SSDRCLine.html -share/doc/html/tcm/sourcecode/SSDSingleClassBox.html -share/doc/html/tcm/sourcecode/SSDSingleObjectBox.html -share/doc/html/tcm/sourcecode/SSDStubs.html -share/doc/html/tcm/sourcecode/SSDTripleClassBox.html -share/doc/html/tcm/sourcecode/SSDUpdateClassBoxPropertyCmd.html -share/doc/html/tcm/sourcecode/SSDUpdateClassBoxTypeCmd.html -share/doc/html/tcm/sourcecode/SSDViewer.html -share/doc/html/tcm/sourcecode/SSDWindow.html -share/doc/html/tcm/sourcecode/STChecks.html -share/doc/html/tcm/sourcecode/STDiagram.html -share/doc/html/tcm/sourcecode/STGraph.html -share/doc/html/tcm/sourcecode/STNode.html -share/doc/html/tcm/sourcecode/STViewer.html -share/doc/html/tcm/sourcecode/STWindow.html -share/doc/html/tcm/sourcecode/SameSizeCmd.html -share/doc/html/tcm/sourcecode/ScaleDialog.html -share/doc/html/tcm/sourcecode/Scaler.html -share/doc/html/tcm/sourcecode/SelectAllCellsCmd.html -share/doc/html/tcm/sourcecode/SelectAllCmd.html -share/doc/html/tcm/sourcecode/SelectAreaCmd.html -share/doc/html/tcm/sourcecode/SelectCellAreaCmd.html -share/doc/html/tcm/sourcecode/SelectionDialog.html -share/doc/html/tcm/sourcecode/Sequence.html -share/doc/html/tcm/sourcecode/Shape.html -share/doc/html/tcm/sourcecode/ShapeView.html -share/doc/html/tcm/sourcecode/Shapes.html -share/doc/html/tcm/sourcecode/Side.html -share/doc/html/tcm/sourcecode/SimpleLabel.html -share/doc/html/tcm/sourcecode/SizeShapeBorderCmd.html -share/doc/html/tcm/sourcecode/SizeShapeCenterCmd.html -share/doc/html/tcm/sourcecode/SizeShapeCmd.html -share/doc/html/tcm/sourcecode/SolidHorizontalBar.html -share/doc/html/tcm/sourcecode/SolidVerticalBar.html -share/doc/html/tcm/sourcecode/SortColumnsCmd.html -share/doc/html/tcm/sourcecode/SortRowsCmd.html -share/doc/html/tcm/sourcecode/SplitMergeNode.html -share/doc/html/tcm/sourcecode/Square.html -share/doc/html/tcm/sourcecode/StartC1Line.html -share/doc/html/tcm/sourcecode/StartupWindow.html -share/doc/html/tcm/sourcecode/State.html -share/doc/html/tcm/sourcecode/StateVector.html -share/doc/html/tcm/sourcecode/StickMan.html -share/doc/html/tcm/sourcecode/StringList.html -share/doc/html/tcm/sourcecode/StringListEdge.html -share/doc/html/tcm/sourcecode/StringListNode.html -share/doc/html/tcm/sourcecode/StringListNode2.html -share/doc/html/tcm/sourcecode/SubFolder.html -share/doc/html/tcm/sourcecode/Subject.html -share/doc/html/tcm/sourcecode/Subjects.html -share/doc/html/tcm/sourcecode/System.html -share/doc/html/tcm/sourcecode/T1Line.html -share/doc/html/tcm/sourcecode/T2Line.html -share/doc/html/tcm/sourcecode/T4Line.html -share/doc/html/tcm/sourcecode/TDTable.html -share/doc/html/tcm/sourcecode/TDViewer.html -share/doc/html/tcm/sourcecode/TDWindow.html -share/doc/html/tcm/sourcecode/TRDiagram.html -share/doc/html/tcm/sourcecode/TRGraph.html -share/doc/html/tcm/sourcecode/TRView.html -share/doc/html/tcm/sourcecode/TRViewer.html -share/doc/html/tcm/sourcecode/TRWindow.html -share/doc/html/tcm/sourcecode/TUTable.html -share/doc/html/tcm/sourcecode/TUViewer.html -share/doc/html/tcm/sourcecode/TUWindow.html -share/doc/html/tcm/sourcecode/Table.html -share/doc/html/tcm/sourcecode/TableStubs.html -share/doc/html/tcm/sourcecode/TableViewer.html -share/doc/html/tcm/sourcecode/TableWindow.html -share/doc/html/tcm/sourcecode/TaxonomyJunction.html -share/doc/html/tcm/sourcecode/TextAlign.html -share/doc/html/tcm/sourcecode/TextAlignmentDialog.html -share/doc/html/tcm/sourcecode/TextBox.html -share/doc/html/tcm/sourcecode/TextEdge.html -share/doc/html/tcm/sourcecode/TextEditDialog.html -share/doc/html/tcm/sourcecode/TextFieldListDialog.html -share/doc/html/tcm/sourcecode/TextNode.html -share/doc/html/tcm/sourcecode/TextRoot.html -share/doc/html/tcm/sourcecode/TextShape.html -share/doc/html/tcm/sourcecode/TextShapeEditor.html -share/doc/html/tcm/sourcecode/TextViewDialog.html -share/doc/html/tcm/sourcecode/Thing.html -share/doc/html/tcm/sourcecode/ToggleListDialog.html -share/doc/html/tcm/sourcecode/Toolkit.html -share/doc/html/tcm/sourcecode/Transition.html -share/doc/html/tcm/sourcecode/TransitionArrow.html -share/doc/html/tcm/sourcecode/Triangle.html -share/doc/html/tcm/sourcecode/TripleBox.html -share/doc/html/tcm/sourcecode/TripleClassBox.html -share/doc/html/tcm/sourcecode/TypeName.html -share/doc/html/tcm/sourcecode/UCChecks.html -share/doc/html/tcm/sourcecode/UCDActorNode.html -share/doc/html/tcm/sourcecode/UCDBinaryAssociationEdge.html -share/doc/html/tcm/sourcecode/UCDBoundaryBox.html -share/doc/html/tcm/sourcecode/UCDGeneralizationEdge.html -share/doc/html/tcm/sourcecode/UCDSingleClassBox.html -share/doc/html/tcm/sourcecode/UCDSystemNode.html -share/doc/html/tcm/sourcecode/UCDUseCaseNode.html -share/doc/html/tcm/sourcecode/UCDiagram.html -share/doc/html/tcm/sourcecode/UCGraph.html -share/doc/html/tcm/sourcecode/UCUpdateActorTypeCmd.html -share/doc/html/tcm/sourcecode/UCViewer.html -share/doc/html/tcm/sourcecode/UCWindow.html -share/doc/html/tcm/sourcecode/URLabeledBox.html -share/doc/html/tcm/sourcecode/UpdateCellTextCmd.html -share/doc/html/tcm/sourcecode/UpdateCellTextFontCmd.html -share/doc/html/tcm/sourcecode/UpdateCellTextUnderlineCmd.html -share/doc/html/tcm/sourcecode/UpdateClassBoxTypeCmd.html -share/doc/html/tcm/sourcecode/UpdateColorCmd.html -share/doc/html/tcm/sourcecode/UpdateColumnAlignmentCmd.html -share/doc/html/tcm/sourcecode/UpdateCurveCmd.html -share/doc/html/tcm/sourcecode/UpdateFillColorCmd.html -share/doc/html/tcm/sourcecode/UpdateFontCmd.html -share/doc/html/tcm/sourcecode/UpdateLineColorCmd.html -share/doc/html/tcm/sourcecode/UpdateLineEndCmd.html -share/doc/html/tcm/sourcecode/UpdateLineStyleCmd.html -share/doc/html/tcm/sourcecode/UpdateLineStyleTableCmd.html -share/doc/html/tcm/sourcecode/UpdateLineTableCmd.html -share/doc/html/tcm/sourcecode/UpdateLineWidthCmd.html -share/doc/html/tcm/sourcecode/UpdateLineWidthTableCmd.html -share/doc/html/tcm/sourcecode/UpdateNodeShapeTypeCmd.html -share/doc/html/tcm/sourcecode/UpdateReadDirectionCmd.html -share/doc/html/tcm/sourcecode/UpdateRowAlignmentCmd.html -share/doc/html/tcm/sourcecode/UpdateTextAlignmentCmd.html -share/doc/html/tcm/sourcecode/UpdateTextCmd.html -share/doc/html/tcm/sourcecode/UpdateTextColorCmd.html -share/doc/html/tcm/sourcecode/UpdateTextUnderlineCmd.html -share/doc/html/tcm/sourcecode/UpdateTypeCmd.html -share/doc/html/tcm/sourcecode/UpdateVectorAlignmentCmd.html -share/doc/html/tcm/sourcecode/ValueType.html -share/doc/html/tcm/sourcecode/Version.html -share/doc/html/tcm/sourcecode/VerticalBar.html -share/doc/html/tcm/sourcecode/Viewer.html -share/doc/html/tcm/sourcecode/WhiteDot.html -share/doc/html/tcm/sourcecode/XFont.html -share/doc/html/tcm/sourcecode/XGrafport.html -share/doc/html/tcm/sourcecode/XResources.html -share/doc/html/tcm/sourcecode/aindex.html -share/doc/html/tcm/sourcecode/down.gif -share/doc/html/tcm/sourcecode/icon1.gif -share/doc/html/tcm/sourcecode/icon2.gif -share/doc/html/tcm/sourcecode/index.html -share/doc/html/tcm/sourcecode/logo.gif -share/doc/html/tcm/sourcecode/string.html -share/doc/html/tcm/specifications/TATD_specs-1.2.ps.gz -share/doc/html/tcm/specifications/TUCD_specs-1.2.ps.gz -share/doc/html/tcm/specifications/line-distribution.gd -share/doc/html/tcm/specifications/line-distribution.txt -share/doc/html/tcm/specifications/tssd.ssd -share/doc/html/tcm/specifications/tssd_edge.ssd -share/doc/html/tcm/specifications/tssd_line.ssd -share/doc/html/tcm/specifications/tssd_node.ssd -share/doc/html/tcm/specifications/tssd_nodeshape.ssd -share/doc/html/tcm/usersguide.html -share/doc/html/tcm/usersguide/User.css -share/doc/html/tcm/usersguide/User.html -share/doc/html/tcm/usersguide/contents_motif.gif -share/doc/html/tcm/usersguide/cross_ref_motif.gif -share/doc/html/tcm/usersguide/index.html -share/doc/html/tcm/usersguide/index_motif.gif -share/doc/html/tcm/usersguide/next_motif.gif -share/doc/html/tcm/usersguide/next_motif_gr.gif -share/doc/html/tcm/usersguide/previous_motif.gif -share/doc/html/tcm/usersguide/previous_motif_gr.gif -share/doc/html/tcm/usersguide/up_motif.gif -share/doc/html/tcm/usersguide/up_motif_gr.gif -share/doc/html/tcm/usersguide/usersguideimg1.gif -share/doc/html/tcm/usersguide/usersguideimg10.gif -share/doc/html/tcm/usersguide/usersguideimg100.gif -share/doc/html/tcm/usersguide/usersguideimg101.gif -share/doc/html/tcm/usersguide/usersguideimg102.gif -share/doc/html/tcm/usersguide/usersguideimg103.gif -share/doc/html/tcm/usersguide/usersguideimg104.gif -share/doc/html/tcm/usersguide/usersguideimg105.gif -share/doc/html/tcm/usersguide/usersguideimg106.gif -share/doc/html/tcm/usersguide/usersguideimg107.gif -share/doc/html/tcm/usersguide/usersguideimg108.gif -share/doc/html/tcm/usersguide/usersguideimg109.gif -share/doc/html/tcm/usersguide/usersguideimg11.gif -share/doc/html/tcm/usersguide/usersguideimg110.gif -share/doc/html/tcm/usersguide/usersguideimg111.gif -share/doc/html/tcm/usersguide/usersguideimg112.gif -share/doc/html/tcm/usersguide/usersguideimg113.gif -share/doc/html/tcm/usersguide/usersguideimg114.gif -share/doc/html/tcm/usersguide/usersguideimg115.gif -share/doc/html/tcm/usersguide/usersguideimg116.gif -share/doc/html/tcm/usersguide/usersguideimg117.gif -share/doc/html/tcm/usersguide/usersguideimg118.gif -share/doc/html/tcm/usersguide/usersguideimg119.gif -share/doc/html/tcm/usersguide/usersguideimg12.gif -share/doc/html/tcm/usersguide/usersguideimg120.gif -share/doc/html/tcm/usersguide/usersguideimg121.gif -share/doc/html/tcm/usersguide/usersguideimg122.gif -share/doc/html/tcm/usersguide/usersguideimg123.gif -share/doc/html/tcm/usersguide/usersguideimg124.gif -share/doc/html/tcm/usersguide/usersguideimg125.gif -share/doc/html/tcm/usersguide/usersguideimg126.gif -share/doc/html/tcm/usersguide/usersguideimg127.gif -share/doc/html/tcm/usersguide/usersguideimg128.gif -share/doc/html/tcm/usersguide/usersguideimg129.gif -share/doc/html/tcm/usersguide/usersguideimg13.gif -share/doc/html/tcm/usersguide/usersguideimg130.gif -share/doc/html/tcm/usersguide/usersguideimg131.gif -share/doc/html/tcm/usersguide/usersguideimg132.gif -share/doc/html/tcm/usersguide/usersguideimg133.gif -share/doc/html/tcm/usersguide/usersguideimg134.gif -share/doc/html/tcm/usersguide/usersguideimg135.gif -share/doc/html/tcm/usersguide/usersguideimg136.gif -share/doc/html/tcm/usersguide/usersguideimg137.gif -share/doc/html/tcm/usersguide/usersguideimg138.gif -share/doc/html/tcm/usersguide/usersguideimg139.gif -share/doc/html/tcm/usersguide/usersguideimg14.gif -share/doc/html/tcm/usersguide/usersguideimg140.gif -share/doc/html/tcm/usersguide/usersguideimg141.gif -share/doc/html/tcm/usersguide/usersguideimg142.gif -share/doc/html/tcm/usersguide/usersguideimg143.gif -share/doc/html/tcm/usersguide/usersguideimg144.gif -share/doc/html/tcm/usersguide/usersguideimg145.gif -share/doc/html/tcm/usersguide/usersguideimg146.gif -share/doc/html/tcm/usersguide/usersguideimg147.gif -share/doc/html/tcm/usersguide/usersguideimg148.gif -share/doc/html/tcm/usersguide/usersguideimg149.gif -share/doc/html/tcm/usersguide/usersguideimg15.gif -share/doc/html/tcm/usersguide/usersguideimg150.gif -share/doc/html/tcm/usersguide/usersguideimg151.gif -share/doc/html/tcm/usersguide/usersguideimg152.gif -share/doc/html/tcm/usersguide/usersguideimg153.gif -share/doc/html/tcm/usersguide/usersguideimg154.gif -share/doc/html/tcm/usersguide/usersguideimg155.gif -share/doc/html/tcm/usersguide/usersguideimg156.gif -share/doc/html/tcm/usersguide/usersguideimg157.gif -share/doc/html/tcm/usersguide/usersguideimg158.gif -share/doc/html/tcm/usersguide/usersguideimg159.gif -share/doc/html/tcm/usersguide/usersguideimg16.gif -share/doc/html/tcm/usersguide/usersguideimg160.gif -share/doc/html/tcm/usersguide/usersguideimg161.gif -share/doc/html/tcm/usersguide/usersguideimg162.gif -share/doc/html/tcm/usersguide/usersguideimg163.gif -share/doc/html/tcm/usersguide/usersguideimg164.gif -share/doc/html/tcm/usersguide/usersguideimg165.gif -share/doc/html/tcm/usersguide/usersguideimg166.gif -share/doc/html/tcm/usersguide/usersguideimg167.gif -share/doc/html/tcm/usersguide/usersguideimg168.gif -share/doc/html/tcm/usersguide/usersguideimg169.gif -share/doc/html/tcm/usersguide/usersguideimg17.gif -share/doc/html/tcm/usersguide/usersguideimg170.gif -share/doc/html/tcm/usersguide/usersguideimg171.gif -share/doc/html/tcm/usersguide/usersguideimg172.gif -share/doc/html/tcm/usersguide/usersguideimg173.gif -share/doc/html/tcm/usersguide/usersguideimg174.gif -share/doc/html/tcm/usersguide/usersguideimg175.gif -share/doc/html/tcm/usersguide/usersguideimg176.gif -share/doc/html/tcm/usersguide/usersguideimg177.gif -share/doc/html/tcm/usersguide/usersguideimg178.gif -share/doc/html/tcm/usersguide/usersguideimg179.gif -share/doc/html/tcm/usersguide/usersguideimg18.gif -share/doc/html/tcm/usersguide/usersguideimg180.gif -share/doc/html/tcm/usersguide/usersguideimg181.gif -share/doc/html/tcm/usersguide/usersguideimg182.gif -share/doc/html/tcm/usersguide/usersguideimg183.gif -share/doc/html/tcm/usersguide/usersguideimg184.gif -share/doc/html/tcm/usersguide/usersguideimg185.gif -share/doc/html/tcm/usersguide/usersguideimg186.gif -share/doc/html/tcm/usersguide/usersguideimg187.gif -share/doc/html/tcm/usersguide/usersguideimg188.gif -share/doc/html/tcm/usersguide/usersguideimg189.gif -share/doc/html/tcm/usersguide/usersguideimg19.gif -share/doc/html/tcm/usersguide/usersguideimg190.gif -share/doc/html/tcm/usersguide/usersguideimg191.gif -share/doc/html/tcm/usersguide/usersguideimg192.gif -share/doc/html/tcm/usersguide/usersguideimg193.gif -share/doc/html/tcm/usersguide/usersguideimg194.gif -share/doc/html/tcm/usersguide/usersguideimg195.gif -share/doc/html/tcm/usersguide/usersguideimg196.gif -share/doc/html/tcm/usersguide/usersguideimg197.gif -share/doc/html/tcm/usersguide/usersguideimg198.gif -share/doc/html/tcm/usersguide/usersguideimg199.gif -share/doc/html/tcm/usersguide/usersguideimg2.gif -share/doc/html/tcm/usersguide/usersguideimg20.gif -share/doc/html/tcm/usersguide/usersguideimg200.gif -share/doc/html/tcm/usersguide/usersguideimg201.gif -share/doc/html/tcm/usersguide/usersguideimg202.gif -share/doc/html/tcm/usersguide/usersguideimg203.gif -share/doc/html/tcm/usersguide/usersguideimg204.gif -share/doc/html/tcm/usersguide/usersguideimg205.gif -share/doc/html/tcm/usersguide/usersguideimg206.gif -share/doc/html/tcm/usersguide/usersguideimg207.gif -share/doc/html/tcm/usersguide/usersguideimg208.gif -share/doc/html/tcm/usersguide/usersguideimg209.gif -share/doc/html/tcm/usersguide/usersguideimg21.gif -share/doc/html/tcm/usersguide/usersguideimg210.gif -share/doc/html/tcm/usersguide/usersguideimg211.gif -share/doc/html/tcm/usersguide/usersguideimg212.gif -share/doc/html/tcm/usersguide/usersguideimg213.gif -share/doc/html/tcm/usersguide/usersguideimg214.gif -share/doc/html/tcm/usersguide/usersguideimg215.gif -share/doc/html/tcm/usersguide/usersguideimg22.gif -share/doc/html/tcm/usersguide/usersguideimg23.gif -share/doc/html/tcm/usersguide/usersguideimg24.gif -share/doc/html/tcm/usersguide/usersguideimg25.gif -share/doc/html/tcm/usersguide/usersguideimg26.gif -share/doc/html/tcm/usersguide/usersguideimg27.gif -share/doc/html/tcm/usersguide/usersguideimg28.gif -share/doc/html/tcm/usersguide/usersguideimg29.gif -share/doc/html/tcm/usersguide/usersguideimg3.gif -share/doc/html/tcm/usersguide/usersguideimg30.gif -share/doc/html/tcm/usersguide/usersguideimg31.gif -share/doc/html/tcm/usersguide/usersguideimg32.gif -share/doc/html/tcm/usersguide/usersguideimg33.gif -share/doc/html/tcm/usersguide/usersguideimg34.gif -share/doc/html/tcm/usersguide/usersguideimg35.gif -share/doc/html/tcm/usersguide/usersguideimg36.gif -share/doc/html/tcm/usersguide/usersguideimg37.gif -share/doc/html/tcm/usersguide/usersguideimg38.gif -share/doc/html/tcm/usersguide/usersguideimg39.gif -share/doc/html/tcm/usersguide/usersguideimg4.gif -share/doc/html/tcm/usersguide/usersguideimg40.gif -share/doc/html/tcm/usersguide/usersguideimg41.gif -share/doc/html/tcm/usersguide/usersguideimg42.gif -share/doc/html/tcm/usersguide/usersguideimg43.gif -share/doc/html/tcm/usersguide/usersguideimg44.gif -share/doc/html/tcm/usersguide/usersguideimg45.gif -share/doc/html/tcm/usersguide/usersguideimg46.gif -share/doc/html/tcm/usersguide/usersguideimg47.gif -share/doc/html/tcm/usersguide/usersguideimg48.gif -share/doc/html/tcm/usersguide/usersguideimg49.gif -share/doc/html/tcm/usersguide/usersguideimg5.gif -share/doc/html/tcm/usersguide/usersguideimg50.gif -share/doc/html/tcm/usersguide/usersguideimg51.gif -share/doc/html/tcm/usersguide/usersguideimg52.gif -share/doc/html/tcm/usersguide/usersguideimg53.gif -share/doc/html/tcm/usersguide/usersguideimg54.gif -share/doc/html/tcm/usersguide/usersguideimg55.gif -share/doc/html/tcm/usersguide/usersguideimg56.gif -share/doc/html/tcm/usersguide/usersguideimg57.gif -share/doc/html/tcm/usersguide/usersguideimg58.gif -share/doc/html/tcm/usersguide/usersguideimg59.gif -share/doc/html/tcm/usersguide/usersguideimg6.gif -share/doc/html/tcm/usersguide/usersguideimg60.gif -share/doc/html/tcm/usersguide/usersguideimg61.gif -share/doc/html/tcm/usersguide/usersguideimg62.gif -share/doc/html/tcm/usersguide/usersguideimg63.gif -share/doc/html/tcm/usersguide/usersguideimg64.gif -share/doc/html/tcm/usersguide/usersguideimg65.gif -share/doc/html/tcm/usersguide/usersguideimg66.gif -share/doc/html/tcm/usersguide/usersguideimg67.gif -share/doc/html/tcm/usersguide/usersguideimg68.gif -share/doc/html/tcm/usersguide/usersguideimg69.gif -share/doc/html/tcm/usersguide/usersguideimg7.gif -share/doc/html/tcm/usersguide/usersguideimg70.gif -share/doc/html/tcm/usersguide/usersguideimg71.gif -share/doc/html/tcm/usersguide/usersguideimg72.gif -share/doc/html/tcm/usersguide/usersguideimg73.gif -share/doc/html/tcm/usersguide/usersguideimg74.gif -share/doc/html/tcm/usersguide/usersguideimg75.gif -share/doc/html/tcm/usersguide/usersguideimg76.gif -share/doc/html/tcm/usersguide/usersguideimg77.gif -share/doc/html/tcm/usersguide/usersguideimg78.gif -share/doc/html/tcm/usersguide/usersguideimg79.gif -share/doc/html/tcm/usersguide/usersguideimg8.gif -share/doc/html/tcm/usersguide/usersguideimg80.gif -share/doc/html/tcm/usersguide/usersguideimg81.gif -share/doc/html/tcm/usersguide/usersguideimg82.gif -share/doc/html/tcm/usersguide/usersguideimg83.gif -share/doc/html/tcm/usersguide/usersguideimg84.gif -share/doc/html/tcm/usersguide/usersguideimg85.gif -share/doc/html/tcm/usersguide/usersguideimg86.gif -share/doc/html/tcm/usersguide/usersguideimg87.gif -share/doc/html/tcm/usersguide/usersguideimg88.gif -share/doc/html/tcm/usersguide/usersguideimg89.gif -share/doc/html/tcm/usersguide/usersguideimg9.gif -share/doc/html/tcm/usersguide/usersguideimg90.gif -share/doc/html/tcm/usersguide/usersguideimg91.gif -share/doc/html/tcm/usersguide/usersguideimg92.gif -share/doc/html/tcm/usersguide/usersguideimg93.gif -share/doc/html/tcm/usersguide/usersguideimg94.gif -share/doc/html/tcm/usersguide/usersguideimg95.gif -share/doc/html/tcm/usersguide/usersguideimg96.gif -share/doc/html/tcm/usersguide/usersguideimg97.gif -share/doc/html/tcm/usersguide/usersguideimg98.gif -share/doc/html/tcm/usersguide/usersguideimg99.gif -share/doc/html/tcm/usersguide/usersguidenode1.html -share/doc/html/tcm/usersguide/usersguidenode10.html -share/doc/html/tcm/usersguide/usersguidenode11.html -share/doc/html/tcm/usersguide/usersguidenode12.html -share/doc/html/tcm/usersguide/usersguidenode13.html -share/doc/html/tcm/usersguide/usersguidenode14.html -share/doc/html/tcm/usersguide/usersguidenode15.html -share/doc/html/tcm/usersguide/usersguidenode16.html -share/doc/html/tcm/usersguide/usersguidenode2.html -share/doc/html/tcm/usersguide/usersguidenode3.html -share/doc/html/tcm/usersguide/usersguidenode4.html -share/doc/html/tcm/usersguide/usersguidenode5.html -share/doc/html/tcm/usersguide/usersguidenode6.html -share/doc/html/tcm/usersguide/usersguidenode7.html -share/doc/html/tcm/usersguide/usersguidenode8.html -share/doc/html/tcm/usersguide/usersguidenode9.html -share/doc/html/tcm/wishlist/FutureDevelopments.html -share/doc/html/tcm/wishlist/WishList.html -share/doc/html/tcm/wishlist/WishListDone.html -share/doc/tcm/CHANGELOG -share/doc/tcm/COPYING -share/doc/tcm/README -share/doc/tcm/developersguide-2.01.ps.gz -share/doc/tcm/sourcecode-2.01.ps.gz -share/doc/tcm/usersguide-2.01.ps.gz -share/examples/tcm/tcm.conf -share/tcm/banner.ps -share/tcm/colorrgb.txt -share/tcm/help/CHANGELOG -share/tcm/help/COPYING -share/tcm/help/DiagramEditCommands -share/tcm/help/DiagramMainWindow -share/tcm/help/DiagramMiscCommands -share/tcm/help/DiagramMouseCommands -share/tcm/help/FileMenuCommands -share/tcm/help/GettingStarted -share/tcm/help/PrintPageCommands -share/tcm/help/StartingEditors -share/tcm/help/TCPDIntro -share/tcm/help/TCRDIntro -share/tcm/help/TDFDIntro -share/tcm/help/TDPDIntro -share/tcm/help/TEFDIntro -share/tcm/help/TERDIntro -share/tcm/help/TESDIntro -share/tcm/help/TFETIntro -share/tcm/help/TFRTIntro -share/tcm/help/TGDIntro -share/tcm/help/TGTIntro -share/tcm/help/TGTTIntro -share/tcm/help/TPSDIntro -share/tcm/help/TRPGIntro -share/tcm/help/TSNDIntro -share/tcm/help/TSSDIntro -share/tcm/help/TSTDIntro -share/tcm/help/TTDTIntro -share/tcm/help/TTUTIntro -share/tcm/help/TUCDIntro -share/tcm/help/TableEditCommands -share/tcm/help/TableMainWindow -share/tcm/help/TableMiscCommands -share/tcm/help/TableMouseCommands -share/tcm/help/Version -share/tcm/help/Welcome -@dirrm share/tcm/help -@dirrm share/tcm -@dirrm share/examples/tcm -@dirrm share/doc/tcm -@dirrm share/doc/html/tcm/wishlist -@dirrm share/doc/html/tcm/usersguide -@dirrm share/doc/html/tcm/specifications -@dirrm share/doc/html/tcm/sourcecode -@dirrm share/doc/html/tcm/developersguide -@dirrm share/doc/html/tcm diff --git a/graphics/tcm/distinfo b/graphics/tcm/distinfo deleted file mode 100644 index aa01facbd5b..00000000000 --- a/graphics/tcm/distinfo +++ /dev/null @@ -1,38 +0,0 @@ -$NetBSD: distinfo,v 1.9 2005/02/24 08:45:13 agc Exp $ - -SHA1 (tcm-2.01.src.tar.gz) = ce63d4310f43c89984cfcf2fc3da38eb55907c0f -RMD160 (tcm-2.01.src.tar.gz) = fc0ab993ddc5ca6ad5db9f2e52bad84691ea9474 -Size (tcm-2.01.src.tar.gz) = 3624778 bytes -SHA1 (patch-aa) = d5d18f58ebc7a4d11839c38d47b1ace338cce592 -SHA1 (patch-ab) = 68d58e4fcba032a3385c181878fab6452527a13a -SHA1 (patch-ac) = 1a85d3b44dbbf9291bec2f1a915ae23eec9818b3 -SHA1 (patch-ad) = 07a424b0da5f22bba82170847650b08c07625af9 -SHA1 (patch-ae) = b710a716cbfd2bed5ffdb21c5e793185db9a07d8 -SHA1 (patch-af) = 50c87ea3ca5b2b494b51ea272aa0c43c02f7daa3 -SHA1 (patch-ag) = e29f2518c9e63f2b9e427a6b4af6978ef6f285f0 -SHA1 (patch-ah) = 095886753437f5b0c2d65333d846635abdddd81c -SHA1 (patch-ai) = 5ac6114b5a2b1f72e7c03bc6ec722a1626e4a3ec -SHA1 (patch-aj) = d8c2af60833f0316f37130b2e83be26efe3b6e86 -SHA1 (patch-ak) = a5258112b0635f410265911017909dc089670cc1 -SHA1 (patch-al) = 49b18674873b9e4556f39013dd6677722f04eb64 -SHA1 (patch-am) = 7aa052825735b055f622c3917e14529ef5d808a5 -SHA1 (patch-an) = 1c33207bb1e29caef8c592542c347e9916745fcc -SHA1 (patch-ao) = 3581a8395b2ad1a861781f12f1a2fe05b3970cf4 -SHA1 (patch-ap) = 9aacd9d9500723db45d29f790edc0ef7ab14ed00 -SHA1 (patch-aq) = ed86083b7e02a235c84ffab3acbaffa8146f0945 -SHA1 (patch-ar) = 6b9b71925eb9a90d738c2646d51b0fd38f54a2d0 -SHA1 (patch-as) = acfdbdbaaac5878e658a83ba1c9a9d64f12db26f -SHA1 (patch-at) = a29da35a72967d05914d9c994eca66ae42caccea -SHA1 (patch-au) = 1fd448579b3add5793b94877c04e19c31bf04112 -SHA1 (patch-av) = 4f87570d2c1ca0f5640fd2426b4927994162035d -SHA1 (patch-aw) = aee0469f06370ee85920ade20f85b34ff4991506 -SHA1 (patch-ax) = f4627c5fcaf2e82c2c6fcf171dcdd9ee756949aa -SHA1 (patch-ay) = 2ac5cf63c87d4ff550908a16056b7b7074cd2d6f -SHA1 (patch-az) = cc01691826393fbf829b186f173eb0e44a27aad1 -SHA1 (patch-ba) = 198f12f68fd58ce09127d435334b1db718f8b969 -SHA1 (patch-bb) = 00aa951e4de26aec458bb1435d2d68a116380f3a -SHA1 (patch-bc) = 04ffc44017cb7c5a9bf1aaf0936a522c0d0271ad -SHA1 (patch-bd) = 858598fa54a61f1e136f59556eda5eb49423569e -SHA1 (patch-be) = 897d196188906b0030ef0c91ed4d7bf9fb6e0229 -SHA1 (patch-bf) = 9a229f7fd2d9b20dc5ff0ae62bb88eccf9be394c -SHA1 (patch-bg) = 0862580c3f4bf9fdde0dedfbf9cc2401f7f95249 diff --git a/graphics/tcm/patches/patch-aa b/graphics/tcm/patches/patch-aa deleted file mode 100644 index 9d1f7f273f4..00000000000 --- a/graphics/tcm/patches/patch-aa +++ /dev/null @@ -1,46 +0,0 @@ -$NetBSD: patch-aa,v 1.4 2002/09/23 01:26:26 jlam Exp $ - ---- /dev/null Thu May 10 23:00:48 2001 -+++ Config.tmpl_netbsd -@@ -0,0 +1,41 @@ -+# Configuration file for NetBSD and OpenMotif/LessTif. -+ -+SYSFLAGS = -DBSD -+ -+SRC_DIR = $(TCM_HOME)/src -+BIN_DIR = $(TCM_HOME)/bin -+LIB_DIR = $(TCM_HOME)/lib -+ -+MOTIF_INCLUDE = $(MOTIF_HOME)/include -+MOTIF_LIB = $(MOTIF_HOME)/lib -+ -+XWIN_INCLUDE = $(XWIN_HOME)/include -+XWIN_LIB = $(XWIN_HOME)/lib -+ -+LDFLAGS += -L$(LIB_DIR) -R$(MOTIF_LIB) -L$(MOTIF_LIB) -R$(XWIN_LIB) -L$(XWIN_LIB) -+ -+LDLIBS += ${MOTIFLIB} -lXt -lSM -lICE -lXext -lX11 -lm -+ -+STRIP ?= /usr/bin/true -+MV ?= /bin/mv -+RM ?= /bin/rm -+ -+INCLUDEDIRS = -I.\ -+ -I$(SRC_DIR)/bitmaps\ -+ -I$(SRC_DIR)/gl\ -+ -I$(SRC_DIR)/ui\ -+ -I$(SRC_DIR)/ed\ -+ -I$(SRC_DIR)/dg\ -+ -I$(SRC_DIR)/tb\ -+ -I$(MOTIF_INCLUDE)\ -+ -I$(XWIN_INCLUDE)\ -+ -+CPPFLAGS += $(SYSFLAGS) $(INCLUDEDIRS) -+MKDEPEND = $(XWIN_HOME)/bin/makedepend -+MKDEPENDFLAGS = $(CPPFLAGS) -I/usr/include/g++ -+ -+xclean: -+ $(RM) *.o core $(SRC_DIR)/ptrepository/* $(SRC_DIR)/Templates.DB/* -+ -+xdepend: -+ $(MKDEPEND) $(MKDEPENDFLAGS) *.*c diff --git a/graphics/tcm/patches/patch-ab b/graphics/tcm/patches/patch-ab deleted file mode 100644 index 26a14c762fc..00000000000 --- a/graphics/tcm/patches/patch-ab +++ /dev/null @@ -1,61 +0,0 @@ -$NetBSD: patch-ab,v 1.2 2001/05/10 23:35:28 jtb Exp $ - ---- st/Makefile.orig Wed Dec 20 13:32:45 2000 -+++ st/Makefile -@@ -9,40 +9,30 @@ - TBOBJECTS = $(TDOBJECTS) $(TUOBJECTS) $(FEOBJECTS) - - tcmt: $(TBOBJECTS) tcmt.o -- $(PURIFY) $(CC) $(CFLAGS) $(TBOBJECTS) tcmt.o \ -- $(LIB_DIR)/libtable.a $(LIB_DIR)/libeditor.a $(LIB_DIR)/libgui.a \ -- -o $@ $(LDFLAGS) $(LIB_DIR)/libglobal.a $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(TBOBJECTS) tcmt.o \ -+ -L$(LIB_DIR) -ltcmtable -ltcmeditor -ltcmgui \ -+ -o $@ $(LDFLAGS) -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - tgt: $(OBJECTS) tableeditor.o -- $(PURIFY) $(CC) $(CFLAGS) tableeditor.o -o $@ \ -- $(LDFLAGS) -ltable -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) tableeditor.o -o $@ \ -+ $(LDFLAGS) -ltcmtable -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - ttdt: $(TDOBJECTS) tdeditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(TDOBJECTS) tdeditor.o -o $@ \ -- $(LDFLAGS) -ltable -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(TDOBJECTS) tdeditor.o -o $@ \ -+ $(LDFLAGS) -ltcmtable -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - ttut: $(TUOBJECTS) tueditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(TUOBJECTS) tueditor.o -o $@ \ -- $(LDFLAGS) -ltable -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(TUOBJECTS) tueditor.o -o $@ \ -+ $(LDFLAGS) -ltcmtable -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - tfet: $(FEOBJECTS) feeditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(FEOBJECTS) feeditor.o -o $@ \ -- $(LDFLAGS) -ltable -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(FEOBJECTS) feeditor.o -o $@ \ -+ $(LDFLAGS) -ltcmtable -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - clean: xclean - diff --git a/graphics/tcm/patches/patch-ac b/graphics/tcm/patches/patch-ac deleted file mode 100644 index ff6a0c9c3ad..00000000000 --- a/graphics/tcm/patches/patch-ac +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-ac,v 1.2 2001/04/11 21:32:00 jtb Exp $ - ---- dg/diagramchecks.h.orig Fri Aug 27 14:11:46 1999 -+++ dg/diagramchecks.h -@@ -23,7 +23,6 @@ - #define _DIAGRAMCHECKS_H - - #include "bool.h" --#include <values.h> - class Graph; - class Diagram; - class string; diff --git a/graphics/tcm/patches/patch-ad b/graphics/tcm/patches/patch-ad deleted file mode 100644 index 0fe86d62692..00000000000 --- a/graphics/tcm/patches/patch-ad +++ /dev/null @@ -1,51 +0,0 @@ -$NetBSD: patch-ad,v 1.2 2002/06/28 09:29:02 agc Exp $ - ---- gl/system.c.orig Tue Nov 21 12:32:14 2000 -+++ gl/system.c -@@ -47,7 +47,7 @@ - - const char System::TOOLKIT_HOME_VAR_NAME[] = "TCM_HOME"; - --const char System::TOOLKIT_HOME_DEFAULT[] = "/home/tcm"; -+const char System::TOOLKIT_HOME_DEFAULT[] = "@PREFIX@"; - - bool System::sendBugEmail = True; - char System::emailAddress[MAXNAME] = "tcm@cs.vu.nl"; -@@ -63,13 +63,11 @@ - // most common Unix directories for system wide available binaries. - const char *System::STD_SEARCH_DIRS[] = - {"./", "/bin/", "/usr/bin/", "/usr/local/bin/", -- "/usr/local/tcm/bin", "/home/tcm/bin", "/usr/bin/X11/", -- "/usr/ucb/", "/usr/sbin/", "/usr/X11/bin/", "/usr/openwin/bin/", -- "/opt/tcm/bin", "/usr/local/X11/bin", "/usr/local/bin/X11/", -- "/usr/openwin/contrib/bin", "/Window/X11/bin", -- "/Window/X11/contrib/bin", 0}; -+ "@PREFIX@/bin/", "@X11BASE@/bin/", "@LOCALBASE@/bin/", -+ "/usr/openwin/bin", "/usr/sbin/", "/usr/X11/bin/", -+ "/opt/tcm/bin", "/usr/local/X11/bin", "/usr/local/bin/X11/", 0}; - --#if defined(LINUX) || defined(AIX) || defined(HPUX) || defined(OSF1) -+#if defined(LINUX) || defined(AIX) || defined(HPUX) || defined(OSF1) || defined(__NetBSD__) - typedef void (*SIG_PF)(int); - #endif - -@@ -177,11 +175,14 @@ - return; - } - else { -- cerr << "Error: " << TOOLKIT_HOME_VAR_NAME -- << " environment variable is not set" << endl; -- cerr << "please set this variable to the" -- " directory where the software is installed " -- "and try it again" << endl; -+ const char *p2 = TOOLKIT_HOME_DEFAULT; -+ strncpy(home, p2, MAXNAME-1); -+ return; -+ // cerr << "Error: " << TOOLKIT_HOME_VAR_NAME -+ // << " environment variable is not set" << endl; -+ //cerr << "please set this variable to the" -+ // " directory where the software is installed " -+ // "and try it again" << endl; - } - exit(1); - } diff --git a/graphics/tcm/patches/patch-ae b/graphics/tcm/patches/patch-ae deleted file mode 100644 index effd88b7326..00000000000 --- a/graphics/tcm/patches/patch-ae +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-ae,v 1.2 2001/04/11 21:32:00 jtb Exp $ - ---- sd/bv/stdiagram.c.orig Tue Mar 21 12:53:27 2000 -+++ sd/bv/stdiagram.c -@@ -34,7 +34,9 @@ - #include "transitionarrow.h" - #include "initialstatebox.h" - #include "stdiagram.h" --#include <values.h> -+#include <limits.h> -+ -+#define MAXINT INT_MAX - - const int STDiagram::BOX_WIDTH = 100; - const int STDiagram::BOX_HEIGHT = 38; diff --git a/graphics/tcm/patches/patch-af b/graphics/tcm/patches/patch-af deleted file mode 100644 index a6d066e6699..00000000000 --- a/graphics/tcm/patches/patch-af +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-af,v 1.2 2001/04/11 21:32:00 jtb Exp $ - ---- sd/bv/rpdiagram.c.orig Mon Jul 26 10:44:03 1999 -+++ sd/bv/rpdiagram.c -@@ -34,7 +34,9 @@ - #include "line.h" - #include "rpdiagram.h" - #include "diagramchecks.h" --#include <values.h> -+#include <limits.h> -+ -+#define MAXINT INT_MAX - - const int RPDiagram::BOX_WIDTH = 58; - const int RPDiagram::BOX_HEIGHT = 38; diff --git a/graphics/tcm/patches/patch-ag b/graphics/tcm/patches/patch-ag deleted file mode 100644 index 82b6604c7e8..00000000000 --- a/graphics/tcm/patches/patch-ag +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-ag,v 1.2 2001/04/11 21:32:00 jtb Exp $ - ---- sd/bv/atdiagram.c.orig Mon Oct 23 10:30:35 2000 -+++ sd/bv/atdiagram.c -@@ -46,6 +46,9 @@ - #include "atgraph.h" - #include "atviewer.h" - #include "atwindow.h" -+#include <limits.h> -+ -+#define MAXINT INT_MAX - - const int ATDiagram::DOT_WIDTH = 8; - diff --git a/graphics/tcm/patches/patch-ah b/graphics/tcm/patches/patch-ah deleted file mode 100644 index a1601ae15dd..00000000000 --- a/graphics/tcm/patches/patch-ah +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-ah,v 1.2 2001/04/11 21:32:01 jtb Exp $ - ---- sd/dv/crdiagram.c.orig Mon Sep 25 11:34:40 2000 -+++ sd/dv/crdiagram.c -@@ -38,7 +38,9 @@ - #include "textbox.h" - #include "comment.h" - #include "crdiagram.h" --#include <values.h> -+#include <limits.h> -+ -+#define MAXINT INT_MAX - - CRDiagram::CRDiagram(Config *c, CRWindow *d, CRViewer *v, CRGraph *g): - ERDiagram(c, d, v, g) { diff --git a/graphics/tcm/patches/patch-ai b/graphics/tcm/patches/patch-ai deleted file mode 100644 index fea0f33ce49..00000000000 --- a/graphics/tcm/patches/patch-ai +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-ai,v 1.2 2001/04/11 21:32:01 jtb Exp $ - ---- sd/dv/esddiagram.c.orig Mon Oct 23 09:27:10 2000 -+++ sd/dv/esddiagram.c -@@ -56,7 +56,6 @@ - #include "miniellipse.h" - #include "esddiagram.h" - #include <stdio.h> --#include <values.h> - - const int ESDDiagram::MINI_ELLIPSE_WIDTH = 8; - const int ESDDiagram::MINI_ELLIPSE_HEIGHT = 8; diff --git a/graphics/tcm/patches/patch-aj b/graphics/tcm/patches/patch-aj deleted file mode 100644 index 1785cafea7b..00000000000 --- a/graphics/tcm/patches/patch-aj +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-aj,v 1.2 2001/04/11 21:32:01 jtb Exp $ - ---- sd/dv/ssddiagram.c.orig Mon Oct 23 09:22:45 2000 -+++ sd/dv/ssddiagram.c -@@ -56,7 +56,6 @@ - #include "note.h" - #include "ssddiagram.h" - #include <stdio.h> --#include <values.h> - - const int SSDDiagram::MINI_ELLIPSE_WIDTH = 8; - const int SSDDiagram::MINI_ELLIPSE_HEIGHT = 8; diff --git a/graphics/tcm/patches/patch-ak b/graphics/tcm/patches/patch-ak deleted file mode 100644 index ad522c4490a..00000000000 --- a/graphics/tcm/patches/patch-ak +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-ak,v 1.2 2001/04/11 21:32:01 jtb Exp $ - ---- sd/dv/ucdiagram.c.orig Mon Oct 23 10:09:42 2000 -+++ sd/dv/ucdiagram.c -@@ -41,7 +41,6 @@ - #include "ucdiagram.h" - #include "note.h" - #include <stdio.h> --#include <values.h> - - UCDiagram::UCDiagram(Config *c, UCWindow *d, UCViewer *v, UCGraph *g): - ERDiagram(c, d, v, g) { diff --git a/graphics/tcm/patches/patch-al b/graphics/tcm/patches/patch-al deleted file mode 100644 index 543d0f9b39d..00000000000 --- a/graphics/tcm/patches/patch-al +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-al,v 1.3 2002/07/08 02:48:18 wiz Exp $ - ---- ed/startupwindow.c.orig Fri Feb 9 15:44:45 2001 -+++ ed/startupwindow.c -@@ -38,6 +38,9 @@ - #include "liteclue.h" - #include "grafport.h" - #include "Teapot2a.xbm" -+#ifdef LESSTIF -+#include <stdio.h> -+#endif - #include <stdlib.h> - #include <Xm/XmAll.h> - diff --git a/graphics/tcm/patches/patch-am b/graphics/tcm/patches/patch-am deleted file mode 100644 index 2f11e44af9a..00000000000 --- a/graphics/tcm/patches/patch-am +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-am,v 1.2 2001/04/11 21:32:01 jtb Exp $ - ---- sd/tr/trdiagram.c.orig Fri Jun 18 15:30:17 1999 -+++ sd/tr/trdiagram.c -@@ -32,7 +32,10 @@ - #include "trgraph.h" - #include "trview.h" - #include "diagramchecks.h" -- -+#include <limits.h> -+ -+#define MAXINT INT_MAX -+ - TRDiagram::TRDiagram(Config *c, TRWindow *d, TRViewer *v, TRGraph *g): - Diagram(c,d,v,g) { - UpdateNodeType(1); diff --git a/graphics/tcm/patches/patch-an b/graphics/tcm/patches/patch-an deleted file mode 100644 index 63f04cb0b88..00000000000 --- a/graphics/tcm/patches/patch-an +++ /dev/null @@ -1,23 +0,0 @@ -$NetBSD: patch-an,v 1.3 2002/07/08 02:48:18 wiz Exp $ - ---- ui/application.c.orig Fri Nov 10 04:52:16 2000 -+++ ui/application.c -@@ -28,6 +28,9 @@ - #include "inputfile.h" - #include "system.h" - #include "color.h" -+#ifdef LESSTIF -+#include <stdio.h> -+#endif - #include <stdlib.h> - #include <string.h> - #include <Xm/XmStrDefs.h> -@@ -41,7 +44,7 @@ - return Application::XErrorHandler(dpy, err_event); - } - --const char Application::COLORFILE[] = "lib/colorrgb.txt"; -+const char Application::COLORFILE[] = "share/tcm/colorrgb.txt"; - - Application *theApplication = 0; - diff --git a/graphics/tcm/patches/patch-ao b/graphics/tcm/patches/patch-ao deleted file mode 100644 index b10aa2b5ab7..00000000000 --- a/graphics/tcm/patches/patch-ao +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ao,v 1.1.1.1 2001/02/24 01:30:07 jtb Exp $ - ---- ui/psgrafport.c.orig Fri Feb 23 18:12:13 2001 -+++ ui/psgrafport.c -@@ -25,7 +25,7 @@ - #include "color.h" - #include <ctype.h> - --const char PSGrafport::BANNER[] = "lib/banner.ps"; -+const char PSGrafport::BANNER[] = "share/tcm/banner.ps"; - - const double PSGrafport::DEFAULT_LINE_WIDTH = 0.750; - diff --git a/graphics/tcm/patches/patch-ap b/graphics/tcm/patches/patch-ap deleted file mode 100644 index 0befece9af0..00000000000 --- a/graphics/tcm/patches/patch-ap +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ap,v 1.2 2003/01/01 22:02:02 jmmv Exp $ - ---- gl/config.c.orig Fri Feb 23 18:13:48 2001 -+++ gl/config.c -@@ -27,7 +27,7 @@ - #include <stdlib.h> - #include <string.h> - --const char Config::SYS_CONFIG[] = "lib/tcm.conf"; -+const char Config::SYS_CONFIG[] = PKG_SYSCONFDIR "/tcm.conf"; - const char Config::USER_CONFIG[] = ".tcmrc"; - - Config::Config(const char *s) { diff --git a/graphics/tcm/patches/patch-aq b/graphics/tcm/patches/patch-aq deleted file mode 100644 index b9043c153d4..00000000000 --- a/graphics/tcm/patches/patch-aq +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-aq,v 1.1.1.1 2001/02/24 01:30:07 jtb Exp $ - ---- ed/helper.c.orig Fri Feb 23 18:17:11 2001 -+++ ed/helper.c -@@ -44,7 +44,7 @@ - char home[MAXNAME]; - System::GetToolkitHome(home); - string helpFile = home; -- helpFile += "/lib/help/"; -+ helpFile += "/share/tcm/help/"; - - switch(tp) { - case WELCOME: diff --git a/graphics/tcm/patches/patch-ar b/graphics/tcm/patches/patch-ar deleted file mode 100644 index 684869f308d..00000000000 --- a/graphics/tcm/patches/patch-ar +++ /dev/null @@ -1,54 +0,0 @@ -$NetBSD: patch-ar,v 1.2 2001/05/10 23:35:28 jtb Exp $ - ---- sd/gd/Makefile.orig Wed Dec 20 13:33:23 2000 -+++ sd/gd/Makefile -@@ -7,37 +7,27 @@ - gdwindow.o - - tcmgd: $(GDOBJECTS) tcmgd.o -- $(PURIFY) $(CC) $(CFLAGS) $(GDOBJECTS) \ -- -ldiagram -leditor -lguix $(LIB_DIR)/libglobal.a \ -+ $(CXX) $(CXXFLAGS) $(GDOBJECTS) \ -+ -ltcmdiagram -ltcmeditor -ltcmguix -ltcmglobal \ - tcmgd.o -o $@ $(LDFLAGS) $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(MV) -f $@ $(BIN_DIR) - - libtcmgd.a: $(GDOBJECTS) -- $(AR) $@ $(GDOBJECTS) -- chmod a+rx $@ -+ $(AR) cr $@ $(GDOBJECTS) - $(RANLIB) $@ -- $(MV) $@ $(LIB_DIR) -+ $(MV) -f $@ $(LIB_DIR) - - tgd: $(GDOBJECTS) gdeditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(GDOBJECTS) gdeditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(GDOBJECTS) gdeditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - tcmd: tcmd.o -- $(PURIFY) $(CC) $(CFLAGS) tcmd.o -o $@ \ -+ $(CXX) $(CXXFLAGS) tcmd.o -o $@ \ - -I../dv -I../bv -I../tr -I../fv \ -- $(LDFLAGS) $(LIB_DIR)/libtcmgd.a $(LIB_DIR)/libtcmtr.a \ -- $(LIB_DIR)/libtcmdv.a $(LIB_DIR)/libtcmbv.a $(LIB_DIR)/libtcmfv.a \ -- $(LIB_DIR)/libtcmpv.a \ -- $(LIB_DIR)/libdiagram.a $(LIB_DIR)/libeditor.a \ -- $(LIB_DIR)/libgui.a $(LIB_DIR)/libglobal.a $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(LDFLAGS) -ltcmgd -ltcmtr -ltcmdv -ltcmbv -ltcmfv -ltcmpv \ -+ -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - - clean: xclean diff --git a/graphics/tcm/patches/patch-as b/graphics/tcm/patches/patch-as deleted file mode 100644 index d9217e88b84..00000000000 --- a/graphics/tcm/patches/patch-as +++ /dev/null @@ -1,62 +0,0 @@ -$NetBSD: patch-as,v 1.2 2001/05/10 23:35:28 jtb Exp $ - ---- Makefile.gcc.orig Wed Dec 13 10:57:07 2000 -+++ Makefile.gcc -@@ -18,45 +18,45 @@ - - tcm: - ( cp ed/edinstances.h gl/instances.h ) -- ( cd ./gl ; touch llist.c ) -- ( $(MAKE) libglobal.a ) -+ ( cd ./gl ; touch llist.cc ) -+ ( $(MAKE) libtcmglobal.a ) - ( cd ./ed ; $(MAKE) $@) - - tcmd: - ( cp sd/sdinstances.h gl/instances.h ) -- ( cd ./gl ; touch llist.c ) -- ( $(MAKE) libglobal.a ) -+ ( cd ./gl ; touch llist.cc ) -+ ( $(MAKE) libtcmglobal.a ) - ( cd ./sd ; $(MAKE) $@) - - tcmgd tcmtr tcmdv tcmbv \ - tgtt tfrt tgd terd tesd tcrd tssd tucd tatd tstd tpsd tsnd trpg \ - tscd tsqd tcbd tcpd tdpd: - ( cp dg/dginstances.h gl/instances.h ) -- ( cd ./gl ; touch llist.c ) -- ( $(MAKE) libglobal.a ) -+ ( cd ./gl ; touch llist.cc ) -+ ( $(MAKE) libtcmglobal.a ) - ( cd ./sd ; $(MAKE) $@) - - tcmfv tdfd tefd: - ( cp sd/fv/dfinstances.h gl/instances.h ) -- ( cd ./gl ; touch llist.c ) -- ( $(MAKE) libglobal.a ) -+ ( cd ./gl ; touch llist.cc ) -+ ( $(MAKE) libtcmglobal.a ) - ( cd ./sd ; $(MAKE) $@) - - tcmt tgt ttdt ttut tfet: - ( cp tb/tbinstances.h gl/instances.h ) -- ( cd ./gl ; touch llist.c ) -- ( $(MAKE) libglobal.a ) -+ ( cd ./gl ; touch llist.cc ) -+ ( $(MAKE) libtcmglobal.a ) - ( cd ./st ; $(MAKE) $@) - - # csod: - # ( cp cx/cx_instances.h gl/instances.h ) --# ( cd ./gl ; touch llist.c ) -+# ( cd ./gl ; touch llist.cc ) - # ( $(MAKE) libglobal.a ) - # ( cd ./cx ; $(MAKE) $@) - - # ced: - # ( cp dg/dginstances.h gl/instances.h ) --# ( cd ./gl ; touch llist.c ) -+# ( cd ./gl ; touch llist.cc ) - # ( $(MAKE) libglobal.a ) - # ( cd ./cx ; $(MAKE) $@) - diff --git a/graphics/tcm/patches/patch-at b/graphics/tcm/patches/patch-at deleted file mode 100644 index 48f2e29c6b5..00000000000 --- a/graphics/tcm/patches/patch-at +++ /dev/null @@ -1,76 +0,0 @@ -$NetBSD: patch-at,v 1.2 2001/05/10 23:35:28 jtb Exp $ - ---- Makefile.GEN.orig Wed Dec 13 10:57:26 2000 -+++ Makefile.GEN -@@ -18,7 +18,7 @@ - # colorx: libs text2ps csod ced - - # make static libs. --staticlibs: libglobal.a libgui.a libeditor.a libdiagram.a libtable.a -+staticlibs: libtcmglobal.a libtcmgui.a libtcmeditor.a libtcmdiagram.a libtcmtable.a - - # make dynamic libs. - dynamiclibs: libglobal.so libgui.so libeditor.so libdiagram.so libtable.so -@@ -42,37 +42,37 @@ - ( cd ./tb ; $(MAKE) libtable.so) - - --libglobal.a: -- ( cd ./gl ; $(MAKE) libglobal.a) -- ( cd $(LIB_DIR) ; $(RANLIB) libglobal.a) -- --libgui.a: -- ( cd ./ui ; $(MAKE) libgui.a) -- ( cd $(LIB_DIR) ; $(RANLIB) libgui.a) -- --libguix.a: -- ( cd ./ui ; $(MAKE) libguix.a) -- ( cd $(LIB_DIR) ; $(RANLIB) libguix.a) -- --libeditor.a: -- ( cd ./ed ; $(MAKE) libeditor.a) -- ( cd $(LIB_DIR) ; $(RANLIB) libeditor.a) -+libtcmglobal.a: -+ ( cd ./gl ; $(MAKE) libtcmglobal.a) -+ ( cd $(LIB_DIR) ; $(RANLIB) libtcmglobal.a) -+ -+libtcmgui.a: -+ ( cd ./ui ; $(MAKE) libtcmgui.a) -+ ( cd $(LIB_DIR) ; $(RANLIB) libtcmgui.a) -+ -+libtcmguix.a: -+ ( cd ./ui ; $(MAKE) libtcmguix.a) -+ ( cd $(LIB_DIR) ; $(RANLIB) libtcmguix.a) -+ -+libtcmeditor.a: -+ ( cd ./ed ; $(MAKE) libtcmeditor.a) -+ ( cd $(LIB_DIR) ; $(RANLIB) libtcmeditor.a) - - # the touchy thing is necessary that the right template - # instances are linked in the static lib. --libdiagram.a: -+libtcmdiagram.a: - ( cp dg/dginstances.h gl/instances.h ) -- ( cd ./gl ; touch llist.c ) -- ( $(MAKE) libglobal.a ) -- ( cd ./dg ; $(MAKE) libdiagram.a) -- ( cd $(LIB_DIR) ; $(RANLIB) libdiagram.a) -+ ( cd ./gl ; touch llist.cc ) -+ ( $(MAKE) libtcmglobal.a ) -+ ( cd ./dg ; $(MAKE) libtcmdiagram.a) -+ ( cd $(LIB_DIR) ; $(RANLIB) libtcmdiagram.a) - --libtable.a: -+libtcmtable.a: - ( cp tb/tbinstances.h gl/instances.h ) -- ( cd ./gl ; touch llist.c ) -- ( $(MAKE) libglobal.a ) -- ( cd ./tb ; $(MAKE) libtable.a) -- ( cd $(LIB_DIR) ; $(RANLIB) libtable.a) -+ ( cd ./gl ; touch llist.cc ) -+ ( $(MAKE) libtcmglobal.a ) -+ ( cd ./tb ; $(MAKE) libtcmtable.a) -+ ( cd $(LIB_DIR) ; $(RANLIB) libtcmtable.a) - - - SUBDIRS = gl ui ed dg tb sd st diff --git a/graphics/tcm/patches/patch-au b/graphics/tcm/patches/patch-au deleted file mode 100644 index d074ee77fe2..00000000000 --- a/graphics/tcm/patches/patch-au +++ /dev/null @@ -1,93 +0,0 @@ -$NetBSD: patch-au,v 1.2 2001/05/10 23:35:28 jtb Exp $ - ---- sd/dv/Makefile.orig Wed Dec 20 13:33:17 2000 -+++ sd/dv/Makefile -@@ -93,64 +93,51 @@ - $(SESDOBJECTSX) $(ESDOBJECTSX) $(SSDOBJECTSX) $(UCDOBJECTSX) - - tcmdv: $(DVOBJECTS) tcmdv.o -- $(PURIFY) $(CC) $(CFLAGS) $(DVOBJECTS) \ -- $(LDFLAGS) -ldiagram -leditor -lguix $(LIB_DIR)/libglobal.a \ -+ $(CXX) $(CXXFLAGS) $(DVOBJECTS) \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmguix -ltcmglobal \ - tcmdv.o -o $@ $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(MV) -f $@ $(BIN_DIR) - - libtcmdv.a: $(DVOBJECTS) -- $(AR) $@ $(DVOBJECTS) -- chmod a+rx $@ -+ $(AR) cr $@ $(DVOBJECTS) - $(RANLIB) $@ -- $(MV) $@ $(LIB_DIR) -+ $(MV) -f $@ $(LIB_DIR) - - terd: $(EROBJECTS) ereditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(EROBJECTS) ereditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(EROBJECTS) ereditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - tcrd: $(CROBJECTS) creditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(CROBJECTS) creditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(CROBJECTS) creditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - tesd: $(ESDOBJECTS) esdeditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(ESDOBJECTS) esdeditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(ESDOBJECTS) esdeditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - tssd: $(SSDOBJECTS) ssdeditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(SSDOBJECTS) ssdeditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(SSDOBJECTS) ssdeditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - tucd: $(UCDOBJECTS) uceditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(UCDOBJECTS) uceditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(UCDOBJECTS) uceditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - cardconstraint.tab.h: cardconstraint.y -- $(YACC) --debug -p cardconstraint -d cardconstraint.y -+ $(YACC) -b cardconstraint -p cardconstraint -d cardconstraint.y - cardconstraint.tab.c: cardconstraint.y cardconstraint.l -- $(YACC) --debug -p cardconstraint -d cardconstraint.y -+ $(YACC) -b cardconstraint -p cardconstraint -d cardconstraint.y - cardconstraint.c: cardconstraint.l cardconstraint.tab.h - $(LEX) -Pcardconstraint -ocardconstraint.c cardconstraint.l - cardconstraint.o: cardconstraint.c -- $(Cc) -c cardconstraint.c -+ $(CC) $(CPPFLAGS) $(CFLAGS) -c cardconstraint.c - cardconstraint.tab.o: cardconstraint.tab.h cardconstraint.tab.c -- $(Cc) -c cardconstraint.tab.c -+ $(CC) $(CPPFLAGS) $(CFLAGS) -c cardconstraint.tab.c - - clean: xclean - rm -f cardconstraint.c cardconstraint.tab.h cardconstraint.tab.c diff --git a/graphics/tcm/patches/patch-av b/graphics/tcm/patches/patch-av deleted file mode 100644 index cd7453f63b3..00000000000 --- a/graphics/tcm/patches/patch-av +++ /dev/null @@ -1,73 +0,0 @@ -$NetBSD: patch-av,v 1.2 2001/05/10 23:35:28 jtb Exp $ - ---- sd/fv/Makefile.orig Wed Dec 20 13:33:20 2000 -+++ sd/fv/Makefile -@@ -51,50 +51,42 @@ - FVOBJECTS = $(DCFOBJECTS) $(SNOBJECTS) - - tcmfv: $(FVOBJECTS) tcmfv.o -- $(PURIFY) $(CC) $(CFLAGS) $(FVOBJECTS) \ -- -ldiagram -leditor -lguix $(LIB_DIR)/libglobal.a \ -+ $(CXX) $(CXXFLAGS) $(FVOBJECTS) \ -+ -ltcmdiagram -ltcmeditor -ltcmguix -ltcmlglobal \ - tcmfv.o -o $@ $(LDFLAGS) $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(MV) -f $@ $(BIN_DIR) - - libtcmfv.a: $(FVOBJECTS) -- $(AR) $@ $(FVOBJECTS) -- chmod a+rx $@ -+ $(AR) cr $@ $(FVOBJECTS) - $(RANLIB) $@ -- $(MV) $@ $(LIB_DIR) -+ $(MV) -f $@ $(LIB_DIR) - - tdfd: $(DFOBJECTS) dfeditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(DFOBJECTS) dfeditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(DFOBJECTS) dfeditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - tsnd: $(SNOBJECTS) $(PARSER) sneditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(SNOBJECTS) $(PARSER) sneditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -+ $(CXX) $(CXXFLAGS) $(SNOBJECTS) $(PARSER) sneditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) - chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(MV) -f $@ $(BIN_DIR) - - tefd: $(DCFOBJECTS) dcfeditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(DCFOBJECTS) dcfeditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(DCFOBJECTS) dcfeditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - cardconstraint.tab.h: cardconstraint.y -- $(YACC) --debug -p cardconstraint -d cardconstraint.y -+ $(YACC) -b cardconstraint -p cardconstraint -d cardconstraint.y - cardconstraint.tab.c: cardconstraint.y cardconstraint.l -- $(YACC) --debug -p cardconstraint -d cardconstraint.y -+ $(YACC) -b cardconstraint -p cardconstraint -d cardconstraint.y - cardconstraint.c: cardconstraint.l cardconstraint.tab.h - $(LEX) -Pcardconstraint -ocardconstraint.c cardconstraint.l - cardconstraint.o: cardconstraint.c -- $(Cc) -c cardconstraint.c -+ $(CC) $(CPPFLAGS) $(CFLAGS) -c cardconstraint.c - cardconstraint.tab.o: cardconstraint.tab.h cardconstraint.tab.c -- $(Cc) -c cardconstraint.tab.c -+ $(CC) $(CPPFLAGS) $(CFLAGS) -c cardconstraint.tab.c - - clean: xclean - rm -f cardconstraint.c cardconstraint.tab.h cardconstraint.tab.c diff --git a/graphics/tcm/patches/patch-aw b/graphics/tcm/patches/patch-aw deleted file mode 100644 index 05d8a7f5b20..00000000000 --- a/graphics/tcm/patches/patch-aw +++ /dev/null @@ -1,18 +0,0 @@ -$NetBSD: patch-aw,v 1.1 2001/05/10 23:35:28 jtb Exp $ - ---- dg/Makefile.orig Wed Dec 20 13:32:28 2000 -+++ dg/Makefile -@@ -117,10 +117,9 @@ - whitedot.o - - --libdiagram.a: $(OBJECTS) -- $(AR) $@ $(OBJECTS) -- chmod a+rx $@ -- $(MV) $@ $(LIB_DIR) -+libtcmdiagram.a: $(OBJECTS) -+ $(AR) cr $@ $(OBJECTS) -+ $(MV) -f $@ $(LIB_DIR) - - libdiagram.so: $(OBJECTS) - $(CC) $(CFLAGS) $(SHAREDFLAG) $(OBJECTS) -o $@ diff --git a/graphics/tcm/patches/patch-ax b/graphics/tcm/patches/patch-ax deleted file mode 100644 index fffc9b7c667..00000000000 --- a/graphics/tcm/patches/patch-ax +++ /dev/null @@ -1,33 +0,0 @@ -$NetBSD: patch-ax,v 1.1 2001/05/10 23:35:28 jtb Exp $ - ---- ed/Makefile.orig Wed Dec 20 13:32:34 2000 -+++ ed/Makefile -@@ -18,10 +18,9 @@ - startupwindow.o\ - startup.o - --libeditor.a: $(OBJECTS) -- $(AR) $@ $(OBJECTS) -- chmod a+rx $@ -- $(MV) $@ $(LIB_DIR) -+libtcmeditor.a: $(OBJECTS) -+ $(AR) cr $@ $(OBJECTS) -+ $(MV) -f $@ $(LIB_DIR) - - libeditor.so: $(OBJECTS) - $(CC) $(CFLAGS) $(SHAREDFLAG) $(OBJECTS) -o $@ -@@ -30,11 +29,9 @@ - $(MV) $@ $(LIB_DIR) - - tcm: $(STARTOBJECTS) -- $(PURIFY) $(CC) $(CFLAGS) $(STARTOBJECTS) -o $@ \ -- $(LDFLAGS) -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(STARTOBJECTS) -o $@ \ -+ $(LDFLAGS) -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - clean: xclean - diff --git a/graphics/tcm/patches/patch-ay b/graphics/tcm/patches/patch-ay deleted file mode 100644 index a0f01652bed..00000000000 --- a/graphics/tcm/patches/patch-ay +++ /dev/null @@ -1,28 +0,0 @@ -$NetBSD: patch-ay,v 1.1 2001/05/10 23:35:28 jtb Exp $ - ---- gl/Makefile.orig Wed Dec 20 13:32:38 2000 -+++ gl/Makefile -@@ -28,17 +28,15 @@ - version.o - - text2ps.o: -- $(Cc) -c text2ps.c -+ $(CC) $(CPPFLAGS) $(CFLAGS) -c text2ps.c - - text2ps: text2ps.o -- $(Cc) text2ps.o -o $@ -- chmod a+rx $@ -- $(MV) $@ $(BIN_DIR) -+ $(CC) text2ps.o -o $@ -+ $(MV) -f $@ $(BIN_DIR) - --libglobal.a: $(OBJECTS) -- $(AR) $@ $(OBJECTS) -- chmod a+rx $@ -- $(MV) $@ $(LIB_DIR) -+libtcmglobal.a: $(OBJECTS) -+ $(AR) cr $@ $(OBJECTS) -+ $(MV) -f $@ $(LIB_DIR) - - libglobal.so: $(OBJECTS) - $(CC) $(CFLAGS) $(SHAREDFLAG) $(OBJECTS) -o $@ diff --git a/graphics/tcm/patches/patch-az b/graphics/tcm/patches/patch-az deleted file mode 100644 index e034244f2de..00000000000 --- a/graphics/tcm/patches/patch-az +++ /dev/null @@ -1,68 +0,0 @@ -$NetBSD: patch-az,v 1.1 2001/05/10 23:35:28 jtb Exp $ - ---- sd/bv/Makefile.orig Wed Dec 20 13:33:13 2000 -+++ sd/bv/Makefile -@@ -50,46 +50,35 @@ - BVOBJECTS = $(STOBJECTS) $(PSOBJECTS) $(RPOBJECTS) $(ATOBJECTS) - - tcmbv: $(BVOBJECTS) tcmbv.o -- $(PURIFY) $(CC) $(CFLAGS) $(BVOBJECTS) \ -- -ldiagram -leditor -lguix $(LIB_DIR)/libglobal.a \ -+ $(CXX) $(CXXFLAGS) $(BVOBJECTS) \ -+ -ltcmdiagram -ltcmeditor -ltcmguix -ltcmglobal \ - tcmbv.o -o $@ $(LDFLAGS) $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(MV) -f $@ $(BIN_DIR) - - libtcmbv.a: $(BVOBJECTS) -- $(AR) $@ $(BVOBJECTS) -- chmod a+rx $@ -+ $(AR) cr $@ $(BVOBJECTS) - $(RANLIB) $@ -- $(MV) $@ $(LIB_DIR) -+ $(MV) -f $@ $(LIB_DIR) - - tpsd: $(PSOBJECTS) pseditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(PSOBJECTS) pseditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(PSOBJECTS) pseditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - tstd: $(STOBJECTS) steditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(STOBJECTS) steditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(STOBJECTS) steditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - trpg: $(RPOBJECTS) rpeditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(RPOBJECTS) rpeditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(RPOBJECTS) rpeditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - tatd: $(ATOBJECTS) ateditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(ATOBJECTS) ateditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(ATOBJECTS) ateditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - - clean: xclean diff --git a/graphics/tcm/patches/patch-ba b/graphics/tcm/patches/patch-ba deleted file mode 100644 index 056ab3cbc3a..00000000000 --- a/graphics/tcm/patches/patch-ba +++ /dev/null @@ -1,48 +0,0 @@ -$NetBSD: patch-ba,v 1.1 2001/05/10 23:35:28 jtb Exp $ - ---- sd/pv/Makefile.orig Wed Dec 20 13:33:26 2000 -+++ sd/pv/Makefile -@@ -17,32 +17,25 @@ - PVOBJECTS = $(CPOBJECTS) $(DPOBJECTS) - - tcmpv: $(PVOBJECTS) tcmpv.o -- $(PURIFY) $(CC) $(CFLAGS) $(PVOBJECTS) \ -- -ldiagram -leditor -lguix $(LIB_DIR)/libglobal.a \ -+ $(CXX) $(CXXFLAGS) $(PVOBJECTS) \ -+ -ltcmdiagram -ltcmeditor -ltcmguix -ltcmglobal \ - tcmpv.o -o $@ $(LDFLAGS) $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(MV) -f $@ $(BIN_DIR) - - libtcmpv.a: $(PVOBJECTS) -- $(AR) $@ $(PVOBJECTS) -- chmod a+rx $@ -+ $(AR) cr $@ $(PVOBJECTS) - $(RANLIB) $@ -- $(MV) $@ $(LIB_DIR) -+ $(MV) -f $@ $(LIB_DIR) - - tcpd: $(CPOBJECTS) cpeditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(CPOBJECTS) cpeditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(CPOBJECTS) cpeditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - tdpd: $(PVOBJECTS) dpeditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(PVOBJECTS) dpeditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(PVOBJECTS) dpeditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - clean: xclean - diff --git a/graphics/tcm/patches/patch-bb b/graphics/tcm/patches/patch-bb deleted file mode 100644 index 334ea9f5e04..00000000000 --- a/graphics/tcm/patches/patch-bb +++ /dev/null @@ -1,48 +0,0 @@ -$NetBSD: patch-bb,v 1.1 2001/05/10 23:35:28 jtb Exp $ - ---- sd/tr/Makefile.orig Wed Dec 20 13:33:29 2000 -+++ sd/tr/Makefile -@@ -17,32 +17,25 @@ - TROBJECTS = $(FDOBJECTS) - - tcmtr: $(TROBJECTS) tcmtr.o -- $(PURIFY) $(CC) $(CFLAGS) $(TROBJECTS) \ -- -ldiagram -leditor -lguix $(LIB_DIR)/libglobal.a \ -+ $(CXX) $(CXXFLAGS) $(TROBJECTS) \ -+ -ltcmdiagram -ltcmeditor -ltcmguix -ltcmglobal \ - tcmtr.o -o $@ $(LDFLAGS) $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(MV) -f $@ $(BIN_DIR) - - libtcmtr.a: $(TROBJECTS) -- $(AR) $@ $(TROBJECTS) -- chmod a+rx $@ -+ $(AR) cr $@ $(TROBJECTS) - $(RANLIB) $@ -- $(MV) $@ $(LIB_DIR) -+ $(MV) -f $@ $(LIB_DIR) - - tgtt: $(GTOBJECTS) gteditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(GTOBJECTS) gteditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(GTOBJECTS) gteditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - tfrt: $(FDOBJECTS) fdeditor.o -- $(PURIFY) $(CC) $(CFLAGS) $(FDOBJECTS) fdeditor.o -o $@ \ -- $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS) -- chmod a+rx $@ -- $(STRIP) $@ -- $(MV) $@ $(BIN_DIR) -+ $(CXX) $(CXXFLAGS) $(FDOBJECTS) fdeditor.o -o $@ \ -+ $(LDFLAGS) -ltcmdiagram -ltcmeditor -ltcmgui -ltcmglobal $(LDLIBS) -+ $(MV) -f $@ $(BIN_DIR) - - clean: xclean - diff --git a/graphics/tcm/patches/patch-bc b/graphics/tcm/patches/patch-bc deleted file mode 100644 index ac1aef2db28..00000000000 --- a/graphics/tcm/patches/patch-bc +++ /dev/null @@ -1,18 +0,0 @@ -$NetBSD: patch-bc,v 1.1 2001/05/10 23:35:28 jtb Exp $ - ---- tb/Makefile.orig Wed Dec 20 13:32:48 2000 -+++ tb/Makefile -@@ -54,10 +54,9 @@ - updatecelltextunderlinecmd.o\ - updatecelltextfontcmd.o - --libtable.a: $(OBJECTS) -- $(AR) $@ $(OBJECTS) -- chmod a+rx $@ -- $(MV) $@ $(LIB_DIR) -+libtcmtable.a: $(OBJECTS) -+ $(AR) cr $@ $(OBJECTS) -+ $(MV) -f $@ $(LIB_DIR) - - libtable.so: $(OBJECTS) - $(CC) $(CFLAGS) $(SHAREDFLAG) $(OBJECTS) -o $@ diff --git a/graphics/tcm/patches/patch-bd b/graphics/tcm/patches/patch-bd deleted file mode 100644 index f7044b92714..00000000000 --- a/graphics/tcm/patches/patch-bd +++ /dev/null @@ -1,26 +0,0 @@ -$NetBSD: patch-bd,v 1.1 2001/05/10 23:35:28 jtb Exp $ - ---- ui/Makefile.orig Wed Dec 20 13:32:52 2000 -+++ ui/Makefile -@@ -49,15 +49,13 @@ - - MAIN = main.o - --libgui.a: $(OBJECTS) $(MAIN) -- $(AR) $@ $(OBJECTS) $(MAIN) -- chmod a+rx $@ -- $(MV) $@ $(LIB_DIR) -+libtcmgui.a: $(OBJECTS) $(MAIN) -+ $(AR) cr $@ $(OBJECTS) $(MAIN) -+ $(MV) -f $@ $(LIB_DIR) - --libguix.a: $(OBJECTS) -- ar cr $@ $(OBJECTS) -- chmod a+rx $@ -- $(MV) $@ $(LIB_DIR) -+libtcmguix.a: $(OBJECTS) -+ $(AR) cr $@ $(OBJECTS) -+ $(MV) -f $@ $(LIB_DIR) - - libgui.so: $(OBJECTS) $(MAIN) - $(CC) $(CFLAGS) $(SHAREDFLAG) $(OBJECTS) $(MAIN) -o $@ diff --git a/graphics/tcm/patches/patch-be b/graphics/tcm/patches/patch-be deleted file mode 100644 index 38d79b686ee..00000000000 --- a/graphics/tcm/patches/patch-be +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-be,v 1.1 2002/07/08 02:48:18 wiz Exp $ - ---- ui/textviewdialog.c.orig Tue Apr 4 18:25:17 2000 -+++ ui/textviewdialog.c -@@ -30,6 +30,9 @@ - #include "printeroptions.h" - #include "application.h" - #include <Xm/XmAll.h> -+#ifdef LESSTIF -+#include <stdio.h> -+#endif - #include <stdlib.h> - #include <unistd.h> - #include <ctype.h> diff --git a/graphics/tcm/patches/patch-bf b/graphics/tcm/patches/patch-bf deleted file mode 100644 index b340f3c7b0c..00000000000 --- a/graphics/tcm/patches/patch-bf +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-bf,v 1.1 2002/07/08 02:48:18 wiz Exp $ - ---- ui/error.c.orig Fri Jun 18 10:29:04 1999 -+++ ui/error.c -@@ -23,6 +23,9 @@ - #include "application.h" - #include "messagelogdialog.h" - #include <stdarg.h> -+#ifdef LESSTIF -+#include <stdio.h> -+#endif - - void error(const char *fmt ...) { - // we're not getting huge strings diff --git a/graphics/tcm/patches/patch-bg b/graphics/tcm/patches/patch-bg deleted file mode 100644 index f0e1a03faa3..00000000000 --- a/graphics/tcm/patches/patch-bg +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-bg,v 1.1 2002/07/08 02:48:18 wiz Exp $ - ---- ui/colorchooserdialog.c.orig Mon Mar 20 16:27:05 2000 -+++ ui/colorchooserdialog.c -@@ -22,6 +22,9 @@ - #include "colorchooserdialog.h" - #include "application.h" - #include "mstring.h" -+#ifdef LESSTIF -+#include <stdio.h> -+#endif - #include <Xm/XmAll.h> - #include <stdlib.h> - |