d6f53765c5
Changelog: GEGL-0.4.12 2018-10-23 GeglBuffer ~~~~~~~~~~ Fix fix of scaled blitting, the fix from last release introduced scaling artifacts for all formats that are non-8bit. Contributions to this relase ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Ell, Øyvind Kolås and Rodrigo Lledó GEGL-0.4.10 2018-10-16 ---------------------- GeglBuffer ~~~~~~~~~~ Fix integer overflow issues for u32 blit scaling code paths. Reduced memory clearing overhead for temporary buffers during blit. Round alpha component during u8 bilinear/box filtering (this caused artifacts on OSX through interaction without unknown platform differences in libc/compilter/graphics stack) gegl_buffer_dup now matches source buffer abyss, shift and tile-size more closely. Added GEGL_TILE_COPY command for backends, for more efficient buffer duplication/copies. New GeglBufferIterator API. Move type-generic scaling algorithms to GeglBuffer folder, move opencl integration bits out of buffer. Operations ~~~~~~~~~~ gif-load: new operation for decoding GIF images/animations, with frame delay exposed as an out-property. exr-save: do not hard-code a version name space long-shadow: add 'Fading (fixed length)' style with a new user-defined 'Midpoint' parameter maniuk06: use double precision, permitting to work on larger images. watershed-transform: improved description unsharp-mask: permit std-dev radius of up to 1500px (from 300). Updated all operations to use new iterator API Contributors to this release ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Alexandre Prokoudine, Anders Jonsson, Debarshi Ray, Ell, Hussam Al-Tayeb, Marco Ciampa, Massimo Valentini, Øyvind Kolås, Piotr Drąg, Rodrigo Lledó and Tim Sabsch.
46 lines
1.3 KiB
Makefile
46 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.70 2018/11/22 13:00:03 ryoon Exp $
|
|
|
|
DISTNAME= gegl-0.4.12
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://download.gimp.org/pub/gegl/0.4/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= adam@NetBSD.org
|
|
HOMEPAGE= http://gegl.org/
|
|
COMMENT= Graph based image processing framework
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake pkg-config intltool msgfmt
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-docs
|
|
CONFIGURE_ENV+= ac_cv_path_ASCIIDOC=no
|
|
CONFIGURE_ENV+= ac_cv_path_ENSCRIPT=no
|
|
CONFIGURE_ENV+= ac_cv_path_SDL_CONFIG=no
|
|
CONFIGURE_ENV+= ac_cv_prog_RUBY=no
|
|
PKGCONFIG_OVERRIDE+= gegl.pc.in
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
PLIST_VARS+= v4l
|
|
|
|
.if ${OPSYS} == "Linux" && exists(/usr/include/linux/videodev.h)
|
|
PLIST.v4l= yes
|
|
.endif
|
|
|
|
.include "options.mk"
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && ${MV} gcut gegl-gcut
|
|
|
|
BUILDLINK_API_DEPENDS.babl+= babl>=0.1.52
|
|
.include "../../graphics/babl/buildlink3.mk"
|
|
.include "../../mk/jpeg.buildlink3.mk"
|
|
.include "../../graphics/jasper/buildlink3.mk"
|
|
.include "../../graphics/openexr/buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../textproc/json-glib/buildlink3.mk"
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.include "../../mk/dlopen.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|