svn commit: r382274 - in head/graphics: . gegl3 gegl3/files

Koop Mast kwm at FreeBSD.org
Wed Mar 25 22:54:07 UTC 2015


Author: kwm
Date: Wed Mar 25 22:54:04 2015
New Revision: 382274
URL: https://svnweb.freebsd.org/changeset/ports/382274
QAT: https://qat.redports.org/buildarchive/r382274/

Log:
  Add gegl3, git snapshot of what will be gegl 0.3.0 when it is released.
  
  Disable docs for now, will be enabled when 0.3.0 is released.
  Convert to option helpers, mention why the UMFPACK support doesn't work.
  Make parallel installable with gegl 0.2 by renaming the installed executable
    and example dirs.

Added:
  head/graphics/gegl3/
     - copied from r381217, head/graphics/gegl/
Deleted:
  head/graphics/gegl3/files/
Modified:
  head/graphics/Makefile
  head/graphics/gegl3/Makefile
  head/graphics/gegl3/distinfo
  head/graphics/gegl3/pkg-descr
  head/graphics/gegl3/pkg-plist

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Wed Mar 25 22:36:44 2015	(r382273)
+++ head/graphics/Makefile	Wed Mar 25 22:54:04 2015	(r382274)
@@ -214,6 +214,7 @@
     SUBDIR += gdtclft
     SUBDIR += geeqie
     SUBDIR += gegl
+    SUBDIR += gegl3
     SUBDIR += generic_image_decoder
     SUBDIR += geoapi
     SUBDIR += geomorph

Modified: head/graphics/gegl3/Makefile
==============================================================================
--- head/graphics/gegl/Makefile	Fri Mar 13 15:38:16 2015	(r381217)
+++ head/graphics/gegl3/Makefile	Wed Mar 25 22:54:04 2015	(r382274)
@@ -2,206 +2,136 @@
 # $FreeBSD$
 
 PORTNAME=	gegl
-PORTVERSION=	0.2.0
-PORTREVISION=	14
+PORTVERSION=	0.3.0.a1
 CATEGORIES=	graphics
-MASTER_SITES=	GIMP
+#MASTER_SITES=	GIMP
+MASTER_SITES=	LOCAL/kwm
+PKGNAMESUFFIX=	3
+WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION:S/.a1//}
 
 MAINTAINER=	gnome at FreeBSD.org
-COMMENT=	Graph based image processing framework
+COMMENT=	Graph based image processing framework (0.3.0 snapshot)
 
-LIB_DEPENDS=	libbabl-0.1.so:${PORTSDIR}/x11/babl
-
-OPTIONS_DEFINE=	CAIRO ENSCRIPT EXIV2 FFMPEG PIXBUF GRAPHVIZ JASPER JPEG \
-		LUA OPENEXR OPENRAW SIMD PANGO PNG LIBRSVG2 SDL SPIRO V4L \
-		DOCS EXAMPLES
-OPTIONS_DEFAULT=CAIRO ENSCRIPT EXIV2 PIXBUF GRAPHVIZ JASPER JPEG LUA \
-		OPENEXR OPENRAW PANGO PNG LIBRSVG2 SDL SPIRO V4L
-
-ENSCRIPT_DESC=	Enscript support
-SPIRO_DESC=	Spiro support
-#UMFPACK_DESC=	UMFpack support
+LIB_DEPENDS=	libbabl-0.1.so:${PORTSDIR}/x11/babl \
+		libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib
 
 USES=		gettext gmake libtool pathfix pkgconfig shebangfix tar:bzip2
-USE_GNOME=	glib20 intltool
-USE_LDCONFIG=	${PREFIX}/lib/gegl-0.2
+USE_GNOME=	glib20 intltool introspection:build
+USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ENV=	ac_cv_header_execinfo_h=no
 CONFIGURE_ARGS=	--without-vala --disable-docs
 INSTALL_TARGET=	install-strip
 
 CPPFLAGS+=	-I${LOCALBASE}/include
-LDFLAGS+=	-L${LOCALBASE}/lib -lintl
+LDFLAGS+=	-L${LOCALBASE}/lib
 
-GEGL_MINOR=	199
-GEGL_VER=	0.2
+GEGL_MINOR=	299
+GEGL_VER=	0.3
 PLIST_SUB+=	GEGL_MINOR="${GEGL_MINOR}" GEGL_VER=${GEGL_VER}
 
-EXAMPLES=	2geglbuffer csugar float-lookup \
+EXAMPLES=	2geglbuffer \
 		gegl-convert gegl-slicer geglbuffer-add-image \
-		geglbuffer-clock hello-world-video hello-world
+		geglbuffer-clock hello-world sdl-draw
 
 SHEBANG_FILES=	tools/xml_insert.sh
 
-.include <bsd.port.options.mk>
+OPTIONS_SUB=	yes
+OPTIONS_DEFINE=	CAIRO ENSCRIPT EXIV2 FFMPEG PIXBUF GRAPHVIZ JASPER JPEG \
+		LUA OPENEXR OPENRAW SIMD PANGO PNG LIBRSVG2 SDL SPIRO V4L \
+		EXAMPLES LCMS2 WEBP
+#		DOCS EXAMPLES
+OPTIONS_DEFAULT=CAIRO ENSCRIPT EXIV2 PIXBUF GRAPHVIZ JASPER JPEG LCMS2 LUA \
+		OPENEXR OPENRAW PANGO PNG LIBRSVG2 SDL SPIRO V4L WEBP
 
