Index: head/graphics/gegl/Makefile =================================================================== --- head/graphics/gegl/Makefile (revision 297044) +++ head/graphics/gegl/Makefile (revision 297045) @@ -1,211 +1,229 @@ # New ports collection Makefile for: gegl # Date created: 3 October 2008 # Whom: gahr # # $FreeBSD$ # PORTNAME= gegl PORTVERSION= 0.1.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= ftp://ftp.gimp.org/pub/gegl/0.1/ 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 \ + GDK "Enable gdk-pixbuf2 formats support" on \ GRAPHVIZ "Enable Graphviz" on \ + JP2 "Enable JPEG2000 format support" 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_GNOME= glib20 pkgconfig gnomehack USE_BZIP2= yes USE_GMAKE= yes USE_GETTEXT= yes USE_LDCONFIG= ${PREFIX}/lib/gegl-0.1 GNU_CONFIGURE= yes CONFIGURE_ARGS+=--without-vala CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -lexecinfo -lintl GEGL_MINOR= 107 PLIST_SUB+= GEGL_MINOR="${GEGL_MINOR}" EXAMPLES= 2geglbuffer csugar float-lookup \ gegl-convert gegl-slicer geglbuffer-add-image \ geglbuffer-clock hello-world-video hello-world .include +.if !defined(WITHOUT_GDK) +USE_GNOME+= gdkpixbuf2 +PLIST_SUB+= GDK="" +.else +CONFIGURE_ARGS+=--without-gdk-pixbuf +PLIST_SUB+= GDK="@comment " +.endif + .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_JP2) +LIB_DEPENDS+= jasper.4:${PORTSDIR}/graphics/jasper +PLIST_SUB+= JP2="" +.else +CONFIGURE_ARGS+=--without-jasper +PLIST_SUB+= JP2="@comment " .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 Property changes on: head/graphics/gegl/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.32 \ No newline at end of property +1.33 \ No newline at end of property Index: head/graphics/gegl/pkg-plist =================================================================== --- head/graphics/gegl/pkg-plist (revision 297044) +++ head/graphics/gegl/pkg-plist (revision 297045) @@ -1,347 +1,347 @@ bin/gegl include/gegl-0.1/gegl-buffer-backend.h include/gegl-0.1/gegl-buffer-iterator.h include/gegl-0.1/gegl-buffer.h include/gegl-0.1/gegl-chant.h include/gegl-0.1/gegl-color.h include/gegl-0.1/gegl-curve.h include/gegl-0.1/gegl-enums.h include/gegl-0.1/gegl-lookup.h include/gegl-0.1/gegl-matrix.h include/gegl-0.1/gegl-paramspecs.h include/gegl-0.1/gegl-path.h include/gegl-0.1/gegl-plugin.h include/gegl-0.1/gegl-tile-backend.h include/gegl-0.1/gegl-tile-source.h include/gegl-0.1/gegl-tile.h include/gegl-0.1/gegl-types.h include/gegl-0.1/gegl-utils.h include/gegl-0.1/gegl-version.h include/gegl-0.1/gegl.h include/gegl-0.1/operation/gegl-operation-area-filter.h include/gegl-0.1/operation/gegl-operation-composer.h include/gegl-0.1/operation/gegl-operation-composer3.h include/gegl-0.1/operation/gegl-operation-filter.h include/gegl-0.1/operation/gegl-operation-meta.h include/gegl-0.1/operation/gegl-operation-point-composer.h include/gegl-0.1/operation/gegl-operation-point-composer3.h include/gegl-0.1/operation/gegl-operation-point-filter.h include/gegl-0.1/operation/gegl-operation-point-render.h include/gegl-0.1/operation/gegl-operation-sink.h include/gegl-0.1/operation/gegl-operation-source.h include/gegl-0.1/operation/gegl-operation-temporal.h include/gegl-0.1/operation/gegl-operation.h %%CAIRO%%lib/gegl-0.1/vector-fill.la %%CAIRO%%lib/gegl-0.1/vector-fill.so %%CAIRO%%lib/gegl-0.1/vector-stroke.la %%CAIRO%%lib/gegl-0.1/vector-stroke.so %%CAIRO%%lib/gegl-0.1/path.la %%CAIRO%%lib/gegl-0.1/path.so %%FFMPEG%%lib/gegl-0.1/ff-load.la %%FFMPEG%%lib/gegl-0.1/ff-load.so %%JPEG%%lib/gegl-0.1/jpg-load.la %%JPEG%%lib/gegl-0.1/jpg-load.so %%JPEG%%lib/gegl-0.1/jpg-save.la %%JPEG%%lib/gegl-0.1/jpg-save.so %%OPENEXR%%lib/gegl-0.1/exr-load.la %%OPENEXR%%lib/gegl-0.1/exr-load.so %%OPENEXR%%lib/gegl-0.1/exr-save.la %%OPENEXR%%lib/gegl-0.1/exr-save.so %%OPENRAW%%lib/gegl-0.1/openraw.la %%OPENRAW%%lib/gegl-0.1/openraw.so %%PANGOCAIRO%%lib/gegl-0.1/text.la %%PANGOCAIRO%%lib/gegl-0.1/text.so %%PNG%%lib/gegl-0.1/png-load.la %%PNG%%lib/gegl-0.1/png-load.so %%PNG%%lib/gegl-0.1/png-save.la %%PNG%%lib/gegl-0.1/png-save.so %%RSVG%%lib/gegl-0.1/svg-load.la %%RSVG%%lib/gegl-0.1/svg-load.so %%SDL%%lib/gegl-0.1/sdl-display.la %%SDL%%lib/gegl-0.1/sdl-display.so %%V4L%%lib/gegl-0.1/v4l.la %%V4L%%lib/gegl-0.1/v4l.so lib/gegl-0.1/add.la lib/gegl-0.1/add.so lib/gegl-0.1/affine.la lib/gegl-0.1/affine.so lib/gegl-0.1/bilateral-filter.la lib/gegl-0.1/bilateral-filter.so lib/gegl-0.1/box-blur.la lib/gegl-0.1/box-blur.so lib/gegl-0.1/brightness-contrast.la lib/gegl-0.1/brightness-contrast.so lib/gegl-0.1/buffer-sink.la lib/gegl-0.1/buffer-sink.so lib/gegl-0.1/buffer-source.la lib/gegl-0.1/buffer-source.so lib/gegl-0.1/c2g.la lib/gegl-0.1/c2g.so lib/gegl-0.1/checkerboard.la lib/gegl-0.1/checkerboard.so lib/gegl-0.1/clear.la lib/gegl-0.1/clear.so lib/gegl-0.1/clone.la lib/gegl-0.1/clone.so lib/gegl-0.1/color-burn.la lib/gegl-0.1/color-burn.so lib/gegl-0.1/color-dodge.la lib/gegl-0.1/color-dodge.so lib/gegl-0.1/color-temperature.la lib/gegl-0.1/color-temperature.so lib/gegl-0.1/color.la lib/gegl-0.1/color.so lib/gegl-0.1/contrast-curve.la lib/gegl-0.1/contrast-curve.so lib/gegl-0.1/convert-format.la lib/gegl-0.1/convert-format.so lib/gegl-0.1/crop.la lib/gegl-0.1/crop.so lib/gegl-0.1/darken.la lib/gegl-0.1/darken.so lib/gegl-0.1/difference-of-gaussians.la lib/gegl-0.1/difference-of-gaussians.so lib/gegl-0.1/difference.la lib/gegl-0.1/difference.so lib/gegl-0.1/display.la lib/gegl-0.1/display.so lib/gegl-0.1/divide.la lib/gegl-0.1/divide.so lib/gegl-0.1/dropshadow.la lib/gegl-0.1/dropshadow.so lib/gegl-0.1/dst-atop.la lib/gegl-0.1/dst-atop.so lib/gegl-0.1/dst-in.la lib/gegl-0.1/dst-in.so lib/gegl-0.1/dst-out.la lib/gegl-0.1/dst-out.so lib/gegl-0.1/dst-over.la lib/gegl-0.1/dst-over.so lib/gegl-0.1/dst.la lib/gegl-0.1/dst.so lib/gegl-0.1/edge-laplace.la lib/gegl-0.1/edge-laplace.so lib/gegl-0.1/edge-sobel.la lib/gegl-0.1/edge-sobel.so lib/gegl-0.1/exclusion.la lib/gegl-0.1/exclusion.so lib/gegl-0.1/exp-combine.la lib/gegl-0.1/exp-combine.so lib/gegl-0.1/fattal02.la lib/gegl-0.1/fattal02.so lib/gegl-0.1/fractal-explorer.la lib/gegl-0.1/fractal-explorer.so lib/gegl-0.1/gamma.la lib/gegl-0.1/gamma.so lib/gegl-0.1/gaussian-blur.la lib/gegl-0.1/gaussian-blur.so lib/gegl-0.1/gegl-buffer-load-op.la lib/gegl-0.1/gegl-buffer-load-op.so lib/gegl-0.1/gegl-buffer-save-op.la lib/gegl-0.1/gegl-buffer-save-op.so lib/gegl-0.1/grey.la lib/gegl-0.1/grey.so lib/gegl-0.1/grid.la lib/gegl-0.1/grid.so lib/gegl-0.1/hard-light.la lib/gegl-0.1/hard-light.so lib/gegl-0.1/introspect.la lib/gegl-0.1/introspect.so lib/gegl-0.1/invert.la lib/gegl-0.1/invert.so -lib/gegl-0.1/jp2-load.la -lib/gegl-0.1/jp2-load.so +%%JP2%%lib/gegl-0.1/jp2-load.la +%%JP2%%lib/gegl-0.1/jp2-load.so lib/gegl-0.1/layer.la lib/gegl-0.1/layer.so lib/gegl-0.1/levels.la lib/gegl-0.1/levels.so lib/gegl-0.1/lighten.la lib/gegl-0.1/lighten.so lib/gegl-0.1/load.la lib/gegl-0.1/load.so lib/gegl-0.1/magick-load.la lib/gegl-0.1/magick-load.so lib/gegl-0.1/mantiuk06.la lib/gegl-0.1/mantiuk06.so lib/gegl-0.1/map-absolute.la lib/gegl-0.1/map-absolute.so lib/gegl-0.1/map-relative.la lib/gegl-0.1/map-relative.so lib/gegl-0.1/mblur.la lib/gegl-0.1/mblur.so lib/gegl-0.1/mirrors.la lib/gegl-0.1/mirrors.so lib/gegl-0.1/mono-mixer.la lib/gegl-0.1/mono-mixer.so lib/gegl-0.1/motion-blur.la lib/gegl-0.1/motion-blur.so lib/gegl-0.1/multiply.la lib/gegl-0.1/multiply.so lib/gegl-0.1/noise-reduction.la lib/gegl-0.1/noise-reduction.so lib/gegl-0.1/noise.la lib/gegl-0.1/noise.so lib/gegl-0.1/nop.la lib/gegl-0.1/nop.so lib/gegl-0.1/opacity.la lib/gegl-0.1/opacity.so lib/gegl-0.1/open-buffer.la lib/gegl-0.1/open-buffer.so lib/gegl-0.1/over.la lib/gegl-0.1/over.so lib/gegl-0.1/overlay.la lib/gegl-0.1/overlay.so -lib/gegl-0.1/pixbuf.la -lib/gegl-0.1/pixbuf.so +%%GDK%%lib/gegl-0.1/pixbuf.la +%%GDK%%lib/gegl-0.1/pixbuf.so lib/gegl-0.1/pixelise.la lib/gegl-0.1/pixelise.so lib/gegl-0.1/plus.la lib/gegl-0.1/plus.so lib/gegl-0.1/ppm-load.la lib/gegl-0.1/ppm-load.so lib/gegl-0.1/ppm-save.la lib/gegl-0.1/ppm-save.so lib/gegl-0.1/raw-load.la lib/gegl-0.1/raw-load.so lib/gegl-0.1/rectangle.la lib/gegl-0.1/rectangle.so lib/gegl-0.1/reinhard05.la lib/gegl-0.1/reinhard05.so lib/gegl-0.1/remap.la lib/gegl-0.1/remap.so lib/gegl-0.1/rgbe-load.la lib/gegl-0.1/rgbe-load.so lib/gegl-0.1/rgbe-save.la lib/gegl-0.1/rgbe-save.so -lib/gegl-0.1/save-pixbuf.la -lib/gegl-0.1/save-pixbuf.so +%%GDK%%lib/gegl-0.1/save-pixbuf.la +%%GDK%%lib/gegl-0.1/save-pixbuf.so lib/gegl-0.1/save.la lib/gegl-0.1/save.so lib/gegl-0.1/screen.la lib/gegl-0.1/screen.so lib/gegl-0.1/snn-mean.la lib/gegl-0.1/snn-mean.so lib/gegl-0.1/soft-light.la lib/gegl-0.1/soft-light.so lib/gegl-0.1/src-atop.la lib/gegl-0.1/src-atop.so lib/gegl-0.1/src-in.la lib/gegl-0.1/src-in.so lib/gegl-0.1/src-out.la lib/gegl-0.1/src-out.so lib/gegl-0.1/src-over.la lib/gegl-0.1/src-over.so lib/gegl-0.1/src.la lib/gegl-0.1/src.so lib/gegl-0.1/stress.la lib/gegl-0.1/stress.so lib/gegl-0.1/stretch-contrast.la lib/gegl-0.1/stretch-contrast.so lib/gegl-0.1/subtract.la lib/gegl-0.1/subtract.so lib/gegl-0.1/svg-huerotate.la lib/gegl-0.1/svg-huerotate.so lib/gegl-0.1/svg-luminancetoalpha.la lib/gegl-0.1/svg-luminancetoalpha.so lib/gegl-0.1/svg-matrix.la lib/gegl-0.1/svg-matrix.so lib/gegl-0.1/svg-multiply.la lib/gegl-0.1/svg-multiply.so lib/gegl-0.1/svg-saturate.la lib/gegl-0.1/svg-saturate.so lib/gegl-0.1/threshold.la lib/gegl-0.1/threshold.so lib/gegl-0.1/unsharp-mask.la lib/gegl-0.1/unsharp-mask.so lib/gegl-0.1/value-invert.la lib/gegl-0.1/value-invert.so lib/gegl-0.1/vignette.la lib/gegl-0.1/vignette.so lib/gegl-0.1/weighted-blend.la lib/gegl-0.1/weighted-blend.so lib/gegl-0.1/whitebalance.la lib/gegl-0.1/whitebalance.so lib/gegl-0.1/write-buffer.la lib/gegl-0.1/write-buffer.so lib/gegl-0.1/xor.la lib/gegl-0.1/xor.so lib/girepository-1.0/Gegl-0.1.typelib lib/libgegl-0.1.la lib/libgegl-0.1.so lib/libgegl-0.1.so.%%GEGL_MINOR%% libdata/pkgconfig/gegl.pc share/gir-1.0/Gegl-0.1.gir %%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 @dirrm include/gegl-0.1/operation @dirrm include/gegl-0.1 @dirrm lib/gegl-0.1 %%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%% Property changes on: head/graphics/gegl/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.12 \ No newline at end of property +1.13 \ No newline at end of property