<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ports/graphics/libfreehand, branch main</title>
<subtitle>FreeBSD ports tree</subtitle>
<id>https://cgit-dev.freebsd.org/ports/atom?h=main</id>
<link rel='self' href='https://cgit-dev.freebsd.org/ports/atom?h=main'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/'/>
<updated>2026-07-13T14:26:08Z</updated>
<entry>
<title>graphics/libfreehand: update to 0.1.3 release (+)</title>
<updated>2026-07-13T14:26:08Z</updated>
<author>
<name>Dima Panov</name>
<email>fluffy@FreeBSD.org</email>
</author>
<published>2026-07-13T14:23:08Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=52f8b28457726b95fe767162a74c928bf9806845'/>
<id>urn:sha1:52f8b28457726b95fe767162a74c928bf9806845</id>
<content type='text'>
libfreehand 0.1.3
* Memory safety fixes
* Minor cleanups
</content>
</entry>
<entry>
<title>graphics/lcms2: Bump PORTREVISION of dependent ports for shlib change</title>
<updated>2026-02-03T05:13:43Z</updated>
<author>
<name>Po-Chuan Hsieh</name>
<email>sunpoet@FreeBSD.org</email>
</author>
<published>2026-02-03T05:08:51Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=2adc4bef7df69089f28bd4525c58238aebc4a34d'/>
<id>urn:sha1:2adc4bef7df69089f28bd4525c58238aebc4a34d</id>
<content type='text'>
PR:		292881
Reported by:	Petr Lampa &lt;lampa@fit.vutbr.cz&gt;
</content>
</entry>
<entry>
<title>devel/icu: update to 74.1</title>
<updated>2023-11-17T11:46:00Z</updated>
<author>
<name>Jan Beich</name>
<email>jbeich@FreeBSD.org</email>
</author>
<published>2023-10-05T20:43:38Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=e55b80195e2af4bd63088de216ccd3e23be81c1f'/>
<id>urn:sha1:e55b80195e2af4bd63088de216ccd3e23be81c1f</id>
<content type='text'>
Changes:	https://github.com/unicode-org/icu/releases/tag/release-74-1
Reported by:	GitHub (watch releases)
PR:		274317
Exp-run by:	antoine (incomplete)
Approved by:	fluffy
</content>
</entry>
<entry>
<title>graphics/libfreehand: fix build with clang 16</title>
<updated>2023-05-14T19:26:54Z</updated>
<author>
<name>Dimitry Andric</name>
<email>dim@FreeBSD.org</email>
</author>
<published>2023-05-14T17:55:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=6084a7f537241a5936d76883a9638571bb9c102c'/>
<id>urn:sha1:6084a7f537241a5936d76883a9638571bb9c102c</id>
<content type='text'>
Since clang 16 (and gcc 11) the default C++ standard is now gnu++17.
Because graphics/libfreehand's configure scripts and Makefiles do not
explicitly set the C++ standard, this leads to several errors:

  In file included from FreeHandDocument.cpp:14:
  In file included from ./FHParser.h:15:
  /usr/local/include/lcms2.h:1291:44: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
  typedef cmsInt32Number (* cmsSAMPLER16)   (CMSREGISTER const cmsUInt16Number In[],
                                             ^~~~~~~~~~~~
  /usr/local/include/lcms2.h:158:23: note: expanded from macro 'CMSREGISTER'
  #  define CMSREGISTER register
                        ^
  /usr/local/include/lcms2.h:1292:44: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
                                             CMSREGISTER cmsUInt16Number Out[],
                                             ^~~~~~~~~~~~
  /usr/local/include/lcms2.h:158:23: note: expanded from macro 'CMSREGISTER'
  #  define CMSREGISTER register
                        ^
  /usr/local/include/lcms2.h:1293:44: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
                                             CMSREGISTER void * Cargo);
                                             ^~~~~~~~~~~~
  /usr/local/include/lcms2.h:158:23: note: expanded from macro 'CMSREGISTER'
  #  define CMSREGISTER register
                        ^
  /usr/local/include/lcms2.h:1295:44: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
  typedef cmsInt32Number (* cmsSAMPLERFLOAT)(CMSREGISTER const cmsFloat32Number In[],
                                             ^~~~~~~~~~~~
  /usr/local/include/lcms2.h:158:23: note: expanded from macro 'CMSREGISTER'
  #  define CMSREGISTER register
                        ^
  /usr/local/include/lcms2.h:1296:44: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
                                             CMSREGISTER cmsFloat32Number Out[],
                                             ^~~~~~~~~~~~
  /usr/local/include/lcms2.h:158:23: note: expanded from macro 'CMSREGISTER'
  #  define CMSREGISTER register
                        ^
  /usr/local/include/lcms2.h:1297:44: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
                                             CMSREGISTER void * Cargo);
                                             ^~~~~~~~~~~~
  /usr/local/include/lcms2.h:158:23: note: expanded from macro 'CMSREGISTER'
  #  define CMSREGISTER register
                        ^

