summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
Diffstat (limited to 'graphics')
-rw-r--r--graphics/gegl/Makefile211
-rw-r--r--graphics/gegl/distinfo2
-rw-r--r--graphics/gegl/files/patch-tools_exp_combine.cpp14
-rw-r--r--graphics/gegl/pkg-descr9
-rw-r--r--graphics/gegl/pkg-plist374
5 files changed, 610 insertions, 0 deletions
diff --git a/graphics/gegl/Makefile b/graphics/gegl/Makefile
new file mode 100644
index 000000000..daf6175cc
--- /dev/null
+++ b/graphics/gegl/Makefile
@@ -0,0 +1,211 @@
+# New ports collection Makefile for: gegl
+# Date created: 3 October 2008
+# Whom: gahr
+#
+# $FreeBSD: ports/graphics/gegl/Makefile,v 1.32 2012/03/14 15:24:09 mezz Exp $
+#
+
+PORTNAME= gegl
+PORTVERSION= 0.2.0
+CATEGORIES= graphics
+MASTER_SITES= ftp://ftp.gimp.org/pub/gegl/0.2/
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= A graph based image processing framework
+
+BUILD_DEPENDS= g-ir-scanner:${PORTSDIR}/devel/gobject-introspection
+LIB_DEPENDS= babl-0.1:${PORTSDIR}/x11/babl \
+ execinfo.1:${PORTSDIR}/devel/libexecinfo
+
+OPTIONS= CAIRO "Enable Cairo" on \
+ ENSCRIPT "Enable Enscript" on \
+ FFMPEG "Enable videos through ffmpeg (BROKEN)" off \
+ GRAPHVIZ "Enable Graphviz" on \
+ JPEG "Enable JPEG format support" on \
+ LUA "Enable LUA" on \
+ OPENEXR "Enable High Dynamic Range (HDR) format support" on \
+ OPENRAW "Enable RAW camera format support" on \
+ OPTIMIZE "Enable optimizations autodetection (MMX, SSE)" off \
+ PANGO "Enable rendering through Pango " on \
+ PNG "Enable PNG format support" on \
+ RSVG "Enable RSVG format support" on \
+ SDL "Enable SDL" on \
+ SPIRO "Enable Spiro" on \
+ V4L "Enable Video4Linux" on
+
+# Disable docs until I fix the problem with graphviz's dot
+NOPORTDOCS= yes
+
+USE_GNOME= gtk20 glib20 pkgconfig gnomehack
+USE_BZIP2= yes
+USE_GMAKE= yes
+USE_GETTEXT= yes
+USE_LDCONFIG= ${PREFIX}/lib/gegl-0.2
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS+=--without-vala
+CPPFLAGS+= -I${LOCALBASE}/include
+LDFLAGS+= -L${LOCALBASE}/lib -lexecinfo -lintl
+
+GEGL_MINOR= 199
+GEGL_VER= 0.2
+PLIST_SUB+= GEGL_MINOR="${GEGL_MINOR}" GEGL_VER=${GEGL_VER}
+
+EXAMPLES= 2geglbuffer csugar float-lookup \
+ gegl-convert gegl-slicer geglbuffer-add-image \
+ geglbuffer-clock hello-world-video hello-world
+
+.include <bsd.port.options.mk>
+
+.if !defined(WITHOUT_CAIRO)
+LIB_DEPENDS+= cairo.2:${PORTSDIR}/graphics/cairo
+PLIST_SUB+= CAIRO=""
+.else
+CONFIGURE_ARGS+=--without-cairo
+PLIST_SUB+= CAIRO="@comment "
+.endif
+
+.if !defined(WITHOUT_PANGO)
+USE_GNOME+= pango
+PLIST_SUB+= PANGO=""
+.else
+CONFIGURE_ARGS+=--without-pango
+PLIST_SUB+= PANGO="@comment "
+.endif
+
+.if !defined(WITHOUT_PANGO) && !defined(WITHOUT_CAIRO)
+PLIST_SUB+= PANGOCAIRO=""
+.else
+CONFIGURE_ARGS+=--without-pangocairo
+PLIST_SUB+= PANGOCAIRO="@comment "
+.endif
+
+.if !defined(WITHOUT_ENSCRIPT)
+BUILD_DEPENDS+= enscript:${PORTSDIR}/print/enscript-a4
+.endif
+
+.if !defined(WITHOUT_FFMPEG)
+#BROKEN= ffmpeg support is currently broken
+LIB_DEPENDS+= avformat.1:${PORTSDIR}/multimedia/ffmpeg
+PLIST_SUB+= FFMPEG=""
+.else
+CONFIGURE_ARGS+=--without-libavformat
+PLIST_SUB+= FFMPEG="@comment "
+.endif
+
+.if !defined(WITHOUT_GRAPHVIZ)
+LIB_DEPENDS+= graph:${PORTSDIR}/graphics/graphviz
+.else
+CONFIGURE_ARGS+=--without-graphviz
+.endif
+
+.if !defined(WITHOUT_JPEG)
+LIB_DEPENDS+= jpeg.11:${PORTSDIR}/graphics/jpeg
+PLIST_SUB+= JPEG=""
+.else
+CONFIGURE_ARGS+=--without-libjpeg
+PLIST_SUB+= JPEG="@comment "
+.endif
+
+.if !defined(WITHOUT_LUA)
+USE_LUA= 5.1
+.else
+CONFIGURE_ARGS+=--without-lua
+.endif
+
+.if !defined(WITHOUT_OPENEXR)
+LIB_DEPENDS+= IlmImf.6:${PORTSDIR}/graphics/OpenEXR
+PLIST_SUB+= OPENEXR=""
+.else
+CONFIGURE_ARGS+=--without-openexr
+PLIST_SUB+= OPENEXR="@comment "
+.endif
+
+.if !defined(WITHOUT_OPENRAW)
+LIB_DEPENDS+= openraw.6:${PORTSDIR}/graphics/libopenraw
+PLIST_SUB+= OPENRAW=""
+.else
+CONFIGURE_ARGS+=--without-libopenraw
+PLIST_SUB+= OPENRAW="@comment "
+.endif
+
+.if defined(WITHOUT_OPTIMIZE)
+CONFIGURE_ARGS+=--disable-mmx \
+ --disable-sse
+.endif
+
+.if !defined(WITHOUT_PNG)
+LIB_DEPENDS+= png.6:${PORTSDIR}/graphics/png
+PLIST_SUB+= PNG=""
+.else
+CONFIGURE_ARGS+=--without-libpng
+PLIST_SUB+= PNG="@comment "
+.endif
+
+.if !defined(WITHOUT_RSVG)
+LIB_DEPENDS+= rsvg-2.2:${PORTSDIR}/graphics/librsvg2
+PLIST_SUB+= RSVG=""
+.else
+CONFIGURE_ARGS+=--without-librsvg
+PLIST_SUB+= RSVG="@comment "
+.endif
+
+.if !defined(WITHOUT_SDL)
+USE_SDL= sdl
+PLIST_SUB+= SDL=""
+.else
+CONFIGURE_ARGS+=--without-sdl
+PLIST_SUB+= SDL="@comment "
+.endif
+
+.if !defined(WITHOUT_SPIRO)
+LIB_DEPENDS+= spiro.0:${PORTSDIR}/graphics/libspiro
+.else
+CONFIGURE_ARGS+=--without-libspiro
+.endif
+
+.if !defined(WITHOUT_V4L)
+BUILD_DEPENDS+= ${LOCALBASE}/include/linux/videodev.h:${PORTSDIR}/multimedia/v4l_compat
+PLIST_SUB+= V4L=""
+.else
+CONFIGURE_ARGS+=--without-libv4l
+PLIST_SUB+= V4L="@comment "
+.endif
+
+.if !defined(NOPORTDOCS)
+BUILD_DEPENDS+= a2x:${PORTSDIR}/textproc/asciidoc
+.else
+CONFIGURE_ARGS+= --disable-docs
+.endif
+
+post-patch:
+.if defined(NOPORTDOCS)
+ ${REINPLACE_CMD} -e '10s|\\||; 11,13d' ${WRKSRC}/Makefile.am
+.endif
+ ${REINPLACE_CMD} -e 's|-T||' ${WRKSRC}/docs/Makefile.am ${WRKSRC}/docs/Makefile.in
+ ${REINPLACE_CMD} -e 's|\(lua\)\(5\.1\)|\1-\2|g' ${WRKSRC}/configure
+ ${REINPLACE_CMD} -e 's|/usr/bin/ruby|/usr/bin/env ruby|' ${WRKSRC}/tools/gobj2dot.rb
+
+post-build:
+.if !defined(NOPORTDOCS)
+ cd ${WRKSRC}/docs && ${GMAKE}
+.endif
+
+post-install:
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}/gallery
+ (cd ${WRKSRC}/docs && \
+ ${COPYTREE_SHARE} \*.html ${DOCSDIR} && \
+ ${INSTALL_DATA} ChangeLog gegl.css gegl.devhelp devhelp.css ${DOCSDIR} && \
+ ${INSTALL_DATA} gallery/OpenRaster* ${DOCSDIR}/gallery && \
+ ${INSTALL_DATA} gallery/clones* ${DOCSDIR}/gallery && \
+ ${INSTALL_DATA} gallery/index.html ${DOCSDIR}/gallery )
+.endif
+.if !defined(NOPORTEXAMPLES)
+ ${MKDIR} ${EXAMPLESDIR}/data
+ ${INSTALL_DATA} ${WRKSRC}/examples/data/surfer.png ${EXAMPLESDIR}/data
+.for ex in ${EXAMPLES}
+ ${INSTALL_DATA} ${WRKSRC}/examples/${ex}.c ${EXAMPLESDIR}
+.endfor
+.endif
+
+.include <bsd.port.mk>
diff --git a/graphics/gegl/distinfo b/graphics/gegl/distinfo
new file mode 100644
index 000000000..d42bc9cbd
--- /dev/null
+++ b/graphics/gegl/distinfo
@@ -0,0 +1,2 @@
+SHA256 (gegl-0.2.0.tar.bz2) = df2e6a0d9499afcbc4f9029c18d9d1e0dd5e8710a75e17c9b1d9a6480dd8d426
+SIZE (gegl-0.2.0.tar.bz2) = 7502040
diff --git a/graphics/gegl/files/patch-tools_exp_combine.cpp b/graphics/gegl/files/patch-tools_exp_combine.cpp
new file mode 100644
index 000000000..19fe993da
--- /dev/null
+++ b/graphics/gegl/files/patch-tools_exp_combine.cpp
@@ -0,0 +1,14 @@
+--- tools/exp_combine.cpp.orig 2011-03-02 09:30:13.000000000 +0100
++++ tools/exp_combine.cpp 2011-03-02 09:27:16.000000000 +0100
+@@ -6,6 +6,11 @@
+ #include <cerrno>
+ #include <cmath>
+
++#include <sys/param.h>
++#if __FreeBSD_version <= 704100 || (__FreeBSD_version >= 800000 && __FreeBSD_version < 802502) || (__FreeBSD_version >= 900000 && __FreeBSD_version < 900027)
++#define log2f(x) (logf(x) / logf(2))
++#endif
++
+ #include <iostream>
+
+ #include <exiv2/image.hpp>
diff --git a/graphics/gegl/pkg-descr b/graphics/gegl/pkg-descr
new file mode 100644
index 000000000..2298a1a0e
--- /dev/null
+++ b/graphics/gegl/pkg-descr
@@ -0,0 +1,9 @@
+GEGL (Generic Graphics Library) is a graph based image
+processing framework.
+
+GEGL provides infrastructure to do demand based cached
+non destructive image editing on larger than RAM buffers.
+Through babl it provides support for a wide range of color
+models and pixel storage formats for input and output.
+
+WWW: http://gegl.org/
diff --git a/graphics/gegl/pkg-plist b/graphics/gegl/pkg-plist
new file mode 100644
index 000000000..dda44a42f
--- /dev/null
+++ b/graphics/gegl/pkg-plist
@@ -0,0 +1,374 @@
+bin/gegl
+include/gegl-%%GEGL_VER%%/gegl-buffer-backend.h
+include/gegl-%%GEGL_VER%%/gegl-buffer-iterator.h
+include/gegl-%%GEGL_VER%%/gegl-buffer.h
+include/gegl-%%GEGL_VER%%/gegl-chant.h
+include/gegl-%%GEGL_VER%%/gegl-color.h
+include/gegl-%%GEGL_VER%%/gegl-curve.h
+include/gegl-%%GEGL_VER%%/gegl-enums.h
+include/gegl-%%GEGL_VER%%/gegl-lookup.h
+include/gegl-%%GEGL_VER%%/gegl-matrix.h
+include/gegl-%%GEGL_VER%%/gegl-paramspecs.h
+include/gegl-%%GEGL_VER%%/gegl-path.h
+include/gegl-%%GEGL_VER%%/gegl-plugin.h
+include/gegl-%%GEGL_VER%%/gegl-tile-backend.h
+include/gegl-%%GEGL_VER%%/gegl-tile-source.h
+include/gegl-%%GEGL_VER%%/gegl-tile.h
+include/gegl-%%GEGL_VER%%/gegl-types.h
+include/gegl-%%GEGL_VER%%/gegl-utils.h
+include/gegl-%%GEGL_VER%%/gegl-version.h
+include/gegl-%%GEGL_VER%%/gegl.h
+include/gegl-%%GEGL_VER%%/opencl/cl.h
+include/gegl-%%GEGL_VER%%/opencl/cl_d3d10.h
+include/gegl-%%GEGL_VER%%/opencl/cl_ext.h
+include/gegl-%%GEGL_VER%%/opencl/cl_gl.h
+include/gegl-%%GEGL_VER%%/opencl/cl_gl_ext.h
+include/gegl-%%GEGL_VER%%/opencl/cl_platform.h
+include/gegl-%%GEGL_VER%%/opencl/gegl-cl-color.h
+include/gegl-%%GEGL_VER%%/opencl/gegl-cl-init.h
+include/gegl-%%GEGL_VER%%/opencl/gegl-cl-types.h
+include/gegl-%%GEGL_VER%%/opencl/gegl-cl.h
+include/gegl-%%GEGL_VER%%/opencl/opencl.h
+include/gegl-%%GEGL_VER%%/operation/gegl-operation-area-filter.h
+include/gegl-%%GEGL_VER%%/operation/gegl-operation-composer.h
+include/gegl-%%GEGL_VER%%/operation/gegl-operation-composer3.h
+include/gegl-%%GEGL_VER%%/operation/gegl-operation-filter.h
+include/gegl-%%GEGL_VER%%/operation/gegl-operation-meta.h
+include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-composer.h
+include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-composer3.h
+include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-filter.h
+include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-render.h
+include/gegl-%%GEGL_VER%%/operation/gegl-operation-sink.h
+include/gegl-%%GEGL_VER%%/operation/gegl-operation-source.h
+include/gegl-%%GEGL_VER%%/operation/gegl-operation-temporal.h
+include/gegl-%%GEGL_VER%%/operation/gegl-operation.h
+%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-fill.la
+%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-fill.so
+%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-stroke.la
+%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-stroke.so
+%%CAIRO%%lib/gegl-%%GEGL_VER%%/path.la
+%%CAIRO%%lib/gegl-%%GEGL_VER%%/path.so
+%%FFMPEG%%lib/gegl-%%GEGL_VER%%/ff-load.la
+%%FFMPEG%%lib/gegl-%%GEGL_VER%%/ff-load.so
+%%JPEG%%lib/gegl-%%GEGL_VER%%/jpg-load.la
+%%JPEG%%lib/gegl-%%GEGL_VER%%/jpg-load.so
+%%JPEG%%lib/gegl-%%GEGL_VER%%/jpg-save.la
+%%JPEG%%lib/gegl-%%GEGL_VER%%/jpg-save.so
+%%OPENEXR%%lib/gegl-%%GEGL_VER%%/exr-load.la
+%%OPENEXR%%lib/gegl-%%GEGL_VER%%/exr-load.so
+%%OPENEXR%%lib/gegl-%%GEGL_VER%%/exr-save.la
+%%OPENEXR%%lib/gegl-%%GEGL_VER%%/exr-save.so
+%%OPENRAW%%lib/gegl-%%GEGL_VER%%/openraw.la
+%%OPENRAW%%lib/gegl-%%GEGL_VER%%/openraw.so
+%%PANGOCAIRO%%lib/gegl-%%GEGL_VER%%/text.la
+%%PANGOCAIRO%%lib/gegl-%%GEGL_VER%%/text.so
+%%PNG%%lib/gegl-%%GEGL_VER%%/png-load.la
+%%PNG%%lib/gegl-%%GEGL_VER%%/png-load.so
+%%PNG%%lib/gegl-%%GEGL_VER%%/png-save.la
+%%PNG%%lib/gegl-%%GEGL_VER%%/png-save.so
+%%RSVG%%lib/gegl-%%GEGL_VER%%/svg-load.la
+%%RSVG%%lib/gegl-%%GEGL_VER%%/svg-load.so
+%%SDL%%lib/gegl-%%GEGL_VER%%/sdl-display.la
+%%SDL%%lib/gegl-%%GEGL_VER%%/sdl-display.so
+%%V4L%%lib/gegl-%%GEGL_VER%%/v4l.la
+%%V4L%%lib/gegl-%%GEGL_VER%%/v4l.so
+lib/gegl-%%GEGL_VER%%/add.la
+lib/gegl-%%GEGL_VER%%/add.so
+lib/gegl-%%GEGL_VER%%/bilateral-filter.la
+lib/gegl-%%GEGL_VER%%/bilateral-filter.so
+lib/gegl-%%GEGL_VER%%/box-blur.la
+lib/gegl-%%GEGL_VER%%/box-blur.so
+lib/gegl-%%GEGL_VER%%/brightness-contrast.la
+lib/gegl-%%GEGL_VER%%/brightness-contrast.so
+lib/gegl-%%GEGL_VER%%/buffer-sink.la
+lib/gegl-%%GEGL_VER%%/buffer-sink.so
+lib/gegl-%%GEGL_VER%%/buffer-source.la
+lib/gegl-%%GEGL_VER%%/buffer-source.so
+lib/gegl-%%GEGL_VER%%/c2g.la
+lib/gegl-%%GEGL_VER%%/c2g.so
+lib/gegl-%%GEGL_VER%%/checkerboard.la
+lib/gegl-%%GEGL_VER%%/checkerboard.so
+lib/gegl-%%GEGL_VER%%/clear.la
+lib/gegl-%%GEGL_VER%%/clear.so
+lib/gegl-%%GEGL_VER%%/clone.la
+lib/gegl-%%GEGL_VER%%/clone.so
+lib/gegl-%%GEGL_VER%%/color-burn.la
+lib/gegl-%%GEGL_VER%%/color-burn.so
+lib/gegl-%%GEGL_VER%%/color-dodge.la
+lib/gegl-%%GEGL_VER%%/color-dodge.so
+lib/gegl-%%GEGL_VER%%/color-temperature.la
+lib/gegl-%%GEGL_VER%%/color-temperature.so
+lib/gegl-%%GEGL_VER%%/color-to-alpha.la
+lib/gegl-%%GEGL_VER%%/color-to-alpha.so
+lib/gegl-%%GEGL_VER%%/color.la
+lib/gegl-%%GEGL_VER%%/color.so
+lib/gegl-%%GEGL_VER%%/contrast-curve.la
+lib/gegl-%%GEGL_VER%%/contrast-curve.so
+lib/gegl-%%GEGL_VER%%/convert-format.la
+lib/gegl-%%GEGL_VER%%/convert-format.so
+lib/gegl-%%GEGL_VER%%/crop.la
+lib/gegl-%%GEGL_VER%%/crop.so
+lib/gegl-%%GEGL_VER%%/darken.la
+lib/gegl-%%GEGL_VER%%/darken.so
+lib/gegl-%%GEGL_VER%%/difference-of-gaussians.la
+lib/gegl-%%GEGL_VER%%/difference-of-gaussians.so
+lib/gegl-%%GEGL_VER%%/difference.la
+lib/gegl-%%GEGL_VER%%/difference.so
+lib/gegl-%%GEGL_VER%%/display.la
+lib/gegl-%%GEGL_VER%%/display.so
+lib/gegl-%%GEGL_VER%%/divide.la
+lib/gegl-%%GEGL_VER%%/divide.so
+lib/gegl-%%GEGL_VER%%/dropshadow.la
+lib/gegl-%%GEGL_VER%%/dropshadow.so
+lib/gegl-%%GEGL_VER%%/dst-atop.la
+lib/gegl-%%GEGL_VER%%/dst-atop.so
+lib/gegl-%%GEGL_VER%%/dst-in.la
+lib/gegl-%%GEGL_VER%%/dst-in.so
+lib/gegl-%%GEGL_VER%%/dst-out.la
+lib/gegl-%%GEGL_VER%%/dst-out.so
+lib/gegl-%%GEGL_VER%%/dst-over.la
+lib/gegl-%%GEGL_VER%%/dst-over.so
+lib/gegl-%%GEGL_VER%%/dst.la
+lib/gegl-%%GEGL_VER%%/dst.so
+lib/gegl-%%GEGL_VER%%/edge-laplace.la
+lib/gegl-%%GEGL_VER%%/edge-laplace.so
+lib/gegl-%%GEGL_VER%%/edge-sobel.la
+lib/gegl-%%GEGL_VER%%/edge-sobel.so
+lib/gegl-%%GEGL_VER%%/exclusion.la
+lib/gegl-%%GEGL_VER%%/exclusion.so
+lib/gegl-%%GEGL_VER%%/exp-combine.la
+lib/gegl-%%GEGL_VER%%/exp-combine.so
+lib/gegl-%%GEGL_VER%%/fattal02.la
+lib/gegl-%%GEGL_VER%%/fattal02.so
+lib/gegl-%%GEGL_VER%%/fractal-explorer.la
+lib/gegl-%%GEGL_VER%%/fractal-explorer.so
+lib/gegl-%%GEGL_VER%%/gamma.la
+lib/gegl-%%GEGL_VER%%/gamma.so
+lib/gegl-%%GEGL_VER%%/gaussian-blur.la
+lib/gegl-%%GEGL_VER%%/gaussian-blur.so
+lib/gegl-%%GEGL_VER%%/gegl-buffer-load-op.la
+lib/gegl-%%GEGL_VER%%/gegl-buffer-load-op.so
+lib/gegl-%%GEGL_VER%%/gegl-buffer-save-op.la
+lib/gegl-%%GEGL_VER%%/gegl-buffer-save-op.so
+lib/gegl-%%GEGL_VER%%/grey.la
+lib/gegl-%%GEGL_VER%%/grey.so
+lib/gegl-%%GEGL_VER%%/grid.la
+lib/gegl-%%GEGL_VER%%/grid.so
+lib/gegl-%%GEGL_VER%%/hard-light.la
+lib/gegl-%%GEGL_VER%%/hard-light.so
+lib/gegl-%%GEGL_VER%%/introspect.la
+lib/gegl-%%GEGL_VER%%/introspect.so
+lib/gegl-%%GEGL_VER%%/invert.la
+lib/gegl-%%GEGL_VER%%/invert.so
+lib/gegl-%%GEGL_VER%%/jp2-load.la
+lib/gegl-%%GEGL_VER%%/jp2-load.so
+lib/gegl-%%GEGL_VER%%/layer.la
+lib/gegl-%%GEGL_VER%%/layer.so
+lib/gegl-%%GEGL_VER%%/lens-distortion.la
+lib/gegl-%%GEGL_VER%%/lens-distortion.so
+lib/gegl-%%GEGL_VER%%/levels.la
+lib/gegl-%%GEGL_VER%%/levels.so
+lib/gegl-%%GEGL_VER%%/lighten.la
+lib/gegl-%%GEGL_VER%%/lighten.so
+lib/gegl-%%GEGL_VER%%/load.la
+lib/gegl-%%GEGL_VER%%/load.so
+lib/gegl-%%GEGL_VER%%/magick-load.la
+lib/gegl-%%GEGL_VER%%/magick-load.so
+lib/gegl-%%GEGL_VER%%/mantiuk06.la
+lib/gegl-%%GEGL_VER%%/mantiuk06.so
+lib/gegl-%%GEGL_VER%%/map-absolute.la
+lib/gegl-%%GEGL_VER%%/map-absolute.so
+lib/gegl-%%GEGL_VER%%/map-relative.la
+lib/gegl-%%GEGL_VER%%/map-relative.so
+lib/gegl-%%GEGL_VER%%/matting-global.la
+lib/gegl-%%GEGL_VER%%/matting-global.so
+lib/gegl-%%GEGL_VER%%/mblur.la
+lib/gegl-%%GEGL_VER%%/mblur.so
+lib/gegl-%%GEGL_VER%%/mirrors.la
+lib/gegl-%%GEGL_VER%%/mirrors.so
+lib/gegl-%%GEGL_VER%%/mono-mixer.la
+lib/gegl-%%GEGL_VER%%/mono-mixer.so
+lib/gegl-%%GEGL_VER%%/motion-blur.la
+lib/gegl-%%GEGL_VER%%/motion-blur.so
+lib/gegl-%%GEGL_VER%%/multiply.la
+lib/gegl-%%GEGL_VER%%/multiply.so
+lib/gegl-%%GEGL_VER%%/noise-reduction.la
+lib/gegl-%%GEGL_VER%%/noise-reduction.so
+lib/gegl-%%GEGL_VER%%/noise.la
+lib/gegl-%%GEGL_VER%%/noise.so
+lib/gegl-%%GEGL_VER%%/nop.la
+lib/gegl-%%GEGL_VER%%/nop.so
+lib/gegl-%%GEGL_VER%%/opacity.la
+lib/gegl-%%GEGL_VER%%/opacity.so
+lib/gegl-%%GEGL_VER%%/open-buffer.la
+lib/gegl-%%GEGL_VER%%/open-buffer.so
+lib/gegl-%%GEGL_VER%%/over.la
+lib/gegl-%%GEGL_VER%%/over.so
+lib/gegl-%%GEGL_VER%%/overlay.la
+lib/gegl-%%GEGL_VER%%/overlay.so
+lib/gegl-%%GEGL_VER%%/pixbuf.la
+lib/gegl-%%GEGL_VER%%/pixbuf.so
+lib/gegl-%%GEGL_VER%%/pixelize.la
+lib/gegl-%%GEGL_VER%%/pixelize.so
+lib/gegl-%%GEGL_VER%%/plus.la
+lib/gegl-%%GEGL_VER%%/plus.so
+lib/gegl-%%GEGL_VER%%/polar-coordinates.la
+lib/gegl-%%GEGL_VER%%/polar-coordinates.so
+lib/gegl-%%GEGL_VER%%/posterize.la
+lib/gegl-%%GEGL_VER%%/posterize.so
+lib/gegl-%%GEGL_VER%%/ppm-load.la
+lib/gegl-%%GEGL_VER%%/ppm-load.so
+lib/gegl-%%GEGL_VER%%/ppm-save.la
+lib/gegl-%%GEGL_VER%%/ppm-save.so
+lib/gegl-%%GEGL_VER%%/raw-load.la
+lib/gegl-%%GEGL_VER%%/raw-load.so
+lib/gegl-%%GEGL_VER%%/rectangle.la
+lib/gegl-%%GEGL_VER%%/rectangle.so
+lib/gegl-%%GEGL_VER%%/reinhard05.la
+lib/gegl-%%GEGL_VER%%/reinhard05.so
+lib/gegl-%%GEGL_VER%%/remap.la
+lib/gegl-%%GEGL_VER%%/remap.so
+lib/gegl-%%GEGL_VER%%/rgbe-load.la
+lib/gegl-%%GEGL_VER%%/rgbe-load.so
+lib/gegl-%%GEGL_VER%%/rgbe-save.la
+lib/gegl-%%GEGL_VER%%/rgbe-save.so
+lib/gegl-%%GEGL_VER%%/ripple.la
+lib/gegl-%%GEGL_VER%%/ripple.so
+lib/gegl-%%GEGL_VER%%/save-pixbuf.la
+lib/gegl-%%GEGL_VER%%/save-pixbuf.so
+lib/gegl-%%GEGL_VER%%/save.la
+lib/gegl-%%GEGL_VER%%/save.so
+lib/gegl-%%GEGL_VER%%/screen.la
+lib/gegl-%%GEGL_VER%%/screen.so
+lib/gegl-%%GEGL_VER%%/snn-mean.la
+lib/gegl-%%GEGL_VER%%/snn-mean.so
+lib/gegl-%%GEGL_VER%%/soft-light.la
+lib/gegl-%%GEGL_VER%%/soft-light.so
+lib/gegl-%%GEGL_VER%%/src-atop.la
+lib/gegl-%%GEGL_VER%%/src-atop.so
+lib/gegl-%%GEGL_VER%%/src-in.la
+lib/gegl-%%GEGL_VER%%/src-in.so
+lib/gegl-%%GEGL_VER%%/src-out.la
+lib/gegl-%%GEGL_VER%%/src-out.so
+lib/gegl-%%GEGL_VER%%/src-over.la
+lib/gegl-%%GEGL_VER%%/src-over.so
+lib/gegl-%%GEGL_VER%%/src.la
+lib/gegl-%%GEGL_VER%%/src.so
+lib/gegl-%%GEGL_VER%%/stress.la
+lib/gegl-%%GEGL_VER%%/stress.so
+lib/gegl-%%GEGL_VER%%/stretch-contrast.la
+lib/gegl-%%GEGL_VER%%/stretch-contrast.so
+lib/gegl-%%GEGL_VER%%/subtract.la
+lib/gegl-%%GEGL_VER%%/subtract.so
+lib/gegl-%%GEGL_VER%%/svg-huerotate.la
+lib/gegl-%%GEGL_VER%%/svg-huerotate.so
+lib/gegl-%%GEGL_VER%%/svg-luminancetoalpha.la
+lib/gegl-%%GEGL_VER%%/svg-luminancetoalpha.so
+lib/gegl-%%GEGL_VER%%/svg-matrix.la
+lib/gegl-%%GEGL_VER%%/svg-matrix.so
+lib/gegl-%%GEGL_VER%%/svg-multiply.la
+lib/gegl-%%GEGL_VER%%/svg-multiply.so
+lib/gegl-%%GEGL_VER%%/svg-saturate.la
+lib/gegl-%%GEGL_VER%%/svg-saturate.so
+lib/gegl-%%GEGL_VER%%/threshold.la
+lib/gegl-%%GEGL_VER%%/threshold.so
+lib/gegl-%%GEGL_VER%%/transformops.la
+lib/gegl-%%GEGL_VER%%/transformops.so
+lib/gegl-%%GEGL_VER%%/unsharp-mask.la
+lib/gegl-%%GEGL_VER%%/unsharp-mask.so
+lib/gegl-%%GEGL_VER%%/value-invert.la
+lib/gegl-%%GEGL_VER%%/value-invert.so
+lib/gegl-%%GEGL_VER%%/vignette.la
+lib/gegl-%%GEGL_VER%%/vignette.so
+lib/gegl-%%GEGL_VER%%/waves.la
+lib/gegl-%%GEGL_VER%%/waves.so
+lib/gegl-%%GEGL_VER%%/weighted-blend.la
+lib/gegl-%%GEGL_VER%%/weighted-blend.so
+lib/gegl-%%GEGL_VER%%/write-buffer.la
+lib/gegl-%%GEGL_VER%%/write-buffer.so
+lib/gegl-%%GEGL_VER%%/xor.la
+lib/gegl-%%GEGL_VER%%/xor.so
+lib/libgegl-%%GEGL_VER%%.la
+lib/libgegl-%%GEGL_VER%%.so
+lib/libgegl-%%GEGL_VER%%.so.%%GEGL_MINOR%%
+libdata/pkgconfig/gegl-%%GEGL_VER%%.pc
+%%PORTDOCS%%share/gtk-doc/html/gegl/api.html
+%%PORTDOCS%%share/gtk-doc/html/gegl/brightness-contrast.c.html
+%%PORTDOCS%%share/gtk-doc/html/gegl/gegl-operation-area-filter.h.html
+%%PORTDOCS%%share/gtk-doc/html/gegl/gegl-operation-composer.h.html
+%%PORTDOCS%%share/gtk-doc/html/gegl/gegl-operation-filter.h.html
+%%PORTDOCS%%share/gtk-doc/html/gegl/gegl-operation-meta.h.html
+%%PORTDOCS%%share/gtk-doc/html/gegl/gegl-operation-point-composer.h.html
+%%PORTDOCS%%share/gtk-doc/html/gegl/gegl-operation-point-filter.h.html
+%%PORTDOCS%%share/gtk-doc/html/gegl/gegl-operation-point-render.h.html
+%%PORTDOCS%%share/gtk-doc/html/gegl/gegl-operation-sink.h.html
+%%PORTDOCS%%share/gtk-doc/html/gegl/gegl-operation-source.h.html
+%%PORTDOCS%%share/gtk-doc/html/gegl/gegl-operation-temporal.h.html
+%%PORTDOCS%%share/gtk-doc/html/gegl/gegl-operation.h.html
+%%PORTDOCS%%share/gtk-doc/html/gegl/gegl-plugin.h.html
+%%PORTDOCS%%share/gtk-doc/html/gegl/gegl.css
+%%PORTDOCS%%share/gtk-doc/html/gegl/gegl.devhelp
+%%PORTDOCS%%share/gtk-doc/html/gegl/gegl.h.html
+%%PORTDOCS%%share/gtk-doc/html/gegl/operations.html
+%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
+%%PORTDOCS%%%%DOCSDIR%%/api.html
+%%PORTDOCS%%%%DOCSDIR%%/brightness-contrast.c.html
+%%PORTDOCS%%%%DOCSDIR%%/class-hierarchy.html
+%%PORTDOCS%%%%DOCSDIR%%/development.html
+%%PORTDOCS%%%%DOCSDIR%%/devhelp.css
+%%PNG%%%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-00.png
+%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-00.txt
+%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-00.xml
+%%PNG%%%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-01.png
+%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-01.txt
+%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-01.xml
+%%PNG%%%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-04.png
+%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-04.txt
+%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-04.xml
+%%PNG%%%%PORTDOCS%%%%DOCSDIR%%/gallery/clones.png
+%%PORTDOCS%%%%DOCSDIR%%/gallery/clones.txt
+%%PORTDOCS%%%%DOCSDIR%%/gallery/clones.xml
+%%PORTDOCS%%%%DOCSDIR%%/gallery/index.html
+%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-area-filter.h.html
+%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-composer.h.html
+%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-filter.h.html
+%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-meta.h.html
+%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-point-composer.h.html
+%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-point-filter.h.html
+%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-point-render.h.html
+%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-sink.h.html
+%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-source.h.html
+%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-temporal.h.html
+%%PORTDOCS%%%%DOCSDIR%%/gegl-operation.h.html
+%%PORTDOCS%%%%DOCSDIR%%/gegl-plugin.h.html
+%%PORTDOCS%%%%DOCSDIR%%/gegl.css
+%%PORTDOCS%%%%DOCSDIR%%/gegl.devhelp
+%%PORTDOCS%%%%DOCSDIR%%/gegl.h.html
+%%PORTDOCS%%%%DOCSDIR%%/index.html
+%%PORTDOCS%%%%DOCSDIR%%/operations.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/data/surfer.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/2geglbuffer.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/csugar.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/float-lookup.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gegl-convert.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gegl-slicer.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/geglbuffer-add-image.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/geglbuffer-clock.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hello-world-video.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hello-world.c
+share/locale/es/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/fr/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/pl/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/ru/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/sl/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+@dirrm include/gegl-%%GEGL_VER%%/operation
+@dirrm include/gegl-%%GEGL_VER%%/opencl
+@dirrm include/gegl-%%GEGL_VER%%
+@dirrm lib/gegl-%%GEGL_VER%%
+%%PORTDOCS%%@dirrm share/gtk-doc/html/gegl
+%%PORTDOCS%%@dirrmtry share/gtk-doc/html
+%%PORTDOCS%%@dirrmtry share/gtk-doc
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/gallery
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/data
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%