debian/0000755000000000000000000000000012252677741007203 5ustar debian/watch0000644000000000000000000000020412252677512010224 0ustar version=3 opts="uversionmangle=s/-.*//" \ http://www.qcad.org/en/dxflib-downloads \ /archives/dxflib/dxflib-(.*)\-src\.tar\.gz debian/copyright0000644000000000000000000000555012161712211011120 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: dxflib Source: http://www.ribbonsoft.com/en/what-is-dxflib Files: ./src/* Copyright: 2001 Robert J. Campbell Jr 2001-2003 RibbonSoft. License: GPL-2.0 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. Files: ./test/main.cpp ./test/test_creationclass.cpp ./test/test_creationclass.h Copyright: 2000-2001, Andrew Mustun 2001, Andrew Mustun License: LGPL-2.0 This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. . You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/LGPL-2'. Files: debian/* Copyright: 2011 Scott Howard License: GPL-2.0+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. debian/source/0000755000000000000000000000000011713547576010506 5ustar debian/source/format0000644000000000000000000000001411713547576011714 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000012252676421010624 5ustar debian/patches/FTBFS_cstring_h.patch0000644000000000000000000000067112161626304014547 0ustar Description: Missing include needs to be added Author: Scott Howard Index: dxflib/src/dl_writer.h =================================================================== --- dxflib.orig/src/dl_writer.h 2013-06-23 13:13:35.127629322 -0400 +++ dxflib/src/dl_writer.h 2013-06-23 13:13:35.119629321 -0400 @@ -37,6 +37,7 @@ #endif #include +#include #include "dl_attributes.h" #include "dl_codes.h" debian/patches/series0000644000000000000000000000005112161662626012036 0ustar FTBFS_cstring_h.patch build-system.patch debian/patches/fix_boundaries.patch0000644000000000000000000000244511724544204014647 0ustar Author: Rallaz Subject: fix boundaries issues. Fixes a boundary bug. Patch needed for LibreCAD. diff --git a/src/dl_dxf.cpp b/src/dl_dxf.cpp index 939fed2..b398acd 100644 --- a/src/dl_dxf.cpp +++ b/src/dl_dxf.cpp @@ -1358,6 +1358,7 @@ bool DL_Dxf::handleHatchData(DL_CreationInterface* /*creationInterface*/) { hatchLoopIndex++; hatchLoops[hatchLoopIndex] = DL_HatchLoopData(toInt(groupValue)); + hatchLoops[hatchLoopIndex].pathType = toInt(values[92]); maxHatchEdges[hatchLoopIndex] = toInt(groupValue); hatchEdgeIndex[hatchLoopIndex] = -1; @@ -1948,6 +1949,7 @@ void DL_Dxf::addHatch(DL_CreationInterface* creationInterface) { for (int l=0; laddHatchLoop(ld); for (int b=0; baddHatchEdge(hatchEdges[l][b]); diff --git a/src/dl_entities.h b/src/dl_entities.h index 39f7617..dfb47f0 100644 --- a/src/dl_entities.h +++ b/src/dl_entities.h @@ -1272,6 +1272,7 @@ struct DL_HatchLoopData { /*! Number of edges in this loop. */ int numEdges; + int pathType; //Boundary path type }; debian/patches/build-system.patch0000644000000000000000000000613312252676421014271 0ustar Description: Build system for shared library. Author: Scott Howard Index: dxflib/Makefile.am =================================================================== --- /dev/null 1970-01-01 00:00:00.000000000 +0000 +++ dxflib/Makefile.am 2013-12-13 16:32:42.560922659 -0500 @@ -0,0 +1,32 @@ +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = dxflib.pc + +BASE_DIR = ./src + +BASE_SRC = \ + $(BASE_DIR)/dl_dxf.cpp \ + $(BASE_DIR)/dl_writer_ascii.cpp + +BASE_INS = \ + $(BASE_DIR)/dl_attributes.h \ + $(BASE_DIR)/dl_codes.h \ + $(BASE_DIR)/dl_creationadapter.h \ + $(BASE_DIR)/dl_creationinterface.h \ + $(BASE_DIR)/dl_dxf.h \ + $(BASE_DIR)/dl_entities.h \ + $(BASE_DIR)/dl_exception.h \ + $(BASE_DIR)/dl_extrusion.h \ + $(BASE_DIR)/dl_writer.h \ + $(BASE_DIR)/dl_writer_ascii.h + +lib_LTLIBRARIES = libdxflib.la +libdxflib_la_SOURCES = $(BASE_SRC) +libdxflib_la_includedir=$(includedir)/dxflib +libdxflib_la_include_HEADERS = $(BASE_INS) +libdxflib_la_LDFLAGS = -release @VERSION@ + +testing: + (cd ./test ; make) + +docu: + -(doxygen ./doxygen.cfg) Index: dxflib/dxflib.pc.in =================================================================== --- /dev/null 1970-01-01 00:00:00.000000000 +0000 +++ dxflib/dxflib.pc.in 2013-12-13 16:32:42.560922659 -0500 @@ -0,0 +1,10 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@/dxflib + +Name: dxflib +Description: Library for reading dxf files +Version: @PACKAGE_VERSION@ +Libs: -L${libdir} -ldxflib +Cflags: -I${includedir} Index: dxflib/configure.in =================================================================== --- dxflib.orig/configure.in 2013-12-13 16:32:42.568922659 -0500 +++ dxflib/configure.in 2013-12-13 16:33:02.000923121 -0500 @@ -2,7 +2,12 @@ # # Check for one project file # -AC_INIT(src/dl_dxf.cpp) +AC_PREREQ([2.67]) +AC_INIT([dxflib], [2.5.0.0], []) +AC_CONFIG_SRCDIR([src/dl_exception.h]) +AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) +m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) +AC_PROG_LIBTOOL PRODUCT=dxflib @@ -48,7 +53,7 @@ # finally create makefiles using Makefile.in # echo -AC_OUTPUT(Makefile test/Makefile) +AC_OUTPUT(Makefile test/Makefile dxflib.pc) echo echo "Run 'make depend' to create dependencies." Index: dxflib/test/Makefile =================================================================== --- dxflib.orig/test/Makefile 2013-12-13 16:32:42.568922659 -0500 +++ dxflib/test/Makefile 2013-12-13 16:32:42.560922659 -0500 @@ -5,7 +5,7 @@ OBJF = main.o \ test_creationclass.o -EXTERN_LIBS = -L../lib -ldxflib -L/usr/X11R6/lib -lX11 +EXTERN_LIBS = -L../libs -ldxflib -L/usr/X11R6/lib -lX11 INCLUDES = -I../src all: main Index: dxflib/test/Makefile.in =================================================================== --- dxflib.orig/test/Makefile.in 2013-12-13 16:32:42.568922659 -0500 +++ dxflib/test/Makefile.in 2013-12-13 16:32:42.560922659 -0500 @@ -5,7 +5,7 @@ OBJF = main.o \ test_creationclass.o -EXTERN_LIBS = -L../lib -ldxflib -L/usr/X11R6/lib -lX11 +EXTERN_LIBS = -L../.libs -ldxflib -L/usr/X11R6/lib -lX11 INCLUDES = -I../src all: main debian/control0000644000000000000000000000346212161714316010600 0ustar Source: dxflib Priority: optional Maintainer: Debian Science Team Uploaders: Scott Howard , Lisandro Damián Nicanor Pérez Meyer Build-Depends: debhelper (>= 9), dh-autoreconf, autotools-dev, libx11-dev Standards-Version: 3.9.4 Section: libs Homepage: http://www.qcad.org/en/what-is-dxflib Vcs-Git: git://anonscm.debian.org/debian-science/packages/dxflib.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-science/packages/dxflib.git Package: libdxflib-dev Priority: extra Section: libdevel Architecture: any Depends: libdxflib-2.5.0.0 (= ${binary:Version}), ${misc:Depends} Description: Development files for the dxflib library dxflib is a C++ library for reading and writing DXF files. When reading DXF files, dxflib parses the file and calls functions that you define in your own C++ class for adding entities, layers, etc. . This package contains the development files (headers and documentation) for libdxflib. Package: libdxflib-2.5.0.0 Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: Library for reading and writing DXF files dxflib is a C++ library for reading and writing DXF files. When reading DXF files, dxflib parses the file and calls functions that you define in your own C++ class for adding entities, layers, etc. Package: libdxflib-2.5.0.0-dbg Priority: extra Section: debug Architecture: any Depends: libdxflib-2.5.0.0 (= ${binary:Version}), ${misc:Depends} Description: Debugging symbols for the dxflib library dxflib is a C++ library for reading and writing DXF files. When reading DXF files, dxflib parses the file and calls functions that you define in your own C++ class for adding entities, layers, etc. . This package contains the debugging symbols for libdxflib. debian/libdxflib-2.5.0.0.install0000644000000000000000000000003112161676150013312 0ustar usr/lib/*/libdxflib-*.so debian/libdxflib-dev.install0000644000000000000000000000011412161676161013274 0ustar usr/include/* usr/lib/*/lib*.a usr/lib/*/libdxflib.so usr/lib/*/pkgconfig/* debian/README.source0000644000000000000000000000020211713547576011357 0ustar dxflib for Debian ----------------- dxflib's build system builds static libraries. Debian patches it to build shared libraries. debian/copyright_hints0000644000000000000000000000137012052315777012340 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: FIXME Upstream-Contact: FIXME Source: FIXME Disclaimer: Autogenerated by CDBS Files: ./src/dl_attributes.h ./src/dl_creationadapter.h ./src/dl_creationinterface.h ./src/dl_dxf.cpp ./src/dl_dxf.h ./src/dl_entities.h ./src/dl_extrusion.h Copyright: 2001-2003, RibbonSoft. License: UNKNOWN FIXME Files: ./src/dl_codes.h ./src/dl_exception.h ./src/dl_writer.h ./src/dl_writer_ascii.cpp ./src/dl_writer_ascii.h Copyright: 2001, Robert J. Campbell Jr 2001-2003, RibbonSoft. License: UNKNOWN FIXME Files: ./test/main.cpp ./test/test_creationclass.cpp ./test/test_creationclass.h Copyright: 2000-2001, Andrew Mustun 2001, Andrew Mustun License: LGPL FIXME debian/rules0000755000000000000000000000155212161714344010254 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 DEB_UPSTREAM_VERSION=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([^+]+).*-.*,\1,p') %: mv configure.in configure.ac dh $@ --with autoreconf mv configure.ac configure.in override_dh_auto_test: make testing override_dh_strip: dh_strip --dbg-package=libdxflib-$(DEB_UPSTREAM_VERSION)-dbg override_dh_makeshlibs: dh_makeshlibs -- -c0 -v$(DEB_UPSTREAM_VERSION) get-orig-source: uscan --download-current-version --repack --rename debian/changelog0000644000000000000000000000423312252677475011063 0ustar dxflib (2.5.0.0-2) unstable; urgency=low * Merge from experimental to unstable. (Closes: #731577) -- Scott Howard Fri, 13 Dec 2013 16:41:48 -0500 dxflib (2.5.0.0-1) experimental; urgency=low * New upstream release. * Dropped debian/patches/hatch_fix.patch: - patch from depending project that no longer uses dxflib * Enable multi-arch, S-V 3.9.4, hardening flags * Fix a FTBFS for missing AM_PROG_AR macro (Closes: #713303) -- Scott Howard Sun, 23 Jun 2013 17:16:54 -0400 dxflib (2.2.0.0-8) unstable; urgency=low * More hatch fixes in debian/patches/hatches_fixes.patch -- Scott Howard Sat, 03 Mar 2012 21:25:22 -0500 dxflib (2.2.0.0-7) unstable; urgency=low [ Lisandro Damián Nicanor Pérez Meyer ] * Previous upload also included patch to solve a boundary bug needed by LibreCAD. Thanks Rallaz for the patch. [ Scott Howard ] * Added symbols file, managed by pkgkde-symbolshelper -- Scott Howard Sun, 05 Feb 2012 13:39:54 -0500 dxflib (2.2.0.0-6) unstable; urgency=low * Add myself to Uploaders. -- Lisandro Damián Nicanor Pérez Meyer Mon, 10 Oct 2011 14:24:55 -0300 dxflib (2.2.0.0-5) unstable; urgency=low * Moved headers to /usr/include/dxflib as excepted by upstream makefile (Closes: #630999) * Debian S-V 3.9.2 no changes -- Scott Howard Sun, 19 Jun 2011 13:19:16 -0400 dxflib (2.2.0.0-4) unstable; urgency=low * Corrected debian/copyright to be GPLv2 and LGPLv2 -- Scott Howard Thu, 21 Apr 2011 23:11:41 -0400 dxflib (2.2.0.0-3) unstable; urgency=low * Removed symbols files, FTBFS (arch-dep symbols) -- Scott Howard Thu, 14 Apr 2011 09:08:15 -0400 dxflib (2.2.0.0-2) unstable; urgency=low * Set source package priority: optional, no change to binary packages * Removed *.la from debian/libdxflib-dev.install -- Scott Howard Thu, 07 Apr 2011 19:13:27 -0400 dxflib (2.2.0.0-1) unstable; urgency=low * Initial release (Closes: #617623) -- Scott Howard Sat, 12 Mar 2011 12:00:24 -0500 debian/libdxflib-2.5.0.0.symbols0000644000000000000000000002037312252670425013347 0ustar # SymbolsHelper-Confirmed: 2.5.0.0 i386 libdxflib-2.5.0.0.so libdxflib-2.5.0.0 #MINVER# _ZN10DL_WriterA10strReplaceEPccc@Base 2.2.0.0 _ZN10DL_WriterAD0Ev@Base 2.2.0.0 _ZN10DL_WriterAD1Ev@Base 2.2.0.0 _ZN10DL_WriterAD2Ev@Base 2.2.0.0 _ZN11DL_TextDataD1Ev@Base 2.5.0.0 _ZN11DL_TextDataD2Ev@Base 2.5.0.0 _ZN12DL_MTextDataD1Ev@Base 2.5.0.0 _ZN12DL_MTextDataD2Ev@Base 2.5.0.0 _ZN13DL_AttributesD1Ev@Base 2.5.0.0 _ZN13DL_AttributesD2Ev@Base 2.5.0.0 _ZN15DL_ImageDefDataD1Ev@Base 2.5.0.0 _ZN15DL_ImageDefDataD2Ev@Base 2.5.0.0 _ZN16DL_DimensionDataD1Ev@Base 2.5.0.0 _ZN16DL_DimensionDataD2Ev@Base 2.5.0.0 _ZN20DL_CreationInterface13setAttributesERK13DL_Attributes@Base 2.5.0.0 _ZN6DL_Dxf10addCommentEP20DL_CreationInterfacePKc@Base 2.2.0.0 _ZN6DL_Dxf10addEllipseEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf10addSettingEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf10getDimDataEv@Base 2.2.0.0 _ZN6DL_Dxf10writeAppidER10DL_WriterARKSs@Base 2.2.0.0 _ZN6DL_Dxf10writeBlockER10DL_WriterARK12DL_BlockData@Base 2.2.0.0 _ZN6DL_Dxf10writeImageER10DL_WriterARK12DL_ImageDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf10writeLayerER10DL_WriterARK12DL_LayerDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf10writeMTextER10DL_WriterARK12DL_MTextDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf10writePointER10DL_WriterARK12DL_PointDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf10writeSolidER10DL_WriterARK12DL_TraceDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf10writeStyleER10DL_WriterA@Base 2.2.0.0 _ZN6DL_Dxf10writeVPortER10DL_WriterA@Base 2.2.0.0 _ZN6DL_Dxf11addImageDefEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf11addPolylineEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf11endSequenceEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf11stringToIntEPKcPb@Base 2.2.0.0 _ZN6DL_Dxf11write3dFaceER10DL_WriterARK12DL_TraceDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf11writeCircleER10DL_WriterARK13DL_CircleDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf11writeHatch1ER10DL_WriterARK12DL_HatchDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf11writeHatch2ER10DL_WriterARK12DL_HatchDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf11writeHeaderER10DL_WriterA@Base 2.2.0.0 _ZN6DL_Dxf11writeInsertER10DL_WriterARK13DL_InsertDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf11writeLeaderER10DL_WriterARK13DL_LeaderDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf11writeSplineER10DL_WriterARK13DL_SplineDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf11writeVertexER10DL_WriterARK13DL_VertexData@Base 2.2.0.0 _ZN6DL_Dxf12addDimLinearEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf12addDimRadialEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf12writeCommentER10DL_WriterARKSs@Base 2.2.0.0 _ZN6DL_Dxf12writeEllipseER10DL_WriterARK14DL_EllipseDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf12writeObjectsER10DL_WriterA@Base 2.2.0.0 _ZN6DL_Dxf13addDimAlignedEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf13addDimAngularEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf13checkVariableEPKcN8DL_Codes7versionE@Base 2.2.0.0 _ZN6DL_Dxf13getLibVersionEPKc@Base 2.2.0.0 _ZN6DL_Dxf13readDxfGroupsEP8_IO_FILEP20DL_CreationInterfacePi@Base 2.2.0.0 _ZN6DL_Dxf13readDxfGroupsERSt18basic_stringstreamIcSt11char_traitsIcESaIcEEP20DL_CreationInterfacePi@Base 2.2.0.0 _ZN6DL_Dxf13writeDimStyleER10DL_WriterAddddd@Base 2.2.0.0 _ZN6DL_Dxf13writeEndBlockER10DL_WriterARKSs@Base 2.2.0.0 _ZN6DL_Dxf13writeImageDefER10DL_WriterAiRK12DL_ImageData@Base 2.2.0.0 _ZN6DL_Dxf13writeLineTypeER10DL_WriterARK15DL_LineTypeData@Base 2.2.0.0 _ZN6DL_Dxf13writePolylineER10DL_WriterARK15DL_PolylineDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf14addDimOrdinateEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf14getChoppedLineEPcjP8_IO_FILE@Base 2.2.0.0 _ZN6DL_Dxf14getChoppedLineEPcjRSt18basic_stringstreamIcSt11char_traitsIcESaIcEE@Base 2.2.0.0 _ZN6DL_Dxf14writeDimLinearER10DL_WriterARK16DL_DimensionDataRK16DL_DimLinearDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf14writeDimRadialER10DL_WriterARK16DL_DimensionDataRK16DL_DimRadialDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf14writeHatchEdgeER10DL_WriterARK16DL_HatchEdgeData@Base 2.2.0.0 _ZN6DL_Dxf15addDimAngular3PEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf15addDimDiametricEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf15handleHatchDataEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf15handleMTextDataEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf15processDXFGroupEP20DL_CreationInterfaceiPKc@Base 2.2.0.0 _ZN6DL_Dxf15stripWhiteSpaceEPPc@Base 2.2.0.0 _ZN6DL_Dxf15writeDimAlignedER10DL_WriterARK16DL_DimensionDataRK17DL_DimAlignedDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf15writeDimAngularER10DL_WriterARK16DL_DimensionDataRK17DL_DimAngularDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf15writeHatchLoop1ER10DL_WriterARK16DL_HatchLoopData@Base 2.2.0.0 _ZN6DL_Dxf15writeHatchLoop2ER10DL_WriterARK16DL_HatchLoopData@Base 2.2.0.0 _ZN6DL_Dxf15writeObjectsEndER10DL_WriterA@Base 2.2.0.0 _ZN6DL_Dxf16handleLeaderDataEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf16handleSplineDataEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf16writeBlockRecordER10DL_WriterA@Base 2.2.0.0 _ZN6DL_Dxf16writeBlockRecordER10DL_WriterARKSs@Base 2.2.0.0 _ZN6DL_Dxf16writeDimOrdinateER10DL_WriterARK16DL_DimensionDataRK18DL_DimOrdinateDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf16writePolylineEndER10DL_WriterA@Base 2.2.0.0 _ZN6DL_Dxf17writeControlPointER10DL_WriterARK19DL_ControlPointData@Base 2.2.0.0 _ZN6DL_Dxf17writeDimAngular3PER10DL_WriterARK16DL_DimensionDataRK19DL_DimAngular3PDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf17writeDimDiametricER10DL_WriterARK16DL_DimensionDataRK19DL_DimDiametricDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf17writeLeaderVertexER10DL_WriterARK19DL_LeaderVertexData@Base 2.2.0.0 _ZN6DL_Dxf20handleLWPolylineDataEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf2inERKSsP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf2inERSt18basic_stringstreamIcSt11char_traitsIcESaIcEEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf3outEPKcN8DL_Codes7versionE@Base 2.2.0.0 _ZN6DL_Dxf4testEv@Base 2.2.0.0 _ZN6DL_Dxf6addArcEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf7addLineEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf7addTextEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf8addBlockEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf8addHatchEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf8addImageEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf8addLayerEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf8addMTextEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf8addPointEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf8addSolidEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf8addTraceEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf8endBlockEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf8writeArcER10DL_WriterARK10DL_ArcDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf8writeUcsER10DL_WriterA@Base 2.2.0.0 _ZN6DL_Dxf9add3dFaceEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf9addAttribEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf9addCircleEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf9addInsertEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf9addLeaderEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf9addSplineEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf9addVertexEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf9endEntityEP20DL_CreationInterface@Base 2.2.0.0 _ZN6DL_Dxf9writeKnotER10DL_WriterARK11DL_KnotData@Base 2.2.0.0 _ZN6DL_Dxf9writeLineER10DL_WriterARK11DL_LineDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf9writeTextER10DL_WriterARK11DL_TextDataRK13DL_Attributes@Base 2.2.0.0 _ZN6DL_Dxf9writeViewER10DL_WriterA@Base 2.2.0.0 _ZN6DL_DxfC1Ev@Base 2.2.0.0 _ZN6DL_DxfC2Ev@Base 2.2.0.0 _ZN6DL_DxfD1Ev@Base 2.2.0.0 _ZN6DL_DxfD2Ev@Base 2.2.0.0 _ZN9DL_WriterD0Ev@Base 2.2.0.0 _ZN9DL_WriterD1Ev@Base 2.2.0.0 _ZN9DL_WriterD2Ev@Base 2.2.0.0 _ZNK10DL_WriterA10openFailedEv@Base 2.2.0.0 _ZNK10DL_WriterA5closeEv@Base 2.2.0.0 _ZNK10DL_WriterA6dxfHexEii@Base 2.2.0.0 _ZNK10DL_WriterA6dxfIntEii@Base 2.2.0.0 _ZNK10DL_WriterA7dxfRealEid@Base 2.2.0.0 _ZNK10DL_WriterA9dxfStringEiPKc@Base 2.2.0.0 _ZNK10DL_WriterA9dxfStringEiRKSs@Base 2.2.0.0 _ZNK9DL_Writer16entityAttributesERK13DL_Attributes@Base 2.5.0.0 _ZNK9DL_Writer18tableLineTypeEntryEm@Base 2.5.0.0 _ZTI10DL_WriterA@Base 2.2.0.0 _ZTI9DL_Writer@Base 2.2.0.0 _ZTS10DL_WriterA@Base 2.2.0.0 _ZTS9DL_Writer@Base 2.2.0.0 _ZTV10DL_WriterA@Base 2.2.0.0 _ZTV9DL_Writer@Base 2.2.0.0 debian/compat0000644000000000000000000000000212161667126010374 0ustar 9