diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2019-03-09 07:59:09 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2019-03-09 07:59:09 +0000 |
commit | 4e4c470b3141799530fd74b5025ab72ef81095c2 (patch) | |
tree | 03a5012f9a2c5b05316ab2808452dc84a55aac59 /deskutils | |
parent | dcbf68fae08ce51586a92b53d629b83f784a22d7 (diff) | |
download | freebsd-ports-4e4c470b3141799530fd74b5025ab72ef81095c2.zip |
deskutils/pinot: prepare fore exiv2-0.27
Replace include of xmp.hpp with exiv2.hpp.
PR: 235943
Diffstat (limited to 'deskutils')
-rw-r--r-- | deskutils/pinot/Makefile | 2 | ||||
-rw-r--r-- | deskutils/pinot/files/patch-Tokenize_filters_Exiv2ImageFilter.cc | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/deskutils/pinot/Makefile b/deskutils/pinot/Makefile index 01d5e97bc140..04f03f4fb40a 100644 --- a/deskutils/pinot/Makefile +++ b/deskutils/pinot/Makefile @@ -3,7 +3,7 @@ PORTNAME= pinot PORTVERSION= 1.09 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= deskutils MAINTAINER= thierry@FreeBSD.org diff --git a/deskutils/pinot/files/patch-Tokenize_filters_Exiv2ImageFilter.cc b/deskutils/pinot/files/patch-Tokenize_filters_Exiv2ImageFilter.cc new file mode 100644 index 000000000000..1470a771f019 --- /dev/null +++ b/deskutils/pinot/files/patch-Tokenize_filters_Exiv2ImageFilter.cc @@ -0,0 +1,13 @@ +Fix build with exiv2-0.27 + +--- Tokenize/filters/Exiv2ImageFilter.cc.orig 2019-03-09 07:44:20 UTC ++++ Tokenize/filters/Exiv2ImageFilter.cc +@@ -25,7 +25,7 @@ + #include <exiv2/image.hpp> + #include <exiv2/exif.hpp> + #include <exiv2/iptc.hpp> +-#include <exiv2/xmp.hpp> ++#include <exiv2/exiv2.hpp> + + #include "config.h" + #include "Exiv2ImageFilter.h" |