-.if ${PORT_OPTIONS:MPIXBUF}
-USE_GNOME+=	gdkpixbuf2
-PLIST_SUB+=	GDK=""
-.else
-CONFIGURE_ARGS+=--without-gdk-pixbuf
-PLIST_SUB+=	GDK="@comment "
-.endif
+ENSCRIPT_DESC=	Enscript support
+SPIRO_DESC=	Spiro support
+#UMFPACK_DESC=	UMFpack support
 
-.if ${PORT_OPTIONS:MCAIRO}
-LIB_DEPENDS+=	libcairo.so:${PORTSDIR}/graphics/cairo
-PLIST_SUB+=	CAIRO=""
-.else
-CONFIGURE_ARGS+=--without-cairo
-PLIST_SUB+=	CAIRO="@comment "
-.endif
+PIXBUF_USE=	GNOME=gdkpixbuf2
+PIXBUF_CONFIGURE_WITH=	gdk-pixbuf
 
-.if ${PORT_OPTIONS:MPANGO}
-USE_GNOME+=	pango
-PLIST_SUB+=	PANGO=""
-.else
-CONFIGURE_ARGS+=--without-pango
-PLIST_SUB+=	PANGO="@comment "
-.endif
+CAIRO_USE=	GNOME=cairo
+CAIRO_CONFIGURE_WITH=	cairo
 
-.if ${PORT_OPTIONS:MPANGO} && ${PORT_OPTIONS:MCAIRO}
-PLIST_SUB+=	PANGOCAIRO=""
-.else
-CONFIGURE_ARGS+=--without-pangocairo
-PLIST_SUB+=	PANGOCAIRO="@comment "
-.endif
+PANGO_USE=	GNOME=pango
+PANGO_CONFIGURE_WITH=	pango
 
-.if ${PORT_OPTIONS:MENSCRIPT}
-BUILD_DEPENDS+=	enscript:${PORTSDIR}/print/enscript-a4
-.endif
+MENSCRIPT_BUILD_DEPENDS=	enscript:${PORTSDIR}/print/enscript-a4
 
-.if ${PORT_OPTIONS:MFFMPEG}
-LIB_DEPENDS+=	libavformat.so:${PORTSDIR}/multimedia/ffmpeg
-PLIST_SUB+=	FFMPEG=""
-.else
-CONFIGURE_ARGS+=--without-libavformat
-PLIST_SUB+=	FFMPEG="@comment "
-.endif
+FFMPEG_LIB_DEPENDS=	libavformat.so:${PORTSDIR}/multimedia/ffmpeg
+FFMPEG_CONFIGURE_WITH=	libavformat
 
-.if ${PORT_OPTIONS:MGRAPHVIZ}
-LIB_DEPENDS+=	libcgraph.so:${PORTSDIR}/graphics/graphviz
-.else
-CONFIGURE_ARGS+=--without-graphviz
-.endif
+GRAPHVIZ_LIB_DEPENDS=	libcgraph.so:${PORTSDIR}/graphics/graphviz
+GRAPHVIZ_CONFIGURE_WITH=	graphviz
 
-.if ${PORT_OPTIONS:MJASPER}
-LIB_DEPENDS+=	libjasper.so:${PORTSDIR}/graphics/jasper
-PLIST_SUB+=	JP2=""
-.else
-CONFIGURE_ARGS+=--without-jasper
-PLIST_SUB+=	JP2="@comment "
-.endif
+JASPER_LIB_DEPENDS=	libjasper.so:${PORTSDIR}/graphics/jasper
+JASPER_CONFIGURE_WITH=	jasper
 
-.if ${PORT_OPTIONS:MJPEG}
-LIB_DEPENDS+=	libjpeg.so:${PORTSDIR}/graphics/jpeg
-PLIST_SUB+=	JPEG=""
-.else
-CONFIGURE_ARGS+=--without-libjpeg
-PLIST_SUB+=	JPEG="@comment "
-.endif
+JPEG_LIB_DEPENDS=	libjpeg.so:${PORTSDIR}/graphics/jpeg
+JPEG_CONFIGURE_WITH=	libjpeg
 
-.if ${PORT_OPTIONS:MLUA}
-USES+=		lua
-.else
-CONFIGURE_ARGS+=--without-lua
-.endif
+LCMS2_LIB_DEPENDS=	liblcms2.so:${PORTSDIR}/graphics/lcms2
+LCMS2_CONFIGURE_WITH=	lcms
 
-.if ${PORT_OPTIONS:MOPENEXR}
-LIB_DEPENDS+=	libIlmImf.so:${PORTSDIR}/graphics/OpenEXR
-PLIST_SUB+=	OPENEXR=""
-.else
-CONFIGURE_ARGS+=--without-openexr
-PLIST_SUB+=	OPENEXR="@comment "
-.endif
+LUA_USES=		lua
+LUA_CONFIGURE_WITH=	lua
 
