diff --git a/graphics/podofo/Makefile b/graphics/podofo/Makefile index a3ad7002f64e..3b3d1822ecc8 100644 --- a/graphics/podofo/Makefile +++ b/graphics/podofo/Makefile @@ -1,8 +1,6 @@ PORTNAME= podofo -PORTVERSION= 0.9.8 -PORTREVISION= 1 +DISTVERSION= 0.10.0 CATEGORIES= graphics print -MASTER_SITES= SF MAINTAINER= sunpoet@FreeBSD.org COMMENT= PDF manipulation library and tools @@ -11,38 +9,23 @@ WWW= http://podofo.sourceforge.net/ LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi +BUILD_DEPENDS= libfmt>0:devel/libfmt \ + utf8cpp>0:devel/utf8cpp LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ - libidn.so:dns/libidn - -USES= cmake compiler:c++11-lang cpe dos2unix pkgconfig ssl - -CMAKE_ARGS= -DFONTCONFIG_LIBRARIES=${LOCALBASE}/lib/libfontconfig.so \ - -DOPENSSL_INCLUDE_DIR=${OPENSSLINC} \ - -DOPENSSL_LIBRARIES=${OPENSSLDIR} -CMAKE_ON= PODOFO_BUILD_SHARED PODOFO_BUILD_STATIC -USE_LDCONFIG= yes + libidn.so:dns/libidn \ + libpng.so:graphics/png \ + libtiff.so:graphics/tiff +USES= cmake compiler:c++17-lang cpe gnome jpeg localbase:ldflags \ + pkgconfig ssl CPE_VENDOR= podofo_project +USE_GITHUB= yes +USE_GNOME= libxml2 +USE_LDCONFIG= yes -DOS2UNIX_FILES= cmake/modules/FindFREETYPE.cmake - -OPTIONS_DEFINE= IMPOSE JPEG PNG TIFF UNISTRING -OPTIONS_DEFAULT=JPEG PNG TIFF UNISTRING -IMPOSE_DESC= Build impose tool (Lua required) -UNISTRING_DESC= Use libunistring for conversion +EXTRACT_AFTER_ARGS= --exclude 3rdparty/fmt --exclude 3rdparty/utfcpp -IMPOSE_CMAKE_BOOL= WANT_LUA -IMPOSE_CXXFLAGS= -I${LUA_INCDIR} -IMPOSE_LDFLAGS= -L${LUA_LIBDIR} -IMPOSE_USES= lua -JPEG_CMAKE_BOOL= WANT_LIBJPEG -JPEG_USES= jpeg -PNG_CMAKE_BOOL= WANT_PNG -PNG_LIB_DEPENDS= libpng.so:graphics/png -TIFF_CMAKE_BOOL= WANT_TIFF -TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff -UNISTRING_CMAKE_BOOL= WANT_UNISTRING -UNISTRING_LIB_DEPENDS= libunistring.so:devel/libunistring +CMAKE_OFF= PODOFO_BUILD_TEST .include diff --git a/graphics/podofo/distinfo b/graphics/podofo/distinfo index 1a0b2c2472c9..58f2fd9f80f5 100644 --- a/graphics/podofo/distinfo +++ b/graphics/podofo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652122561 -SHA256 (podofo-0.9.8.tar.gz) = 5de607e15f192b8ad90738300759d88dea0f5ccdce3bf00048a0c932bc645154 -SIZE (podofo-0.9.8.tar.gz) = 1012918 +TIMESTAMP = 1680592497 +SHA256 (podofo-podofo-0.10.0_GH0.tar.gz) = c9bf607fe4862b5cc6eac1754f0e39674c553350e8bbde68f5fff3e3eb2ed4bc +SIZE (podofo-podofo-0.10.0_GH0.tar.gz) = 1660970 diff --git a/graphics/podofo/files/patch-CMakeLists.txt b/graphics/podofo/files/patch-CMakeLists.txt deleted file mode 100644 index 4e57653dc3ff..000000000000 --- a/graphics/podofo/files/patch-CMakeLists.txt +++ /dev/null @@ -1,77 +0,0 @@ ---- CMakeLists.txt.orig 2022-05-03 12:18:23 UTC -+++ CMakeLists.txt -@@ -348,6 +348,7 @@ ELSE(LIBIDN_FOUND) - MESSAGE("Libidn not found. AES-256 Encryption support will be disabled") - ENDIF(LIBIDN_FOUND) - -+IF(WANT_LIBJPEG) - FIND_PACKAGE(LIBJPEG) - - IF(LIBJPEG_FOUND) -@@ -357,7 +358,9 @@ IF(LIBJPEG_FOUND) - ELSE(LIBJPEG_FOUND) - MESSAGE("Libjpeg not found. JPEG support will be disabled") - ENDIF(LIBJPEG_FOUND) -+ENDIF(WANT_LIBJPEG) - -+IF(WANT_TIFF) - FIND_PACKAGE(TIFF) - - IF(TIFF_FOUND) -@@ -367,7 +370,9 @@ IF(TIFF_FOUND) - ELSE(TIFF_FOUND) - MESSAGE("Libtiff not found. TIFF support will be disabled") - ENDIF(TIFF_FOUND) -+ENDIF(WANT_TIFF) - -+IF(WANT_PNG) - FIND_PACKAGE(PNG) - - IF(PNG_FOUND) -@@ -378,7 +383,9 @@ ELSE(PNG_FOUND) - MESSAGE("LibPng not found. PNG support will be disabled") - SET(PNG_LIBRARIES "") - ENDIF(PNG_FOUND) -+ENDIF(WANT_PNG) - -+IF(WANT_UNISTRING) - FIND_PACKAGE(UNISTRING) - - IF(UNISTRING_FOUND) -@@ -389,10 +396,12 @@ ELSE(UNISTRING_FOUND) - MESSAGE("LibUnistring not found. Unistring support will be disabled") - SET(UNISTRING_LIBRARY "") - ENDIF(UNISTRING_FOUND) -+ENDIF(WANT_UNISTRING) - - - IF(NOT PODOFO_BUILD_LIB_ONLY) - -+IF(WANT_CppUnit) - FIND_PACKAGE(CppUnit) - - IF(CppUnit_FOUND) -@@ -402,6 +411,7 @@ IF(CppUnit_FOUND) - ELSE(CppUnit_FOUND) - MESSAGE("Cppunit not found. No unit tests will be built.") - ENDIF(CppUnit_FOUND) -+ENDIF(WANT_CppUnit) - - ENDIF(NOT PODOFO_BUILD_LIB_ONLY) - -@@ -442,6 +452,7 @@ ELSE(WANT_FONTCONFIG) - ENDIF(WANT_FONTCONFIG) - - IF(NOT PODOFO_BUILD_LIB_ONLY) -+IF(WANT_LUA) - FIND_PACKAGE(LUA) - IF(LUA_FOUND) - # If we have lua, we can build podofoimpose. -@@ -453,6 +464,7 @@ IF(LUA_FOUND) - ELSE(LUA_FOUND) - MESSAGE("Lua not found - PoDoFoImpose and PoDoFoColor will be built without Lua support") - ENDIF(LUA_FOUND) -+ENDIF(WANT_LUA) - ENDIF(NOT PODOFO_BUILD_LIB_ONLY) - - diff --git a/graphics/podofo/files/patch-cmake-modules-FindLua51.cmake b/graphics/podofo/files/patch-cmake-modules-FindLua51.cmake deleted file mode 100644 index 5868cf76650d..000000000000 --- a/graphics/podofo/files/patch-cmake-modules-FindLua51.cmake +++ /dev/null @@ -1,20 +0,0 @@ ---- cmake/modules/FindLua51.cmake.orig 2016-05-02 18:30:40 UTC -+++ cmake/modules/FindLua51.cmake -@@ -33,7 +33,7 @@ FIND_PATH(LUA_INCLUDE_DIR lua.h - ) - - FIND_LIBRARY(LUA_LIBRARY -- NAMES lua51 lua5.1 lua -+ NAMES lua51 lua5.1 lua-5.1 lua - PATHS - $ENV{LUA_DIR} - NO_DEFAULT_PATH -@@ -41,7 +41,7 @@ FIND_LIBRARY(LUA_LIBRARY - ) - - FIND_LIBRARY(LUA_LIBRARY -- NAMES lua51 lua5.1 lua -+ NAMES lua51 lua5.1 lua-5.1 lua - PATHS - ~/Library/Frameworks - /Library/Frameworks diff --git a/graphics/podofo/files/patch-src-podofo-CMakeLists.txt b/graphics/podofo/files/patch-src-podofo-CMakeLists.txt deleted file mode 100644 index 8302365d68ee..000000000000 --- a/graphics/podofo/files/patch-src-podofo-CMakeLists.txt +++ /dev/null @@ -1,33 +0,0 @@ ---- src/podofo/CMakeLists.txt.orig 2020-03-27 16:13:28 UTC -+++ src/podofo/CMakeLists.txt -@@ -265,8 +265,8 @@ IF(PODOFO_BUILD_STATIC) - ADD_LIBRARY(podofo_static STATIC ${PODOFO_BASE_SOURCES} ${PODOFO_DOC_SOURCES} ${PODOFO_HEADER_FILES}) - TARGET_LINK_LIBRARIES(podofo_static ${PODOFO_LIB_DEPENDS}) - SET_TARGET_PROPERTIES(podofo_static PROPERTIES -- VERSION "${PODOFO_LIBVERSION}" -- SOVERSION "${PODOFO_SOVERSION}" -+ VERSION "0" -+ SOVERSION "0" - CLEAN_DIRECT_OUTPUT 1 - OUTPUT_NAME "podofo" - COMPILE_FLAGS "-DBUILDING_PODOFO" -@@ -289,8 +289,8 @@ IF(PODOFO_BUILD_SHARED) - # Visual Studio, since it produces invalid warnings about STL - # use. - SET_TARGET_PROPERTIES(podofo_shared PROPERTIES -- VERSION "${PODOFO_LIBVERSION}" -- SOVERSION "${PODOFO_SOVERSION}" -+ VERSION "0" -+ SOVERSION "0" - CLEAN_DIRECT_OUTPUT 1 - OUTPUT_NAME "podofo" - COMPILE_FLAGS "-DBUILDING_PODOFO" -@@ -320,7 +320,7 @@ IF(PODOFO_BUILD_SHARED) - @ONLY) - INSTALL( - FILES "${PoDoFo_BINARY_DIR}/libpodofo.pc" -- DESTINATION "${LIBDIRNAME}/pkgconfig") -+ DESTINATION "${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig") - ELSE(PKG_CONFIG_FOUND) - MESSAGE("Pkg-config not found. No pkg-config file will be created.") - ENDIF(PKG_CONFIG_FOUND) diff --git a/graphics/podofo/files/patch-src_podofo_main_PdfCMapEncoding.cpp b/graphics/podofo/files/patch-src_podofo_main_PdfCMapEncoding.cpp new file mode 100644 index 000000000000..de2010a22e70 --- /dev/null +++ b/graphics/podofo/files/patch-src_podofo_main_PdfCMapEncoding.cpp @@ -0,0 +1,11 @@ +--- src/podofo/main/PdfCMapEncoding.cpp.orig 2023-04-04 07:49:51 UTC ++++ src/podofo/main/PdfCMapEncoding.cpp +@@ -7,7 +7,7 @@ + #include + #include "PdfCMapEncoding.h" + +-#include ++#include + + #include "PdfDictionary.h" + #include "PdfObjectStream.h" diff --git a/graphics/podofo/files/patch-src_podofo_main_PdfCharCodeMap.cpp b/graphics/podofo/files/patch-src_podofo_main_PdfCharCodeMap.cpp new file mode 100644 index 000000000000..a841900776b5 --- /dev/null +++ b/graphics/podofo/files/patch-src_podofo_main_PdfCharCodeMap.cpp @@ -0,0 +1,11 @@ +--- src/podofo/main/PdfCharCodeMap.cpp.orig 2023-04-04 07:48:31 UTC ++++ src/podofo/main/PdfCharCodeMap.cpp +@@ -8,7 +8,7 @@ + #include "PdfCharCodeMap.h" + #include + #include +-#include ++#include + + using namespace std; + using namespace PoDoFo; diff --git a/graphics/podofo/files/patch-src_podofo_main_PdfDifferenceEncoding.cpp b/graphics/podofo/files/patch-src_podofo_main_PdfDifferenceEncoding.cpp new file mode 100644 index 000000000000..849b485371bd --- /dev/null +++ b/graphics/podofo/files/patch-src_podofo_main_PdfDifferenceEncoding.cpp @@ -0,0 +1,11 @@ +--- src/podofo/main/PdfDifferenceEncoding.cpp.orig 2023-04-04 07:50:51 UTC ++++ src/podofo/main/PdfDifferenceEncoding.cpp +@@ -9,7 +9,7 @@ + + #include + +-#include ++#include + #include + + #include "PdfArray.h" diff --git a/graphics/podofo/files/patch-src_podofo_main_PdfEncoding.cpp b/graphics/podofo/files/patch-src_podofo_main_PdfEncoding.cpp new file mode 100644 index 000000000000..47ebab110e2f --- /dev/null +++ b/graphics/podofo/files/patch-src_podofo_main_PdfEncoding.cpp @@ -0,0 +1,11 @@ +--- src/podofo/main/PdfEncoding.cpp.orig 2023-04-04 07:51:54 UTC ++++ src/podofo/main/PdfEncoding.cpp +@@ -8,7 +8,7 @@ + #include "PdfEncoding.h" + + #include +-#include ++#include + + #include + diff --git a/graphics/podofo/files/patch-src_podofo_main_PdfEncodingMap.cpp b/graphics/podofo/files/patch-src_podofo_main_PdfEncodingMap.cpp new file mode 100644 index 000000000000..f843a41be989 --- /dev/null +++ b/graphics/podofo/files/patch-src_podofo_main_PdfEncodingMap.cpp @@ -0,0 +1,11 @@ +--- src/podofo/main/PdfEncodingMap.cpp.orig 2023-04-04 07:52:54 UTC ++++ src/podofo/main/PdfEncodingMap.cpp +@@ -7,7 +7,7 @@ + #include + #include "PdfEncodingMap.h" + +-#include ++#include + + #include "PdfDictionary.h" + #include "PdfCMapEncoding.h" diff --git a/graphics/podofo/files/patch-src_podofo_main_PdfFont.cpp b/graphics/podofo/files/patch-src_podofo_main_PdfFont.cpp new file mode 100644 index 000000000000..ed7bed572592 --- /dev/null +++ b/graphics/podofo/files/patch-src_podofo_main_PdfFont.cpp @@ -0,0 +1,11 @@ +--- src/podofo/main/PdfFont.cpp.orig 2023-04-04 07:54:11 UTC ++++ src/podofo/main/PdfFont.cpp +@@ -7,7 +7,7 @@ + #include + #include "PdfFont.h" + +-#include ++#include + + #include + #include diff --git a/graphics/podofo/files/patch-src_podofo_main_PdfFontManager.cpp b/graphics/podofo/files/patch-src_podofo_main_PdfFontManager.cpp new file mode 100644 index 000000000000..078bbf1f54a8 --- /dev/null +++ b/graphics/podofo/files/patch-src_podofo_main_PdfFontManager.cpp @@ -0,0 +1,11 @@ +--- src/podofo/main/PdfFontManager.cpp.orig 2023-04-04 07:55:39 UTC ++++ src/podofo/main/PdfFontManager.cpp +@@ -16,7 +16,7 @@ + + #include + #include FT_TRUETYPE_TABLES_H +-#include ++#include + + #include "PdfDictionary.h" + #include diff --git a/graphics/podofo/files/patch-src_podofo_main_PdfFontType1.cpp b/graphics/podofo/files/patch-src_podofo_main_PdfFontType1.cpp new file mode 100644 index 000000000000..8faf088905ca --- /dev/null +++ b/graphics/podofo/files/patch-src_podofo_main_PdfFontType1.cpp @@ -0,0 +1,11 @@ +--- src/podofo/main/PdfFontType1.cpp.orig 2023-04-04 07:58:52 UTC ++++ src/podofo/main/PdfFontType1.cpp +@@ -7,7 +7,7 @@ + #include + #include "PdfFontType1.h" + +-#include ++#include + + #include + #include "PdfArray.h" diff --git a/graphics/podofo/files/patch-src_podofo_main_PdfIdentityEncoding.cpp b/graphics/podofo/files/patch-src_podofo_main_PdfIdentityEncoding.cpp new file mode 100644 index 000000000000..9615f2fe6fa5 --- /dev/null +++ b/graphics/podofo/files/patch-src_podofo_main_PdfIdentityEncoding.cpp @@ -0,0 +1,11 @@ +--- src/podofo/main/PdfIdentityEncoding.cpp.orig 2023-04-04 07:57:32 UTC ++++ src/podofo/main/PdfIdentityEncoding.cpp +@@ -7,7 +7,7 @@ + #include + #include "PdfIdentityEncoding.h" + +-#include ++#include + + #include "PdfDictionary.h" + #include "PdfFont.h" diff --git a/graphics/podofo/files/patch-src_podofo_main_PdfImage.cpp b/graphics/podofo/files/patch-src_podofo_main_PdfImage.cpp new file mode 100644 index 000000000000..0b01d6f479aa --- /dev/null +++ b/graphics/podofo/files/patch-src_podofo_main_PdfImage.cpp @@ -0,0 +1,11 @@ +--- src/podofo/main/PdfImage.cpp.orig 2023-04-04 08:00:21 UTC ++++ src/podofo/main/PdfImage.cpp +@@ -13,7 +13,7 @@ extern "C" { + } + #endif // PODOFO_HAVE_TIFF_LIB + +-#include ++#include + + #include + #include diff --git a/graphics/podofo/files/patch-src_podofo_main_PdfPage__TextExtraction.cpp b/graphics/podofo/files/patch-src_podofo_main_PdfPage__TextExtraction.cpp new file mode 100644 index 000000000000..f064ed55c4c2 --- /dev/null +++ b/graphics/podofo/files/patch-src_podofo_main_PdfPage__TextExtraction.cpp @@ -0,0 +1,11 @@ +--- src/podofo/main/PdfPage_TextExtraction.cpp.orig 2023-04-04 08:01:48 UTC ++++ src/podofo/main/PdfPage_TextExtraction.cpp +@@ -11,7 +11,7 @@ + #include + #include + +-#include ++#include + + #include "PdfDocument.h" + #include "PdfTextState.h" diff --git a/graphics/podofo/files/patch-src_podofo_main_PdfPainter.cpp b/graphics/podofo/files/patch-src_podofo_main_PdfPainter.cpp new file mode 100644 index 000000000000..f7156f9fd95d --- /dev/null +++ b/graphics/podofo/files/patch-src_podofo_main_PdfPainter.cpp @@ -0,0 +1,11 @@ +--- src/podofo/main/PdfPainter.cpp.orig 2023-04-04 08:05:54 UTC ++++ src/podofo/main/PdfPainter.cpp +@@ -9,7 +9,7 @@ + + #include + +-#include ++#include + + #include "PdfExtGState.h" + #include "PdfFont.h" diff --git a/graphics/podofo/files/patch-src_podofo_main_PdfString.cpp b/graphics/podofo/files/patch-src_podofo_main_PdfString.cpp new file mode 100644 index 000000000000..7e6f51db4a74 --- /dev/null +++ b/graphics/podofo/files/patch-src_podofo_main_PdfString.cpp @@ -0,0 +1,11 @@ +--- src/podofo/main/PdfString.cpp.orig 2023-04-04 08:12:15 UTC ++++ src/podofo/main/PdfString.cpp +@@ -7,7 +7,7 @@ + #include + #include "PdfString.h" + +-#include ++#include + + #include + diff --git a/graphics/podofo/files/patch-src_podofo_private_PdfEncodingPrivate.cpp b/graphics/podofo/files/patch-src_podofo_private_PdfEncodingPrivate.cpp new file mode 100644 index 000000000000..a9a4c24ff9df --- /dev/null +++ b/graphics/podofo/files/patch-src_podofo_private_PdfEncodingPrivate.cpp @@ -0,0 +1,11 @@ +--- src/podofo/private/PdfEncodingPrivate.cpp.orig 2023-04-04 08:10:15 UTC ++++ src/podofo/private/PdfEncodingPrivate.cpp +@@ -7,7 +7,7 @@ + #include "PdfDeclarationsPrivate.h" + #include "PdfEncodingPrivate.h" + +-#include ++#include + + using namespace std; + using namespace PoDoFo; diff --git a/graphics/podofo/files/patch-src_podofo_private_utfcpp__extensions.h b/graphics/podofo/files/patch-src_podofo_private_utfcpp__extensions.h new file mode 100644 index 000000000000..3b7b1532ed9c --- /dev/null +++ b/graphics/podofo/files/patch-src_podofo_private_utfcpp__extensions.h @@ -0,0 +1,11 @@ +--- src/podofo/private/utfcpp_extensions.h.orig 2023-04-04 08:10:29 UTC ++++ src/podofo/private/utfcpp_extensions.h +@@ -3,7 +3,7 @@ + + #include + #include +-#include ++#include + + namespace utf8 + { diff --git a/graphics/podofo/files/patch-test_common_PdfTest.cpp b/graphics/podofo/files/patch-test_common_PdfTest.cpp new file mode 100644 index 000000000000..cd3326a1095e --- /dev/null +++ b/graphics/podofo/files/patch-test_common_PdfTest.cpp @@ -0,0 +1,11 @@ +--- test/common/PdfTest.cpp.orig 2023-04-04 08:17:41 UTC ++++ test/common/PdfTest.cpp +@@ -8,7 +8,7 @@ + + #include "PdfTest.h" + +-#include ++#include + + using namespace std; + using namespace PoDoFo; diff --git a/graphics/podofo/pkg-plist b/graphics/podofo/pkg-plist index 91553156fea3..934963b3feb0 100644 --- a/graphics/podofo/pkg-plist +++ b/graphics/podofo/pkg-plist @@ -1,147 +1,162 @@ -bin/podofobox -bin/podofocolor -bin/podofocountpages -bin/podofocrop -bin/podofoencrypt -bin/podofogc -bin/podofoimg2pdf -bin/podofoimgextract -bin/podofoimpose -bin/podofoincrementalupdates -bin/podofomerge -bin/podofonooc -bin/podofopages -bin/podofopdfinfo -bin/podofosign -bin/podofotxt2pdf -bin/podofotxtextract -bin/podofouncompress -bin/podofoxmp -include/podofo/base/Pdf3rdPtyForwardDecl.h -include/podofo/base/PdfArray.h -include/podofo/base/PdfCanvas.h -include/podofo/base/PdfColor.h -include/podofo/base/PdfCompilerCompat.h -include/podofo/base/PdfCompilerCompatPrivate.h -include/podofo/base/PdfContentsTokenizer.h -include/podofo/base/PdfData.h -include/podofo/base/PdfDataType.h -include/podofo/base/PdfDate.h -include/podofo/base/PdfDefines.h -include/podofo/base/PdfDefinesPrivate.h -include/podofo/base/PdfDictionary.h -include/podofo/base/PdfEncoding.h -include/podofo/base/PdfEncodingFactory.h -include/podofo/base/PdfEncrypt.h -include/podofo/base/PdfError.h -include/podofo/base/PdfExtension.h -include/podofo/base/PdfFileStream.h -include/podofo/base/PdfFilter.h -include/podofo/base/PdfFiltersPrivate.h -include/podofo/base/PdfImmediateWriter.h -include/podofo/base/PdfInputDevice.h -include/podofo/base/PdfInputStream.h -include/podofo/base/PdfLocale.h -include/podofo/base/PdfMemStream.h -include/podofo/base/PdfMemoryManagement.h -include/podofo/base/PdfName.h -include/podofo/base/PdfObject.h -include/podofo/base/PdfObjectStreamParserObject.h -include/podofo/base/PdfOutputDevice.h -include/podofo/base/PdfOutputStream.h -include/podofo/base/PdfOwnedDataType.h -include/podofo/base/PdfParser.h -include/podofo/base/PdfParserObject.h -include/podofo/base/PdfRect.h -include/podofo/base/PdfRefCountedBuffer.h -include/podofo/base/PdfRefCountedInputDevice.h -include/podofo/base/PdfReference.h -include/podofo/base/PdfStream.h -include/podofo/base/PdfString.h -include/podofo/base/PdfTokenizer.h -include/podofo/base/PdfVariant.h -include/podofo/base/PdfVecObjects.h -include/podofo/base/PdfVersion.h -include/podofo/base/PdfWriter.h -include/podofo/base/PdfXRef.h -include/podofo/base/PdfXRefStream.h -include/podofo/base/PdfXRefStreamParserObject.h -include/podofo/base/podofo_config.h -include/podofo/base/podofoapi.h -include/podofo/base/util/PdfMutex.h -include/podofo/base/util/PdfMutexImpl_noop.h -include/podofo/base/util/PdfMutexImpl_pthread.h -include/podofo/base/util/PdfMutexImpl_win32.h -include/podofo/base/util/PdfMutexWrapper.h -include/podofo/doc/PdfAcroForm.h -include/podofo/doc/PdfAction.h -include/podofo/doc/PdfAnnotation.h -include/podofo/doc/PdfCMapEncoding.h -include/podofo/doc/PdfContents.h -include/podofo/doc/PdfDestination.h -include/podofo/doc/PdfDifferenceEncoding.h -include/podofo/doc/PdfDocument.h -include/podofo/doc/PdfElement.h -include/podofo/doc/PdfEncodingObjectFactory.h -include/podofo/doc/PdfExtGState.h -include/podofo/doc/PdfField.h -include/podofo/doc/PdfFileSpec.h -include/podofo/doc/PdfFont.h -include/podofo/doc/PdfFontCID.h -include/podofo/doc/PdfFontCache.h -include/podofo/doc/PdfFontConfigWrapper.h -include/podofo/doc/PdfFontFactory.h -include/podofo/doc/PdfFontFactoryBase14Data.h -include/podofo/doc/PdfFontMetrics.h -include/podofo/doc/PdfFontMetricsBase14.h -include/podofo/doc/PdfFontMetricsFreetype.h -include/podofo/doc/PdfFontMetricsObject.h -include/podofo/doc/PdfFontSimple.h -include/podofo/doc/PdfFontTTFSubset.h -include/podofo/doc/PdfFontTrueType.h -include/podofo/doc/PdfFontType1.h -include/podofo/doc/PdfFontType1Base14.h -include/podofo/doc/PdfFontType3.h -include/podofo/doc/PdfFunction.h -include/podofo/doc/PdfHintStream.h -include/podofo/doc/PdfIdentityEncoding.h -include/podofo/doc/PdfImage.h -include/podofo/doc/PdfInfo.h -include/podofo/doc/PdfMemDocument.h -include/podofo/doc/PdfNamesTree.h -include/podofo/doc/PdfOutlines.h -include/podofo/doc/PdfPage.h -include/podofo/doc/PdfPagesTree.h -include/podofo/doc/PdfPagesTreeCache.h -include/podofo/doc/PdfPainter.h -include/podofo/doc/PdfPainterMM.h -include/podofo/doc/PdfShadingPattern.h -include/podofo/doc/PdfSignOutputDevice.h -include/podofo/doc/PdfSignatureField.h -include/podofo/doc/PdfStreamedDocument.h -include/podofo/doc/PdfTable.h -include/podofo/doc/PdfTilingPattern.h -include/podofo/doc/PdfXObject.h -include/podofo/podofo-base.h +include/podofo/auxiliary/EnumFlags.h +include/podofo/auxiliary/InputDevice.h +include/podofo/auxiliary/InputStream.h +include/podofo/auxiliary/MathBase.h +include/podofo/auxiliary/Matrix.h +include/podofo/auxiliary/OutputDevice.h +include/podofo/auxiliary/OutputStream.h +include/podofo/auxiliary/Rect.h +include/podofo/auxiliary/StateStack.h +include/podofo/auxiliary/StreamDevice.h +include/podofo/auxiliary/StreamDeviceBase.h +include/podofo/auxiliary/Vector2.h +include/podofo/auxiliary/Version.h +include/podofo/auxiliary/basecompat.h +include/podofo/auxiliary/basedefs.h +include/podofo/auxiliary/baseincludes.h +include/podofo/auxiliary/basetypes.h +include/podofo/auxiliary/nullable.h +include/podofo/auxiliary/podofo_config.h +include/podofo/auxiliary/span.h +include/podofo/auxiliary/span.hpp +include/podofo/main/PdfAcroForm.h +include/podofo/main/PdfAction.h +include/podofo/main/PdfAnnotation.h +include/podofo/main/PdfAnnotationActionBase.h +include/podofo/main/PdfAnnotationCollection.h +include/podofo/main/PdfAnnotationWidget.h +include/podofo/main/PdfAnnotation_Types.h +include/podofo/main/PdfArray.h +include/podofo/main/PdfButton.h +include/podofo/main/PdfCIDToGIDMap.h +include/podofo/main/PdfCMapEncoding.cpp.orig +include/podofo/main/PdfCMapEncoding.h +include/podofo/main/PdfCanvas.h +include/podofo/main/PdfCanvasInputDevice.h +include/podofo/main/PdfCatalog.h +include/podofo/main/PdfCharCodeMap.cpp.orig +include/podofo/main/PdfCharCodeMap.h +include/podofo/main/PdfCheckBox.h +include/podofo/main/PdfChoiceField.h +include/podofo/main/PdfColor.h +include/podofo/main/PdfComboBox.h +include/podofo/main/PdfCommon.h +include/podofo/main/PdfContentStreamOperators.h +include/podofo/main/PdfContentStreamReader.h +include/podofo/main/PdfContents.h +include/podofo/main/PdfData.h +include/podofo/main/PdfDataContainer.h +include/podofo/main/PdfDataProvider.h +include/podofo/main/PdfDate.h +include/podofo/main/PdfDeclarations.h +include/podofo/main/PdfDestination.h +include/podofo/main/PdfDictionary.h +include/podofo/main/PdfDifferenceEncoding.cpp.orig +include/podofo/main/PdfDifferenceEncoding.h +include/podofo/main/PdfDocument.h +include/podofo/main/PdfElement.h +include/podofo/main/PdfEncoding.cpp.orig +include/podofo/main/PdfEncoding.h +include/podofo/main/PdfEncodingCommon.h +include/podofo/main/PdfEncodingFactory.h +include/podofo/main/PdfEncodingMap.cpp.orig +include/podofo/main/PdfEncodingMap.h +include/podofo/main/PdfEncodingMapFactory.h +include/podofo/main/PdfEncodingShim.h +include/podofo/main/PdfEncrypt.h +include/podofo/main/PdfError.h +include/podofo/main/PdfExtGState.h +include/podofo/main/PdfExtension.h +include/podofo/main/PdfField.h +include/podofo/main/PdfFieldChildrenCollection.h +include/podofo/main/PdfFileSpec.h +include/podofo/main/PdfFilter.h +include/podofo/main/PdfFont.cpp.orig +include/podofo/main/PdfFont.h +include/podofo/main/PdfFontCID.h +include/podofo/main/PdfFontCIDTrueType.h +include/podofo/main/PdfFontCIDType1.h +include/podofo/main/PdfFontConfigWrapper.h +include/podofo/main/PdfFontManager.cpp.orig +include/podofo/main/PdfFontManager.h +include/podofo/main/PdfFontMetrics.h +include/podofo/main/PdfFontMetricsFreetype.h +include/podofo/main/PdfFontMetricsObject.h +include/podofo/main/PdfFontMetricsStandard14.h +include/podofo/main/PdfFontObject.h +include/podofo/main/PdfFontSimple.h +include/podofo/main/PdfFontTrueType.h +include/podofo/main/PdfFontTrueTypeSubset.h +include/podofo/main/PdfFontType1.cpp.orig +include/podofo/main/PdfFontType1.h +include/podofo/main/PdfFontType3.h +include/podofo/main/PdfGraphicsState.h +include/podofo/main/PdfIdentityEncoding.cpp.orig +include/podofo/main/PdfIdentityEncoding.h +include/podofo/main/PdfImage.cpp.orig +include/podofo/main/PdfImage.h +include/podofo/main/PdfImmediateWriter.h +include/podofo/main/PdfIndirectObjectList.h +include/podofo/main/PdfInfo.h +include/podofo/main/PdfListBox.h +include/podofo/main/PdfMath.h +include/podofo/main/PdfMemDocument.h +include/podofo/main/PdfMemoryObjectStream.h +include/podofo/main/PdfMetadata.h +include/podofo/main/PdfName.h +include/podofo/main/PdfNameTree.h +include/podofo/main/PdfObject.h +include/podofo/main/PdfObjectStream.h +include/podofo/main/PdfObjectStreamParser.h +include/podofo/main/PdfObjectStreamProvider.h +include/podofo/main/PdfOperatorUtils.h +include/podofo/main/PdfOutlines.h +include/podofo/main/PdfPage.h +include/podofo/main/PdfPageCollection.h +include/podofo/main/PdfPageTreeCache.h +include/podofo/main/PdfPage_TextExtraction.cpp.orig +include/podofo/main/PdfPainter.cpp.orig +include/podofo/main/PdfPainter.h +include/podofo/main/PdfPainterPath.h +include/podofo/main/PdfPainterTextObject.h +include/podofo/main/PdfParser.h +include/podofo/main/PdfParserObject.h +include/podofo/main/PdfPostScriptTokenizer.h +include/podofo/main/PdfPredefinedEncoding.h +include/podofo/main/PdfPushButton.h +include/podofo/main/PdfRadioButton.h +include/podofo/main/PdfReference.h +include/podofo/main/PdfResources.h +include/podofo/main/PdfSignature.h +include/podofo/main/PdfSigner.h +include/podofo/main/PdfStatefulEncrypt.h +include/podofo/main/PdfStreamedDocument.h +include/podofo/main/PdfStreamedObjectStream.h +include/podofo/main/PdfString.cpp.orig +include/podofo/main/PdfString.h +include/podofo/main/PdfStringStream.h +include/podofo/main/PdfTextBox.h +include/podofo/main/PdfTextState.h +include/podofo/main/PdfTokenizer.h +include/podofo/main/PdfTrailer.h +include/podofo/main/PdfVariant.h +include/podofo/main/PdfVariantStack.h +include/podofo/main/PdfWriter.h +include/podofo/main/PdfXMPMetadata.h +include/podofo/main/PdfXMPPacket.h +include/podofo/main/PdfXObject.h +include/podofo/main/PdfXObjectForm.h +include/podofo/main/PdfXObjectPostScript.h +include/podofo/main/PdfXRef.h +include/podofo/main/PdfXRefEntry.h +include/podofo/main/PdfXRefStream.h +include/podofo/main/PdfXRefStreamParserObject.h include/podofo/podofo.h -lib/libpodofo.a +include/podofo/staging/PdfFunction.h +include/podofo/staging/PdfPainterExtensions.h +include/podofo/staging/PdfShadingPattern.h +include/podofo/staging/PdfTilingPattern.h lib/libpodofo.so -lib/libpodofo.so.0 +lib/libpodofo.so.0.10.0 +lib/libpodofo.so.1 libdata/pkgconfig/libpodofo.pc -share/man/man1/podofobox.1.gz -share/man/man1/podofocolor.1.gz -share/man/man1/podofocountpages.1.gz -share/man/man1/podofocrop.1.gz -share/man/man1/podofoencrypt.1.gz -share/man/man1/podofogc.1.gz -share/man/man1/podofoimg2pdf.1.gz -share/man/man1/podofoimgextract.1.gz -share/man/man1/podofoimpose.1.gz -share/man/man1/podofoincrementalupdates.1.gz -share/man/man1/podofomerge.1.gz -share/man/man1/podofopages.1.gz -share/man/man1/podofopdfinfo.1.gz -share/man/man1/podofotxt2pdf.1.gz -share/man/man1/podofotxtextract.1.gz -share/man/man1/podofouncompress.1.gz -share/man/man1/podofoxmp.1.gz