Port details on branch 2024Q3 |
- zxing-cpp C++ library for linear/matrix barcode recognition
- 2.2.1 textproc
=0 2.2.1Version of this port present on the latest quarterly branch. - Maintainer: kde@FreeBSD.org
 - Port Added: 2024-08-16 15:45:24
- Last Update: 2024-08-16 15:44:18
- Commit Hash: 459baf8
- License: APACHE20
- WWW:
- https://github.com/zxing-cpp/zxing-cpp
- Description:
- ZXing-C++ ("zebra crossing") is an open-source, multi-format
linear/matrix barcode image processing library implemented in C++.
It was originally ported from the Java ZXing Library, but has been
developed further and now includes many improvements in terms of runtime
and detection performance. It can both read and write barcodes in a
number of formats.
¦ ¦ ¦ ¦ 
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- zxing-cpp>0:textproc/zxing-cpp
- To install the port:
- cd /usr/ports/textproc/zxing-cpp/ && make install clean
- To add the package, run one of these commands:
- pkg install textproc/zxing-cpp
- pkg install zxing-cpp
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: zxing-cpp
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1702517883
SHA256 (zxing-cpp-zxing-cpp-v2.2.1_GH0.tar.gz) = 02078ae15f19f9d423a441f205b1d1bee32349ddda7467e2c84e8f08876f8635
SIZE (zxing-cpp-zxing-cpp-v2.2.1_GH0.tar.gz) = 891055
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- cmake : devel/cmake-core
- ninja : devel/ninja
- There are no ports dependent upon this port
Configuration Options:
- No options to configure
- Options name:
- textproc_zxing-cpp
- USES:
- cmake compiler:c++17-lang iconv
- 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 |
2.2.1 16 Aug 2024 15:44:18
    |
Dimitry Andric (dim)  |
textproc/zxing-cpp: fix build with libc++ 19
As noted in the libc++ 19 release notes [1], std::char_traits<> is now
only provided for char, char8_t, char16_t, char32_t and wchar_t, and any
instantiation for other types will fail.
This causes textproc/zxing-cpp to fail to compile with clang 19 and
libc++ 19, resulting in errors similar to:
/usr/include/c++/v1/string_view:300:42: error: implicit instantiation of
undefined template 'std::char_traits<unsigned char>'
300 | static_assert(is_same<_CharT, typename
traits_type::char_type>::value,
| ^
/wrkdirs/usr/ports/textproc/zxing-cpp/work/zxing-cpp-2.2.1/core/src/Utf.cpp:72:42:
note: in instantiation of template class 'std::basic_string_view<unsigned char>'
requested here
72 | static size_t Utf8CountCodePoints(utf8_t utf8)
| ^ (Only the first 15 lines of the commit message are shown above ) |
Number of commits found: 1
|