commit: 4335ff10cb362b8c9e42a8c42d8576582df07bba Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Thu Jan 16 14:53:54 2020 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Thu Jan 16 14:53:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4335ff10
media-gfx/iscan: Add patch for IJG libjpeg Closes: https://bugs.gentoo.org/704062 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: David Seifert <soap <AT> gentoo.org> .../iscan/files/iscan-3.61.0-ijg-libjpeg.patch | 45 ++++++++++++++++++++++ media-gfx/iscan/iscan-3.61.0.ebuild | 4 +- 2 files changed, 48 insertions(+), 1 deletion(-) diff --git a/media-gfx/iscan/files/iscan-3.61.0-ijg-libjpeg.patch b/media-gfx/iscan/files/iscan-3.61.0-ijg-libjpeg.patch new file mode 100644 index 00000000000..2625741d409 --- /dev/null +++ b/media-gfx/iscan/files/iscan-3.61.0-ijg-libjpeg.patch @@ -0,0 +1,45 @@ +--- a/filters/jpeg.cpp ++++ b/filters/jpeg.cpp +@@ -410,13 +410,13 @@ + cinfo_.image_height = ctx_.height (); + + jpeg_set_defaults (&cinfo_); +- jpeg_set_quality (&cinfo_, quality_, true); ++ jpeg_set_quality (&cinfo_, quality_, TRUE); + + cinfo_.density_unit = 1; // in dpi + cinfo_.X_density = ctx_.x_resolution (); + cinfo_.Y_density = ctx_.y_resolution (); + +- jpeg_start_compress (&cinfo_, true); ++ jpeg_start_compress (&cinfo_, TRUE); + + cache_ = new octet[ctx_.octets_per_line ()]; + cache_size_ = ctx_.octets_per_line (); +@@ -462,7 +462,7 @@ + dmgr_.next_output_byte = jbuf_ + (jbuf_size_ - n); + dmgr_.free_in_buffer = n; + +- return true; ++ return TRUE; + } + + void +@@ -535,7 +535,7 @@ + + //jpegデータの一部が分割されて送られてきても正常に動作するように変更 + +- return false; ++ return FALSE; + } + + void +@@ -580,7 +580,7 @@ + { + if (!header_done_) + { +- if (JPEG_SUSPENDED == jpeg_read_header (&cinfo_, true)) ++ if (JPEG_SUSPENDED == jpeg_read_header (&cinfo_, TRUE)) + { + log::trace ("jpeg_read_header suspended"); + if (!reclaim_space ()) diff --git a/media-gfx/iscan/iscan-3.61.0.ebuild b/media-gfx/iscan/iscan-3.61.0.ebuild index 3fe05c6da65..5ea99a53ae2 100644 --- a/media-gfx/iscan/iscan-3.61.0.ebuild +++ b/media-gfx/iscan/iscan-3.61.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -32,6 +32,8 @@ RDEPEND=${DEPEND} S="${WORKDIR}/utsushi-0.$(ver_cut 2-3)" +PATCHES=( "${FILESDIR}"/${PN}-3.61.0-ijg-libjpeg.patch ) + src_configure() { econf \ $(use_with gui gtkmm) \