Add -D CMS_NO_REGISTER_KEYWORD to CPPFLAGS, to avoid lcms2.h using
register keywords in its declarations.

PR:		271421
Approved by:	sunpoet (maintainer)
MFH:		2023Q2
</content>
</entry>
<entry>
<title>devel/icu: update to 73.1</title>
<updated>2023-04-13T00:56:37Z</updated>
<author>
<name>Jan Beich</name>
<email>jbeich@FreeBSD.org</email>
</author>
<published>2023-03-23T17:56:40Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=f1f1a8be887ee2c5d75bec33cb8f8a89454e606b'/>
<id>urn:sha1:f1f1a8be887ee2c5d75bec33cb8f8a89454e606b</id>
<content type='text'>
- Temporarily switch to GitHub auto archive (release artifacts are N/A atm)

Changes:	https://github.com/unicode-org/icu/releases/tag/release-73-1
Reported by:	GitHub (watch releases)
PR:		270422
Exp-run by:	antoine
</content>
</entry>
<entry>
<title>devel/icu: update to 72.1</title>
<updated>2022-10-19T08:10:29Z</updated>
<author>
<name>Jan Beich</name>
<email>jbeich@FreeBSD.org</email>
</author>
<published>2022-09-24T16:35:03Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=dfe25d73e7fdd333c59008a4ec1859c7f93dacd6'/>
<id>urn:sha1:dfe25d73e7fdd333c59008a4ec1859c7f93dacd6</id>
<content type='text'>
Changes:	https://github.com/unicode-org/icu/releases/tag/release-72-1
Reported by:	GitHub (watch releases)
PR:		266582
Exp-run by:	antoine
</content>
</entry>
<entry>
<title>Remove WWW entries moved into port Makefiles</title>
<updated>2022-09-07T21:58:51Z</updated>
<author>
<name>Stefan Eßer</name>
<email>se@FreeBSD.org</email>
</author>
<published>2022-09-07T21:30:14Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4'/>
<id>urn:sha1:fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4</id>
<content type='text'>
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
</content>
</entry>
<entry>
<title>Add WWW entries to port Makefiles</title>
<updated>2022-09-07T21:10:59Z</updated>
<author>
<name>Stefan Eßer</name>
<email>se@FreeBSD.org</email>
</author>
<published>2022-09-07T21:06:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=b7f05445c00f2625aa19b4154ebcbce5ed2daa52'/>
<id>urn:sha1:b7f05445c00f2625aa19b4154ebcbce5ed2daa52</id>
<content type='text'>
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
</content>
</entry>
<entry>
<title>*/*: bump all consumers after recent boost upgrade</title>
<updated>2022-08-12T14:46:53Z</updated>
<author>
<name>Dima Panov</name>
<email>fluffy@FreeBSD.org</email>
</author>
<published>2022-08-12T14:46:53Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=4cf39decb348615b9c8a28370d987a85d1b8a5ed'/>
<id>urn:sha1:4cf39decb348615b9c8a28370d987a85d1b8a5ed</id>
<content type='text'>
</content>
</entry>
<entry>
<title>devel/icu: update to 71.1</title>
<updated>2022-04-07T00:39:10Z</updated>
<author>
<name>Jan Beich</name>
<email>jbeich@FreeBSD.org</email>
</author>
<published>2022-03-17T21:23:31Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=268cee3b0227efd217869b43152e8936a05cb850'/>
<id>urn:sha1:268cee3b0227efd217869b43152e8936a05cb850</id>
<content type='text'>
Changes:	https://github.com/unicode-org/icu/releases/tag/release-71-1
Reported by:	GitHub (watch releases)
PR:		262654
Exp-run by:	antoine
Approved by:	fluffy
</content>
</entry>
</feed>
