commit: b428d604c631ab659a91f7a364f811b80f70f9a4 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org> AuthorDate: Sat Dec 5 09:05:26 2015 +0000 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org> CommitDate: Sat Dec 5 09:05:26 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b428d604
media-libs/gegl: Fix compiling on bigendian. Package-Manager: portage-2.2.26 media-libs/gegl/files/gegl-0.3.4-endian.patch | 11 +++++++++++ media-libs/gegl/gegl-0.3.4.ebuild | 2 ++ 2 files changed, 13 insertions(+) diff --git a/media-libs/gegl/files/gegl-0.3.4-endian.patch b/media-libs/gegl/files/gegl-0.3.4-endian.patch new file mode 100644 index 0000000..3df13e6 --- /dev/null +++ b/media-libs/gegl/files/gegl-0.3.4-endian.patch @@ -0,0 +1,11 @@ +--- a/operations/external/tiff-load.c ++++ b/operations/external/tiff-load.c +@@ -505,7 +505,7 @@ + GeglRectangle line = { 0, p->height - row - 1, p->width, 1 }; + #if G_BYTE_ORDER != G_LITTLE_ENDIAN + guint row_start = row * p->width; +- guint row end = row * p->width + p->width; ++ guint row_end = row * p->width + p->width; + guint i; + + for (i = row_start; i < row_end; i++) diff --git a/media-libs/gegl/gegl-0.3.4.ebuild b/media-libs/gegl/gegl-0.3.4.ebuild index 4fca26c..ce3348c 100644 --- a/media-libs/gegl/gegl-0.3.4.ebuild +++ b/media-libs/gegl/gegl-0.3.4.ebuild @@ -77,6 +77,8 @@ pkg_setup() { } src_prepare() { + epatch "${FILESDIR}"/${PN}-0.3.4-endian.patch + # FIXME: the following should be proper patch sent to upstream # fix OSX loadable module filename extension sed -i -e 's/\.dylib/.bundle/' configure.ac || die