-.if ${PORT_OPTIONS:MOPENRAW}
-LIB_DEPENDS+=	libopenraw.so:${PORTSDIR}/graphics/libopenraw
-PLIST_SUB+=	OPENRAW=""
-.else
-CONFIGURE_ARGS+=--without-libopenraw
-PLIST_SUB+=	OPENRAW="@comment "
-.endif
+OPENEXR_LIB_DEPENDS=	libIlmImf.so:${PORTSDIR}/graphics/OpenEXR
+OPENEXR_CONFIGURE_WITH=	openexr
 
-.if ${PORT_OPTIONS:MSIMD}
-CONFIGURE_ARGS+=--disable-mmx \
-		--disable-sse
-.endif
+OPENRAW_LIB_DEPENDS=	libopenraw.so:${PORTSDIR}/graphics/libopenraw
+OPENRAW_CONFIGURE_WITH=	libopenraw
 
-.if ${PORT_OPTIONS:MPNG}
-LIB_DEPENDS+=	libpng.so:${PORTSDIR}/graphics/png
-PLIST_SUB+=	PNG=""
-.else
-CONFIGURE_ARGS+=--without-libpng
-PLIST_SUB+=	PNG="@comment "
-.endif
+SIMD_CONFIGURE_DISABLE=	mmx sse
 
-.if ${PORT_OPTIONS:MLIBRSVG2}
-LIB_DEPENDS+=	librsvg-2.so:${PORTSDIR}/graphics/librsvg2
-PLIST_SUB+=	RSVG=""
-.else
-CONFIGURE_ARGS+=--without-librsvg
-PLIST_SUB+=	RSVG="@comment "
-.endif
+PNG_LIB_DEPENDS=	libpng.so:${PORTSDIR}/graphics/png
+PNG_CONFIGURE_WITH=	libpng
 
-.if ${PORT_OPTIONS:MSDL}
-USE_SDL=	sdl
-PLIST_SUB+=	SDL=""
-.else
-CONFIGURE_ARGS+=--without-sdl
-PLIST_SUB+=	SDL="@comment "
-.endif
+LIBRSVG2_USE=		GNOME=librsvg2
+LIBRSVG2_CONFIGURE_WITH=	librsvg
 
-.if ${PORT_OPTIONS:MSPIRO}
-LIB_DEPENDS+=	libspiro.so:${PORTSDIR}/graphics/libspiro
-.else
-CONFIGURE_ARGS+=--without-libspiro
-.endif
+SDL_USE=		SDL=sdl
+SDL_CONFIGURE_WITH=	sdl
 
-.if ${PORT_OPTIONS:MV4L}
-BUILD_DEPENDS+=	${LOCALBASE}/include/linux/videodev.h:${PORTSDIR}/multimedia/v4l_compat
-PLIST_SUB+=	V4L=""
-.else
-CONFIGURE_ARGS+=--without-libv4l
-PLIST_SUB+=	V4L="@comment "
-.endif
+SPIRO_LIB_DEPENDS=	libspiro.so:${PORTSDIR}/graphics/libspiro
+SPIRO_CONFIGURE_WITH=	libspiro
 
-# umfpack library is broken
-#.if ${PORT_OPTIONS:MUMFPACK}
-#LIB_DEPENDS+=	umfpack:${PORTSDIR}/math/suitesparse
-#PLIST_SUB+=	UMFPACK=""
-#.else
-CONFIGURE_ARGS+=--without-umfpack
-PLIST_SUB+=	UMFPACK="@comment "
-#.endif
+V4L_BUILD_DEPENDS=	v4l_compat>=0:${PORTSDIR}/multimedia/v4l_compat
+V4L_LIB_DEPENDS=	libv4l2.so:${PORTSDIR}/multimedia/libv4l
+V4L_CONFIGURE_WITH=	libv4l
 
-.if ${PORT_OPTIONS:MEXIV2}
-LIB_DEPENDS+=	libexiv2.so:${PORTSDIR}/graphics/exiv2
-PLIST_SUB+=	EXIV2=""
-.else
-CONFIGURE_ARGS+=--without-exiv2
-PLIST_SUB+=	EXIV2="@comment "
-.endif
+WEBP_LIB_DEPENDS=	libwebp.so:${PORTSDIR}/graphics/webp
+WEBP_CONFIGURE_WITH=	webp
+
+# UMFPACK has two "problems"
+# 1) it build with port gcc 2) needed libs aren't recorded in the libraries.
+#UMFPACK_LIB_DEPENDS=	libumfpack.so:${PORTSDIR}/math/suitesparse
+#UMFPACK_CONFIGURE_WITH=	umfpack
+CONFIGURE_ARGS+=	--without-umfpack
+
+EXIV2_LIB_DEPENDS=	libexiv2.so:${PORTSDIR}/graphics/exiv2
+EXIV2_CONFIGURE_WITH=	exiv2
 
-.if ${PORT_OPTIONS:MDOCS}
-BUILD_DEPENDS+=	a2x:${PORTSDIR}/textproc/asciidoc \
-		${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash \
-		vimdot:${PORTSDIR}/graphics/graphviz
-USE_RUBY=	yes
-RUBY_NO_RUN_DEPENDS=yes
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MPANGO} && ${PORT_OPTIONS:MCAIRO}
+PLIST_SUB+=	PANGOCAIRO=""
 .else
-CONFIGURE_ARGS+=--disable-docs
+CONFIGURE_ARGS+=--without-pangocairo
+PLIST_SUB+=	PANGOCAIRO="@comment "
 .endif
 
