| Port details on branch 2026Q1 |
- podofo PDF manipulation library and tools
- 0.10.4_2 graphics
=0 0.10.4_2Version of this port present on the latest quarterly branch. - Maintainer: sunpoet@FreeBSD.org
 - Port Added: 2026-02-15 13:12:03
- Last Update: 2026-02-15 13:08:53
- Commit Hash: f71f0f3
- Also Listed In: print
- License: LGPL20
- WWW:
- https://podofo.sourceforge.net/
- https://github.com/podofo/podofo
- Description:
- PoDoFo is a library to work with the PDF file format. The name comes from the
first letter of PDF (Portable Document Format). A few tools to work with PDF
files are already included in the PoDoFo package.
The PoDoFo library is a free, portable C++ library which includes classes to
parse PDF files and modify their contents into memory. The changes can be
written back to disk easily. The parser can also be used to extract information
from a PDF file (for example the parser could be used in a PDF viewer). Besides
parsing PoDoFo includes also very simple classes to create your own PDF files.
All classes are documented so it is easy to start writing your own application
using PoDoFo.
 ¦ ¦ ¦ ¦ 
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - USE_RC_SUBR (Service Scripts)
- no SUBR information found for this port
- Dependency lines:
-
- To install the port:
- cd /usr/ports/graphics/podofo/ && make install clean
- To add the package, run one of these commands:
- pkg install graphics/podofo
- pkg install podofo
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: podofo
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1726740923
SHA256 (podofo-podofo-0.10.4_GH0.tar.gz) = 6b1b13cdfb2ba5e8bbc549df507023dd4873bc946211bc6942183b8496986904
SIZE (podofo-podofo-0.10.4_GH0.tar.gz) = 1692182
No package information for this port in our database- Sometimes this happens. Not all ports have packages. Perhaps there is a build error. Check the fallout link:

- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- fast_float>=0 : math/fast_float
- date>=0 : devel/date
- libfmt>=0 : devel/libfmt
- utf8cpp>=4.0.3 : devel/utf8cpp
- cmake : devel/cmake-core
- ninja : devel/ninja
- pkgconf>=1.3.0_1 : devel/pkgconf
- Library dependencies:
-
- libfontconfig.so : x11-fonts/fontconfig
- libfreetype.so : print/freetype2
- libidn.so : dns/libidn
- libpng.so : graphics/png
- libtiff.so : graphics/tiff
- libxml2.so : textproc/libxml2
- libjpeg.so : graphics/jpeg-turbo
- There are no ports dependent upon this port
Configuration Options:
- ===> The following configuration options are available for podofo-0.10.4_2:
JPEG=on: JPEG image format support
PNG=on: PNG image format support
TIFF=on: TIFF image format support
===> Use 'make config' to modify these settings
- Options name:
- graphics_podofo
- USES:
- cmake compiler:c++17-lang cpe gnome localbase:ldflags pkgconfig ssl jpeg
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Number of commits found: 1
| Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
| Commit | Credits | Log message |
0.10.4_2 15 Feb 2026 13:08:53
    |
Dimitry Andric (dim)  |
graphics/podofo: fix build with libc++ >= 20
With libc++ 20 or higher graphics/podofo fails to build, with errors
similar to:
/wrkdirs/usr/ports/graphics/podofo/work/podofo-0.10.4/src/podofo/main/PdfColor.cpp:686:13:
error: call to 'from_chars' is ambiguous
686 | if (std::from_chars(name.data() + 1, name.data() +
name.size(), grayVal, chars_format::fixed).ec != std::errc())
| ^~~~~~~~~~~~~~~
/usr/include/c++/v1/__charconv/from_chars_floating_point.h:63:1: note:
candidate function
63 | from_chars(const char* __first, const char* __last, double& __value,
chars_format __fmt = chars_format::general) {
| ^
/wrkdirs/usr/ports/graphics/podofo/work/podofo-0.10.4/src/podofo/private/charconv_compat.h:34:30:
note: candidate function
34 | inline from_chars_result from_chars(const char* first, const
char* last,
| ^
This is because libc++ 20 started offering std::from_chars() for
floating point values, and pododo does not check for this. Correct the
WANT_FROM_CHARS check to correctly check for libc++ 20 or higher.
PR: 293181
Approved by: sunpoet (maintainer)
MFH: 2026Q1
(cherry picked from commit 6d07173babd17fc1d3ece984639f8f83d6b94d74) |
Number of commits found: 1
|