+#.if ${PORT_OPTIONS:MDOCS}
+#BUILD_DEPENDS+=	a2x:${PORTSDIR}/textproc/asciidoc \
+#		${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash \
+#		vimdot:${PORTSDIR}/graphics/graphviz
+#USE_RUBY=	yes
+#RUBY_NO_RUN_DEPENDS=yes
+#.else
+#CONFIGURE_ARGS+=--disable-docs
+#.endif
+
 post-patch:
 	${REINPLACE_CMD} "s/lua >/lua-${LUA_VER} >/g" ${WRKSRC}/configure
 .if ! ${PORT_OPTIONS:MDOCS}
@@ -211,30 +141,29 @@ post-patch:
 	${REINPLACE_CMD} -e 's|\(lua\)\(5\.1\)|\1-\2|g ; s|x86_64|amd64|g' \
 		${WRKSRC}/configure
 
-.if ${PORT_OPTIONS:MDOCS}
-pre-configure:
-.if !exists(${LOCALBASE}/bin/vimdot)
-	@${ECHO_CMD} "${PKGNAME}: Needs graphics/graphviz with PANGOCAIRO support enabled."
-	@${FALSE}
-.endif
-.endif
+#.if ${PORT_OPTIONS:MDOCS}
+#pre-configure:
+#.if !exists(${LOCALBASE}/bin/vimdot)
+#	@${ECHO_CMD} "${PKGNAME}: Needs graphics/graphviz with PANGOCAIRO support enabled."
+#	@${FALSE}
+#.endif
+#.endif
 
-post-build:
-.if ${PORT_OPTIONS:MDOCS}
-	cd ${WRKSRC}/docs && ${MAKE_CMD} index.html
-	cd ${WRKSRC}/docs/gallery && ${MAKE_CMD} index.html
-.endif
+#post-build:
+#.if ${PORT_OPTIONS:MDOCS}
+#	cd ${WRKSRC}/docs && ${MAKE_CMD} index.html
+#.endif
 
 post-install:
-.if ${PORT_OPTIONS:MDOCS}
-	${MKDIR} ${STAGEDIR}${DOCSDIR}/gallery
-	(cd ${WRKSRC}/docs && \
-	    ${COPYTREE_SHARE} \*.html ${STAGEDIR}${DOCSDIR} && \
-	    ${INSTALL_DATA} ChangeLog gegl.css gegl.devhelp devhelp.css ${STAGEDIR}${DOCSDIR} && \
-	    ${INSTALL_DATA} gallery/OpenRaster* ${STAGEDIR}${DOCSDIR}/gallery && \
-	    ${INSTALL_DATA} gallery/clones* ${STAGEDIR}${DOCSDIR}/gallery && \
-	    ${INSTALL_DATA} gallery/index.html ${STAGEDIR}${DOCSDIR}/gallery )
-.endif
+#.if ${PORT_OPTIONS:MDOCS}
+#	${MKDIR} ${STAGEDIR}${DOCSDIR}/gallery
+#	(cd ${WRKSRC}/docs && \
+#	    ${COPYTREE_SHARE} \*.html ${STAGEDIR}${DOCSDIR} && \
+#	    ${INSTALL_DATA} ChangeLog gegl.css gegl.devhelp devhelp.css ${STAGEDIR}${DOCSDIR} && \
+#	    ${INSTALL_DATA} gallery/OpenRaster* ${STAGEDIR}${DOCSDIR}/gallery && \
+#	    ${INSTALL_DATA} gallery/clones* ${STAGEDIR}${DOCSDIR}/gallery && \
+#	    ${INSTALL_DATA} gallery/index.html ${STAGEDIR}${DOCSDIR}/gallery )
+#.endif
 .if ${PORT_OPTIONS:MEXAMPLES}
 	${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/data
 	${INSTALL_DATA} ${WRKSRC}/examples/data/surfer.png ${STAGEDIR}${EXAMPLESDIR}/data
@@ -242,6 +171,8 @@ post-install:
 	${INSTALL_DATA} ${WRKSRC}/examples/${ex}.c ${STAGEDIR}${EXAMPLESDIR}
 .endfor
 .endif
-	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gegl-0.2/*.so
-
+# temporary hacks to allow parallel install
+	@${MV} ${STAGEDIR}${PREFIX}/bin/gegl ${STAGEDIR}${PREFIX}/bin/gegl3
+	@${MV} ${STAGEDIR}${PREFIX}/share/examples/gegl \
+		${STAGEDIR}${PREFIX}/share/examples/gegl3
 .include <bsd.port.mk>

Modified: head/graphics/gegl3/distinfo
==============================================================================
--- head/graphics/gegl/distinfo	Fri Mar 13 15:38:16 2015	(r381217)
+++ head/graphics/gegl3/distinfo	Wed Mar 25 22:54:04 2015	(r382274)
@@ -1,2 +1,2 @@
-SHA256 (gegl-0.2.0.tar.bz2) = df2e6a0d9499afcbc4f9029c18d9d1e0dd5e8710a75e17c9b1d9a6480dd8d426
-SIZE (gegl-0.2.0.tar.bz2) = 7502040
+SHA256 (gegl-0.3.0.a1.tar.bz2) = 75e278e496a37b781f9d63a08ccb50aceb317d986d3015259ed51ab5b82fab3f
+SIZE (gegl-0.3.0.a1.tar.bz2) = 38371008

Modified: head/graphics/gegl3/pkg-descr
==============================================================================
--- head/graphics/gegl/pkg-descr	Fri Mar 13 15:38:16 2015	(r381217)
+++ head/graphics/gegl3/pkg-descr	Wed Mar 25 22:54:04 2015	(r382274)
@@ -6,4 +6,6 @@ non destructive image editing on larger 
 Through babl it provides support for a wide range of color
 models and pixel storage formats for input and output.
 
+This port is a development snapshot until gegl 0.3.0 is released.
+
 WWW: http://gegl.org/

Modified: head/graphics/gegl3/pkg-plist
==============================================================================
--- head/graphics/gegl/pkg-plist	Fri Mar 13 15:38:16 2015	(r381217)
+++ head/graphics/gegl3/pkg-plist	Wed Mar 25 22:54:04 2015	(r382274)
@@ -1,23 +1,52 @@
-bin/gegl
+%%PORTEXAMPLES%%bin/2geglbuffer
+bin/gegl3
+%%PORTEXAMPLES%%bin/gegl-convert
+bin/gegl-imgcmp
+%%PORTEXAMPLES%%bin/gegl-slicer
+bin/gegl-tester
+%%PORTEXAMPLES%%bin/geglbuffer-add-image
+%%PORTEXAMPLES%%bin/geglbuffer-clock
+%%PORTEXAMPLES%%bin/hello-world
+%%SDL%%bin/sdl-draw
+include/gegl-%%GEGL_VER%%/gegl-apply.h
 include/gegl-%%GEGL_VER%%/gegl-buffer-backend.h
+include/gegl-%%GEGL_VER%%/gegl-buffer-cl-iterator.h
 include/gegl-%%GEGL_VER%%/gegl-buffer-iterator.h
 include/gegl-%%GEGL_VER%%/gegl-buffer.h
+include/gegl-%%GEGL_VER%%/gegl-c.h
 include/gegl-%%GEGL_VER%%/gegl-chant.h
 include/gegl-%%GEGL_VER%%/gegl-color.h
+include/gegl-%%GEGL_VER%%/gegl-cpuaccel.h
 include/gegl-%%GEGL_VER%%/gegl-curve.h
 include/gegl-%%GEGL_VER%%/gegl-enums.h
+include/gegl-%%GEGL_VER%%/gegl-graph-debug.h
+include/gegl-%%GEGL_VER%%/gegl-init.h
 include/gegl-%%GEGL_VER%%/gegl-lookup.h
 include/gegl-%%GEGL_VER%%/gegl-matrix.h
+include/gegl-%%GEGL_VER%%/gegl-node.h
+include/gegl-%%GEGL_VER%%/gegl-op.h
+include/gegl-%%GEGL_VER%%/gegl-operations-util.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-processor.h
+include/gegl-%%GEGL_VER%%/gegl-random.h
 include/gegl-%%GEGL_VER%%/gegl-tile-backend.h
+include/gegl-%%GEGL_VER%%/gegl-tile-handler.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%%/npd/deformation.h
+include/gegl-%%GEGL_VER%%/npd/graphics.h
+include/gegl-%%GEGL_VER%%/npd/lattice_cut.h
+include/gegl-%%GEGL_VER%%/npd/npd.h
+include/gegl-%%GEGL_VER%%/npd/npd_common.h
+include/gegl-%%GEGL_VER%%/npd/npd_debug.h
+include/gegl-%%GEGL_VER%%/npd/npd_gegl.h
+include/gegl-%%GEGL_VER%%/npd/npd_math.h
 include/gegl-%%GEGL_VER%%/opencl/cl.h
 include/gegl-%%GEGL_VER%%/opencl/cl_d3d10.h
 include/gegl-%%GEGL_VER%%/opencl/cl_ext.h
@@ -26,59 +55,72 @@ include/gegl-%%GEGL_VER%%/opencl/cl_gl_e
 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-random.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-extension-handler.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-context.h
 include/gegl-%%GEGL_VER%%/operation/gegl-operation-filter.h
+include/gegl-%%GEGL_VER%%/operation/gegl-operation-meta-json.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-property-keys.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.so
-%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-stroke.so
-%%CAIRO%%lib/gegl-%%GEGL_VER%%/path.so
-%%FFMPEG%%lib/gegl-%%GEGL_VER%%/ff-load.so
-%%JPEG%%lib/gegl-%%GEGL_VER%%/jpg-load.so
-%%JPEG%%lib/gegl-%%GEGL_VER%%/jpg-save.so
-%%OPENEXR%%lib/gegl-%%GEGL_VER%%/exr-load.so
-%%OPENEXR%%lib/gegl-%%GEGL_VER%%/exr-save.so
-%%OPENRAW%%lib/gegl-%%GEGL_VER%%/openraw.so
-%%PANGOCAIRO%%lib/gegl-%%GEGL_VER%%/text.so
-%%PNG%%lib/gegl-%%GEGL_VER%%/png-load.so
-%%PNG%%lib/gegl-%%GEGL_VER%%/png-save.so
-%%RSVG%%lib/gegl-%%GEGL_VER%%/svg-load.so
-%%SDL%%lib/gegl-%%GEGL_VER%%/sdl-display.so
-%%V4L%%lib/gegl-%%GEGL_VER%%/v4l.so
+include/gegl-%%GEGL_VER%%/sc/sc-common.h
+include/gegl-%%GEGL_VER%%/sc/sc-context.h
+include/gegl-%%GEGL_VER%%/sc/sc-outline.h
+include/gegl-%%GEGL_VER%%/sc/sc-sample.h
 lib/gegl-%%GEGL_VER%%/add.so
+lib/gegl-%%GEGL_VER%%/alien-map.so
+lib/gegl-%%GEGL_VER%%/antialias.so
+lib/gegl-%%GEGL_VER%%/apply-lens.so
+lib/gegl-%%GEGL_VER%%/bilateral-filter-fast.so
 lib/gegl-%%GEGL_VER%%/bilateral-filter.so
 lib/gegl-%%GEGL_VER%%/box-blur.so
 lib/gegl-%%GEGL_VER%%/brightness-contrast.so
 lib/gegl-%%GEGL_VER%%/buffer-sink.so
 lib/gegl-%%GEGL_VER%%/buffer-source.so
+lib/gegl-%%GEGL_VER%%/bump-map.so
 lib/gegl-%%GEGL_VER%%/c2g.so
+lib/gegl-%%GEGL_VER%%/cache.so
+lib/gegl-%%GEGL_VER%%/cartoon.so
+lib/gegl-%%GEGL_VER%%/cast-format.so
+lib/gegl-%%GEGL_VER%%/channel-mixer.so
 lib/gegl-%%GEGL_VER%%/checkerboard.so
 lib/gegl-%%GEGL_VER%%/clear.so
 lib/gegl-%%GEGL_VER%%/clone.so
 lib/gegl-%%GEGL_VER%%/color-burn.so
 lib/gegl-%%GEGL_VER%%/color-dodge.so
+lib/gegl-%%GEGL_VER%%/color-enhance.so
+lib/gegl-%%GEGL_VER%%/color-exchange.so
+lib/gegl-%%GEGL_VER%%/color-reduction.so
+lib/gegl-%%GEGL_VER%%/color-rotate.so
 lib/gegl-%%GEGL_VER%%/color-temperature.so
 lib/gegl-%%GEGL_VER%%/color-to-alpha.so
 lib/gegl-%%GEGL_VER%%/color.so
 lib/gegl-%%GEGL_VER%%/contrast-curve.so
 lib/gegl-%%GEGL_VER%%/convert-format.so
+lib/gegl-%%GEGL_VER%%/convolution-matrix.so
+lib/gegl-%%GEGL_VER%%/copy-buffer.so
 lib/gegl-%%GEGL_VER%%/crop.so
+lib/gegl-%%GEGL_VER%%/cubism.so
 lib/gegl-%%GEGL_VER%%/darken.so
+lib/gegl-%%GEGL_VER%%/deinterlace.so
 lib/gegl-%%GEGL_VER%%/difference-of-gaussians.so
 lib/gegl-%%GEGL_VER%%/difference.so
+lib/gegl-%%GEGL_VER%%/diffraction-patterns.so
 lib/gegl-%%GEGL_VER%%/display.so
+lib/gegl-%%GEGL_VER%%/distance-transform.so
 lib/gegl-%%GEGL_VER%%/divide.so
 lib/gegl-%%GEGL_VER%%/dropshadow.so
 lib/gegl-%%GEGL_VER%%/dst-atop.so
@@ -88,24 +130,43 @@ lib/gegl-%%GEGL_VER%%/dst-over.so
 lib/gegl-%%GEGL_VER%%/dst.so
 lib/gegl-%%GEGL_VER%%/edge-laplace.so
 lib/gegl-%%GEGL_VER%%/edge-sobel.so
+lib/gegl-%%GEGL_VER%%/edge.so
+lib/gegl-%%GEGL_VER%%/emboss.so
+lib/gegl-%%GEGL_VER%%/engrave.so
 lib/gegl-%%GEGL_VER%%/exclusion.so
 lib/gegl-%%GEGL_VER%%/exp-combine.so
+lib/gegl-%%GEGL_VER%%/exposure.so
+%%OPENEXR%%lib/gegl-%%GEGL_VER%%/exr-load.so
+%%OPENEXR%%lib/gegl-%%GEGL_VER%%/exr-save.so
 lib/gegl-%%GEGL_VER%%/fattal02.so
+%%FFMPEG%%lib/gegl-%%GEGL_VER%%/ff-load.so
 lib/gegl-%%GEGL_VER%%/fractal-explorer.so
+lib/gegl-%%GEGL_VER%%/fractal-trace.so
 lib/gegl-%%GEGL_VER%%/gamma.so
 lib/gegl-%%GEGL_VER%%/gaussian-blur.so
 lib/gegl-%%GEGL_VER%%/gegl-buffer-load-op.so
 lib/gegl-%%GEGL_VER%%/gegl-buffer-save-op.so
 lib/gegl-%%GEGL_VER%%/grey.so
+lib/gegl-%%GEGL_VER%%/grey2.json
 lib/gegl-%%GEGL_VER%%/grid.so
 lib/gegl-%%GEGL_VER%%/hard-light.so
+lib/gegl-%%GEGL_VER%%/high-pass.so
+lib/gegl-%%GEGL_VER%%/illusion.so
+lib/gegl-%%GEGL_VER%%/image-compare.so
 lib/gegl-%%GEGL_VER%%/introspect.so
-lib/gegl-%%GEGL_VER%%/invert.so
-%%JP2%%lib/gegl-%%GEGL_VER%%/jp2-load.so
+lib/gegl-%%GEGL_VER%%/invert-gamma.so
+lib/gegl-%%GEGL_VER%%/invert-linear.so
+%%JASPER%%lib/gegl-%%GEGL_VER%%/jp2-load.so
+%%JPEG%%lib/gegl-%%GEGL_VER%%/jpg-load.so
+%%JPEG%%lib/gegl-%%GEGL_VER%%/jpg-save.so
+lib/gegl-%%GEGL_VER%%/json.so
 lib/gegl-%%GEGL_VER%%/layer.so
+%%LCMS2%%lib/gegl-%%GEGL_VER%%/lcms-from-profile.so
 lib/gegl-%%GEGL_VER%%/lens-distortion.so
+lib/gegl-%%GEGL_VER%%/lens-flare.so
 lib/gegl-%%GEGL_VER%%/levels.so
 lib/gegl-%%GEGL_VER%%/lighten.so
+lib/gegl-%%GEGL_VER%%/linear-gradient.so
 lib/gegl-%%GEGL_VER%%/load.so
 lib/gegl-%%GEGL_VER%%/magick-load.so
 lib/gegl-%%GEGL_VER%%/mantiuk06.so
@@ -115,106 +176,138 @@ lib/gegl-%%GEGL_VER%%/matting-global.so
 lib/gegl-%%GEGL_VER%%/mblur.so
 lib/gegl-%%GEGL_VER%%/mirrors.so
 lib/gegl-%%GEGL_VER%%/mono-mixer.so
-lib/gegl-%%GEGL_VER%%/motion-blur.so
+lib/gegl-%%GEGL_VER%%/mosaic.so
+lib/gegl-%%GEGL_VER%%/motion-blur-circular.so
+lib/gegl-%%GEGL_VER%%/motion-blur-linear.so
+lib/gegl-%%GEGL_VER%%/motion-blur-zoom.so
 lib/gegl-%%GEGL_VER%%/multiply.so
+lib/gegl-%%GEGL_VER%%/noise-cell.so
+lib/gegl-%%GEGL_VER%%/noise-cie-lch.so
+lib/gegl-%%GEGL_VER%%/noise-hsv.so
+lib/gegl-%%GEGL_VER%%/noise-hurl.so
+lib/gegl-%%GEGL_VER%%/noise-perlin.so
+lib/gegl-%%GEGL_VER%%/noise-pick.so
 lib/gegl-%%GEGL_VER%%/noise-reduction.so
-lib/gegl-%%GEGL_VER%%/noise.so
+lib/gegl-%%GEGL_VER%%/noise-rgb.so
+lib/gegl-%%GEGL_VER%%/noise-simplex.so
+lib/gegl-%%GEGL_VER%%/noise-slur.so
+lib/gegl-%%GEGL_VER%%/noise-solid.so
+lib/gegl-%%GEGL_VER%%/noise-spread.so
 lib/gegl-%%GEGL_VER%%/nop.so
+%%CAIRO%%lib/gegl-%%GEGL_VER%%/npd.so
+lib/gegl-%%GEGL_VER%%/npy-save.so
+lib/gegl-%%GEGL_VER%%/oilify.so
 lib/gegl-%%GEGL_VER%%/opacity.so
 lib/gegl-%%GEGL_VER%%/open-buffer.so
+%%OPENRAW%%lib/gegl-%%GEGL_VER%%/openraw.so
 lib/gegl-%%GEGL_VER%%/over.so
 lib/gegl-%%GEGL_VER%%/overlay.so
-%%GDK%%lib/gegl-%%GEGL_VER%%/pixbuf.so
+lib/gegl-%%GEGL_VER%%/panorama-projection.so
+%%CAIRO%%lib/gegl-%%GEGL_VER%%/path.so
+lib/gegl-%%GEGL_VER%%/photocopy.so
+%%PIXBUF%%lib/gegl-%%GEGL_VER%%/pixbuf.so
 lib/gegl-%%GEGL_VER%%/pixelize.so
+lib/gegl-%%GEGL_VER%%/plasma.so
 lib/gegl-%%GEGL_VER%%/plus.so
+%%PNG%%lib/gegl-%%GEGL_VER%%/png-load.so
+%%PNG%%lib/gegl-%%GEGL_VER%%/png-save.so
 lib/gegl-%%GEGL_VER%%/polar-coordinates.so
 lib/gegl-%%GEGL_VER%%/posterize.so
 lib/gegl-%%GEGL_VER%%/ppm-load.so
 lib/gegl-%%GEGL_VER%%/ppm-save.so
+lib/gegl-%%GEGL_VER%%/radial-gradient.so
 lib/gegl-%%GEGL_VER%%/raw-load.so
 lib/gegl-%%GEGL_VER%%/rectangle.so
+lib/gegl-%%GEGL_VER%%/red-eye-removal.so
 lib/gegl-%%GEGL_VER%%/reinhard05.so
 lib/gegl-%%GEGL_VER%%/remap.so
 lib/gegl-%%GEGL_VER%%/rgbe-load.so
 lib/gegl-%%GEGL_VER%%/rgbe-save.so
 lib/gegl-%%GEGL_VER%%/ripple.so
-%%GDK%%lib/gegl-%%GEGL_VER%%/save-pixbuf.so
+%%PIXBUF%%lib/gegl-%%GEGL_VER%%/save-pixbuf.so
 lib/gegl-%%GEGL_VER%%/save.so
 lib/gegl-%%GEGL_VER%%/screen.so
+%%SDL%%lib/gegl-%%GEGL_VER%%/sdl-display.so
+lib/gegl-%%GEGL_VER%%/seamless-clone-compose.so
+lib/gegl-%%GEGL_VER%%/seamless-clone.so
+lib/gegl-%%GEGL_VER%%/shift.so
+lib/gegl-%%GEGL_VER%%/sinus.so
 lib/gegl-%%GEGL_VER%%/snn-mean.so
 lib/gegl-%%GEGL_VER%%/soft-light.so
+lib/gegl-%%GEGL_VER%%/softglow.so
 lib/gegl-%%GEGL_VER%%/src-atop.so
 lib/gegl-%%GEGL_VER%%/src-in.so
 lib/gegl-%%GEGL_VER%%/src-out.so
-lib/gegl-%%GEGL_VER%%/src-over.so
 lib/gegl-%%GEGL_VER%%/src.so
 lib/gegl-%%GEGL_VER%%/stress.so
+lib/gegl-%%GEGL_VER%%/stretch-contrast-hsv.so
 lib/gegl-%%GEGL_VER%%/stretch-contrast.so
 lib/gegl-%%GEGL_VER%%/subtract.so
+lib/gegl-%%GEGL_VER%%/supernova.so
 lib/gegl-%%GEGL_VER%%/svg-huerotate.so
+%%LIBRSVG2%%lib/gegl-%%GEGL_VER%%/svg-load.so
 lib/gegl-%%GEGL_VER%%/svg-luminancetoalpha.so
 lib/gegl-%%GEGL_VER%%/svg-matrix.so
 lib/gegl-%%GEGL_VER%%/svg-multiply.so
 lib/gegl-%%GEGL_VER%%/svg-saturate.so
+%%PANGOCAIRO%%lib/gegl-%%GEGL_VER%%/text.so
+lib/gegl-%%GEGL_VER%%/texturize-canvas.so
 lib/gegl-%%GEGL_VER%%/threshold.so
+lib/gegl-%%GEGL_VER%%/tile-glass.so
+lib/gegl-%%GEGL_VER%%/tile-seamless.so
+lib/gegl-%%GEGL_VER%%/tile.so
 lib/gegl-%%GEGL_VER%%/transformops.so
 lib/gegl-%%GEGL_VER%%/unsharp-mask.so
+%%V4L%%lib/gegl-%%GEGL_VER%%/v4l.so
 lib/gegl-%%GEGL_VER%%/value-invert.so
+lib/gegl-%%GEGL_VER%%/value-propagate.so
+%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-fill.so
+%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-stroke.so
+lib/gegl-%%GEGL_VER%%/video-degradation.so
 lib/gegl-%%GEGL_VER%%/vignette.so
+lib/gegl-%%GEGL_VER%%/warp.so
 lib/gegl-%%GEGL_VER%%/waves.so
+%%WEBP%%lib/gegl-%%GEGL_VER%%/webp-load.so
+%%WEBP%%lib/gegl-%%GEGL_VER%%/webp-save.so
 lib/gegl-%%GEGL_VER%%/weighted-blend.so
+lib/gegl-%%GEGL_VER%%/whirl-pinch.so
+lib/gegl-%%GEGL_VER%%/wind.so
 lib/gegl-%%GEGL_VER%%/write-buffer.so
 lib/gegl-%%GEGL_VER%%/xor.so
+lib/girepository-1.0/Gegl-%%GEGL_VER%%.typelib
 lib/libgegl-%%GEGL_VER%%.so
 lib/libgegl-%%GEGL_VER%%.so.0
-lib/libgegl-%%GEGL_VER%%.so.0.199.1
+lib/libgegl-%%GEGL_VER%%.so.0.%%GEGL_MINOR%%.1
+lib/libgegl-npd-%%GEGL_VER%%.so
+lib/libgegl-sc-%%GEGL_VER%%.so
 libdata/pkgconfig/gegl-%%GEGL_VER%%.pc
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
-%%PORTDOCS%%%%DOCSDIR%%/api.html
-%%PORTDOCS%%%%DOCSDIR%%/brightness-contrast.c.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
+libdata/pkgconfig/gegl-sc-%%GEGL_VER%%.pc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%3/2geglbuffer.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%3/data/surfer.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%3/gegl-convert.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%3/gegl-slicer.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%3/geglbuffer-add-image.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%3/geglbuffer-clock.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%3/hello-world.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%3/sdl-draw.c
+share/gir-1.0/Gegl-%%GEGL_VER%%.gir
+share/locale/ca/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/de/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/el/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/en_GB/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/eo/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
 share/locale/es/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/eu/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
 share/locale/fr/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/gl/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/id/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/it/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/ko/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/lv/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
 share/locale/pl/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/pt_BR/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
 share/locale/ru/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
 share/locale/sl/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/sv/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/tr/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
+share/locale/zh_CN/LC_MESSAGES/gegl-%%GEGL_VER%%.mo


More information about the svn-ports-head mailing list