From c4885047c0e5d794c059ccdab8ad927a272e90d9 Mon Sep 17 00:00:00 2001 From: drochner Date: Fri, 15 Feb 2002 20:52:36 +0000 Subject: initial import of gimp-1.2.3 without the gimp-print stuff and "extra data" --- graphics/gimp-base/DESCR | 4 + graphics/gimp-base/Makefile | 85 ++ graphics/gimp-base/PLIST | 1525 +++++++++++++++++++++++++++++++ graphics/gimp-base/buildlink.mk | 56 ++ graphics/gimp-base/distinfo | 9 + graphics/gimp-base/files/pdb_self_doc.c | 180 ++++ graphics/gimp-base/patches/patch-aa | 22 + graphics/gimp-base/patches/patch-ab | 13 + graphics/gimp-base/patches/patch-ac | 41 + 9 files changed, 1935 insertions(+) create mode 100644 graphics/gimp-base/DESCR create mode 100644 graphics/gimp-base/Makefile create mode 100644 graphics/gimp-base/PLIST create mode 100644 graphics/gimp-base/buildlink.mk create mode 100644 graphics/gimp-base/distinfo create mode 100644 graphics/gimp-base/files/pdb_self_doc.c create mode 100644 graphics/gimp-base/patches/patch-aa create mode 100644 graphics/gimp-base/patches/patch-ab create mode 100644 graphics/gimp-base/patches/patch-ac diff --git a/graphics/gimp-base/DESCR b/graphics/gimp-base/DESCR new file mode 100644 index 00000000000..5c8e77cb124 --- /dev/null +++ b/graphics/gimp-base/DESCR @@ -0,0 +1,4 @@ +Powerful image manipulation program similar to "Adobe Photoshop"[tm]. +It supports layers, arbitrary image sizes and working on several images +at the same time. It comes with a lot of useful plug-ins. Missing is CMYK +support and more then 8 bits per channel. diff --git a/graphics/gimp-base/Makefile b/graphics/gimp-base/Makefile new file mode 100644 index 00000000000..2bef18b17b3 --- /dev/null +++ b/graphics/gimp-base/Makefile @@ -0,0 +1,85 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/02/15 20:52:36 drochner Exp $ + +DISTNAME= gimp-1.2.3 +PKGNAME= gimp-base-1.2.3 +CATEGORIES= graphics +MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/v1.2/v1.2.3/ \ + ftp://ftp.fu-berlin.de/unix/X11/graphics/gimp/v1.2/v1.2.3/ \ + ftp://ftp.cs.umn.edu/pub/gimp/gimp/v1.2/v1.2.3/ +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= hubertf@netbsd.org +HOMEPAGE= http://www.gimp.org/ +COMMENT= Image manipulation program similar to Photoshop[tm] + +CONFLICTS+= gimp<=1.2.3 + +USE_BUILDLINK_ONLY= yes +USE_GMAKE= yes +USE_LIBTOOL= yes +LIBTOOL_OVERRIDE= ${WRKSRC}/libtool +BUILD_USES_MSGFMT= yes + +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --disable-perl +CONFIGURE_ARGS+= --disable-python + +# Add settings for MPEG, LIBMPEG, and GAP_DECODE_MPEG to properly support +# the MPEG library from graphics/mpeg-lib that changed it's name, as the +# configure script will default to searching from -lmpeg. +# +CONFIGURE_ENV+= MPEG="mpeg" +CONFIGURE_ENV+= LIBMPEG="-lmpeg_lib" +CONFIGURE_ENV+= GAP_DECODE_MPEG="gap_decode_mpeg" + +LDFLAGS+= -Wl,--export-dynamic +MAKE_ENV+= X11BASE=${X11BASE} + +PLIST_SUBST+= LOCALBASE=${LOCALBASE} + +# make sure the installed "gimptool" doesn't refer to .buildlink +ORIG_GTK_CFLAGS!= gtk-config --cflags +GIMPTOOL_SUBST= -e "s|@ORIG_GTK_CFLAGS@|${ORIG_GTK_CFLAGS}|g" +ORIG_GTK_LIBS!= gtk-config --libs +GIMPTOOL_SUBST+= -e "s|@ORIG_GTK_LIBS@|${ORIG_GTK_LIBS}|g" +ORIG_GLIB_CFLAGS!= glib-config --cflags +GIMPTOOL_SUBST+= -e "s|@ORIG_GLIB_CFLAGS@|${ORIG_GLIB_CFLAGS}|g" +ORIG_GLIB_LIBS!= glib-config --libs +GIMPTOOL_SUBST+= -e "s|@ORIG_GLIB_LIBS@|${ORIG_GLIB_LIBS}|g" +ORIG_CFLAGS= -I${PREFIX}/include -I${X11BASE}/include +GIMPTOOL_SUBST+= -e "s|@ORIG_CFLAGS@|${ORIG_CFLAGS}|g" +ORIG_LDFLAGS= -L${PREFIX}/lib -Wl,-R${PREFIX}/lib +ORIG_LDFLAGS+= -L${X11BASE}/lib -Wl,-R${X11BASE}/lib +GIMPTOOL_SUBST+= -e "s|@ORIG_LDFLAGS@|${ORIG_LDFLAGS}|g" + +# Remove -I$(includedir) from the INCLUDES passed to the compiler as this +# defeats buildlink. +# +post-patch: + cd ${WRKSRC}; \ + files=`${FIND} . -name "Makefile.in" -print`; \ + for file in $${files}; do \ + ${MV} -f $${file} $${file}.fixme; \ + ${SED} -e "/^INCLUDES.*=.*/s|[ ]*-I\$$(includedir)||" \ + $${file}.fixme > $${file}; \ + ${RM} $${file}.fixme; \ + done + +post-configure: + ${SED} ${GIMPTOOL_SUBST} <${WRKSRC}/gimptool-1.2 \ + >${WRKSRC}/gimptool-1.2.tmp && \ + ${MV} ${WRKSRC}/gimptool-1.2.tmp ${WRKSRC}/gimptool-1.2 + +pre-build: + ${LINK.c} -o ${WRKSRC}/docs/pdb_self_doc ${FILESDIR}/pdb_self_doc.c + +post-install: + ${TEST} ${PREFIX} = ${LOCALBASE} || \ + ${LN} -fs ${PREFIX}/share/aclocal/gimp.m4 \ + ${LOCALBASE}/share/aclocal/gimp.m4 + +.include "../../devel/gettext-lib/buildlink.mk" +.include "../../graphics/mpeg-lib/buildlink.mk" +.include "../../x11/gnome-libs/buildlink.mk" +.include "../../mk/x11.buildlink.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/graphics/gimp-base/PLIST b/graphics/gimp-base/PLIST new file mode 100644 index 00000000000..f04feeb0958 --- /dev/null +++ b/graphics/gimp-base/PLIST @@ -0,0 +1,1525 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2002/02/15 20:52:36 drochner Exp $ +bin/gimp +bin/gimp-1.2 +bin/gimp-config +bin/gimp-remote +bin/gimp-remote-1.2 +bin/gimptool +bin/gimptool-1.2 +etc/gimp/1.2/gimprc +etc/gimp/1.2/gimprc_user +etc/gimp/1.2/gtkrc +etc/gimp/1.2/gtkrc_user +etc/gimp/1.2/ps-menurc +etc/gimp/1.2/unitrc +include/gck/gck.h +include/libgimp/gimp.h +include/libgimp/gimp_pdb.h +include/libgimp/gimpbrushes_pdb.h +include/libgimp/gimpbrushselect_pdb.h +include/libgimp/gimpchainbutton.h +include/libgimp/gimpchannel.h +include/libgimp/gimpchannel_pdb.h +include/libgimp/gimpchannelops_pdb.h +include/libgimp/gimpcolor_pdb.h +include/libgimp/gimpcolorbutton.h +include/libgimp/gimpcolordisplay.h +include/libgimp/gimpcolorselector.h +include/libgimp/gimpcolorspace.h +include/libgimp/gimpcompat.h +include/libgimp/gimpconvert_pdb.h +include/libgimp/gimpdialog.h +include/libgimp/gimpdisplay_pdb.h +include/libgimp/gimpdrawable.h +include/libgimp/gimpdrawable_pdb.h +include/libgimp/gimpedit_pdb.h +include/libgimp/gimpenums.h +include/libgimp/gimpenv.h +include/libgimp/gimpexport.h +include/libgimp/gimpfeatures.h +include/libgimp/gimpfileops_pdb.h +include/libgimp/gimpfileselection.h +include/libgimp/gimpfloatingsel_pdb.h +include/libgimp/gimpgimprc_pdb.h +include/libgimp/gimpgradients_pdb.h +include/libgimp/gimpgradientselect.h +include/libgimp/gimpgradientselect_pdb.h +include/libgimp/gimpguides_pdb.h +include/libgimp/gimphelp_pdb.h +include/libgimp/gimphelpui.h +include/libgimp/gimpimage.h +include/libgimp/gimpimage_pdb.h +include/libgimp/gimpintl.h +include/libgimp/gimplayer.h +include/libgimp/gimplayer_pdb.h +include/libgimp/gimplimits.h +include/libgimp/gimpmath.h +include/libgimp/gimpmatrix.h +include/libgimp/gimpmenu.h +include/libgimp/gimpmessage_pdb.h +include/libgimp/gimpmisc_pdb.h +include/libgimp/gimpmodule.h +include/libgimp/gimppalette_pdb.h +include/libgimp/gimpparasite.h +include/libgimp/gimpparasite_pdb.h +include/libgimp/gimpparasiteio.h +include/libgimp/gimppatheditor.h +include/libgimp/gimppaths_pdb.h +include/libgimp/gimppatterns_pdb.h +include/libgimp/gimppatternselect_pdb.h +include/libgimp/gimppixelrgn.h +include/libgimp/gimppixmap.h +include/libgimp/gimpplugin_pdb.h +include/libgimp/gimpproceduraldb.h +include/libgimp/gimpproceduraldb_pdb.h +include/libgimp/gimpquerybox.h +include/libgimp/gimpselection.h +include/libgimp/gimpselection_pdb.h +include/libgimp/gimpsignal.h +include/libgimp/gimpsizeentry.h +include/libgimp/gimptexttool_pdb.h +include/libgimp/gimptile.h +include/libgimp/gimptools_pdb.h +include/libgimp/gimptypes.h +include/libgimp/gimpui.h +include/libgimp/gimpundo_pdb.h +include/libgimp/gimpunit.h +include/libgimp/gimpunit_pdb.h +include/libgimp/gimpunitmenu.h +include/libgimp/gimputils.h +include/libgimp/gimpvector.h +include/libgimp/gimpwidgets.h +lib/gimp/1.2/modules/libcolorsel_gtk.a +lib/gimp/1.2/modules/libcolorsel_gtk.la +lib/gimp/1.2/modules/libcolorsel_gtk.so +lib/gimp/1.2/modules/libcolorsel_triangle.a +lib/gimp/1.2/modules/libcolorsel_triangle.la +lib/gimp/1.2/modules/libcolorsel_triangle.so +lib/gimp/1.2/modules/libcolorsel_water.a +lib/gimp/1.2/modules/libcolorsel_water.la +lib/gimp/1.2/modules/libcolorsel_water.so +lib/gimp/1.2/plug-ins/AlienMap +lib/gimp/1.2/plug-ins/AlienMap2 +lib/gimp/1.2/plug-ins/CEL +lib/gimp/1.2/plug-ins/CML_explorer +lib/gimp/1.2/plug-ins/FractalExplorer +lib/gimp/1.2/plug-ins/Lighting +lib/gimp/1.2/plug-ins/MapObject +lib/gimp/1.2/plug-ins/align_layers +lib/gimp/1.2/plug-ins/animationplay +lib/gimp/1.2/plug-ins/animoptimize +lib/gimp/1.2/plug-ins/apply_lens +lib/gimp/1.2/plug-ins/autocrop +lib/gimp/1.2/plug-ins/autostretch_hsv +lib/gimp/1.2/plug-ins/blinds +lib/gimp/1.2/plug-ins/blur +lib/gimp/1.2/plug-ins/bmp +lib/gimp/1.2/plug-ins/borderaverage +lib/gimp/1.2/plug-ins/bumpmap +lib/gimp/1.2/plug-ins/bz2 +lib/gimp/1.2/plug-ins/c_astretch +lib/gimp/1.2/plug-ins/checkerboard +lib/gimp/1.2/plug-ins/color_enhance +lib/gimp/1.2/plug-ins/colorify +lib/gimp/1.2/plug-ins/colortoalpha +lib/gimp/1.2/plug-ins/compose +lib/gimp/1.2/plug-ins/convmatrix +lib/gimp/1.2/plug-ins/csource +lib/gimp/1.2/plug-ins/cubism +lib/gimp/1.2/plug-ins/curve_bend +lib/gimp/1.2/plug-ins/dbbrowser +lib/gimp/1.2/plug-ins/decompose +lib/gimp/1.2/plug-ins/deinterlace +lib/gimp/1.2/plug-ins/depthmerge +lib/gimp/1.2/plug-ins/despeckle +lib/gimp/1.2/plug-ins/destripe +lib/gimp/1.2/plug-ins/diffraction +lib/gimp/1.2/plug-ins/displace +lib/gimp/1.2/plug-ins/edge +lib/gimp/1.2/plug-ins/emboss +lib/gimp/1.2/plug-ins/engrave +lib/gimp/1.2/plug-ins/exchange +lib/gimp/1.2/plug-ins/faxg3 +lib/gimp/1.2/plug-ins/film +lib/gimp/1.2/plug-ins/fits +lib/gimp/1.2/plug-ins/flame +lib/gimp/1.2/plug-ins/flarefx +lib/gimp/1.2/plug-ins/fp +lib/gimp/1.2/plug-ins/fractaltrace +lib/gimp/1.2/plug-ins/gap_decode_mpeg +lib/gimp/1.2/plug-ins/gap_filter +lib/gimp/1.2/plug-ins/gap_frontends +lib/gimp/1.2/plug-ins/gap_navigator_dialog +lib/gimp/1.2/plug-ins/gap_plugins +lib/gimp/1.2/plug-ins/gauss_iir +lib/gimp/1.2/plug-ins/gauss_rle +lib/gimp/1.2/plug-ins/gbr +lib/gimp/1.2/plug-ins/gdyntext +lib/gimp/1.2/plug-ins/gee +lib/gimp/1.2/plug-ins/gee_zoom +lib/gimp/1.2/plug-ins/gfig +lib/gimp/1.2/plug-ins/gflare +lib/gimp/1.2/plug-ins/gfli +lib/gimp/1.2/plug-ins/gicon +lib/gimp/1.2/plug-ins/gif +lib/gimp/1.2/plug-ins/gifload +lib/gimp/1.2/plug-ins/gih +lib/gimp/1.2/plug-ins/gimpressionist +lib/gimp/1.2/plug-ins/glasstile +lib/gimp/1.2/plug-ins/gqbist +lib/gimp/1.2/plug-ins/gradmap +lib/gimp/1.2/plug-ins/grid +lib/gimp/1.2/plug-ins/gtm +lib/gimp/1.2/plug-ins/guillotine +lib/gimp/1.2/plug-ins/gz +lib/gimp/1.2/plug-ins/header +lib/gimp/1.2/plug-ins/helpbrowser +lib/gimp/1.2/plug-ins/hot +lib/gimp/1.2/plug-ins/hrz +lib/gimp/1.2/plug-ins/ifscompose +lib/gimp/1.2/plug-ins/illusion +lib/gimp/1.2/plug-ins/imagemap +lib/gimp/1.2/plug-ins/iwarp +lib/gimp/1.2/plug-ins/jigsaw +lib/gimp/1.2/plug-ins/jpeg +lib/gimp/1.2/plug-ins/laplace +lib/gimp/1.2/plug-ins/lic +lib/gimp/1.2/plug-ins/mail +lib/gimp/1.2/plug-ins/mapcolor +lib/gimp/1.2/plug-ins/max_rgb +lib/gimp/1.2/plug-ins/maze +lib/gimp/1.2/plug-ins/mblur +lib/gimp/1.2/plug-ins/mosaic +lib/gimp/1.2/plug-ins/mpeg +lib/gimp/1.2/plug-ins/newsprint +lib/gimp/1.2/plug-ins/nlfilt +lib/gimp/1.2/plug-ins/noisify +lib/gimp/1.2/plug-ins/normalize +lib/gimp/1.2/plug-ins/nova +lib/gimp/1.2/plug-ins/oilify +lib/gimp/1.2/plug-ins/pagecurl +lib/gimp/1.2/plug-ins/papertile +lib/gimp/1.2/plug-ins/pat +lib/gimp/1.2/plug-ins/pcx +lib/gimp/1.2/plug-ins/pix +lib/gimp/1.2/plug-ins/pixelize +lib/gimp/1.2/plug-ins/plasma +lib/gimp/1.2/plug-ins/plugindetails +lib/gimp/1.2/plug-ins/png +lib/gimp/1.2/plug-ins/pnm +lib/gimp/1.2/plug-ins/polar +lib/gimp/1.2/plug-ins/ps +lib/gimp/1.2/plug-ins/psd +lib/gimp/1.2/plug-ins/psp +lib/gimp/1.2/plug-ins/randomize +lib/gimp/1.2/plug-ins/rcm +lib/gimp/1.2/plug-ins/ripple +lib/gimp/1.2/plug-ins/rotate +lib/gimp/1.2/plug-ins/sample_colorize +lib/gimp/1.2/plug-ins/scatter_hsv +lib/gimp/1.2/plug-ins/screenshot +lib/gimp/1.2/plug-ins/script-fu +lib/gimp/1.2/plug-ins/sel2path +lib/gimp/1.2/plug-ins/sel_gauss +lib/gimp/1.2/plug-ins/semiflatten +lib/gimp/1.2/plug-ins/sgi +lib/gimp/1.2/plug-ins/sharpen +lib/gimp/1.2/plug-ins/shift +lib/gimp/1.2/plug-ins/sinus +lib/gimp/1.2/plug-ins/smooth_palette +lib/gimp/1.2/plug-ins/snoise +lib/gimp/1.2/plug-ins/sobel +lib/gimp/1.2/plug-ins/sparkle +lib/gimp/1.2/plug-ins/spread +lib/gimp/1.2/plug-ins/struc +lib/gimp/1.2/plug-ins/sunras +lib/gimp/1.2/plug-ins/tga +lib/gimp/1.2/plug-ins/threshold_alpha +lib/gimp/1.2/plug-ins/tiff +lib/gimp/1.2/plug-ins/tile +lib/gimp/1.2/plug-ins/tileit +lib/gimp/1.2/plug-ins/tiler +lib/gimp/1.2/plug-ins/uniteditor +lib/gimp/1.2/plug-ins/unsharp +lib/gimp/1.2/plug-ins/url +lib/gimp/1.2/plug-ins/video +lib/gimp/1.2/plug-ins/vinvert +lib/gimp/1.2/plug-ins/vpropagate +lib/gimp/1.2/plug-ins/warp +lib/gimp/1.2/plug-ins/waves +lib/gimp/1.2/plug-ins/webbrowser +lib/gimp/1.2/plug-ins/whirlpinch +lib/gimp/1.2/plug-ins/wind +lib/gimp/1.2/plug-ins/wmf +lib/gimp/1.2/plug-ins/xbm +lib/gimp/1.2/plug-ins/xjt +lib/gimp/1.2/plug-ins/xpm +lib/gimp/1.2/plug-ins/xwd +lib/gimp/1.2/plug-ins/zealouscrop +lib/libgck-1.2.so +lib/libgck-1.2.so.0 +lib/libgck-1.2.so.0.3 +lib/libgck.a +lib/libgck.la +lib/libgck.so +lib/libgimp-1.2.so +lib/libgimp-1.2.so.0 +lib/libgimp-1.2.so.0.3 +lib/libgimp.a +lib/libgimp.la +lib/libgimp.so +lib/libgimpui-1.2.so +lib/libgimpui-1.2.so.0 +lib/libgimpui-1.2.so.0.3 +lib/libgimpui.a +lib/libgimpui.la +lib/libgimpui.so +man/man1/gimp-remote.1 +man/man1/gimp-remote-1.2.1 +man/man1/gimp.1 +man/man1/gimp-1.2.1 +man/man1/gimptool.1 +man/man1/gimptool-1.2.1 +man/man5/gimprc.5 +man/man5/gimprc-1.2.5 +share/aclocal/gimp.m4 +share/gimp/1.2/brushes/10x10square.gbr +share/gimp/1.2/brushes/10x10squareBlur.gbr +share/gimp/1.2/brushes/11circle.gbr +share/gimp/1.2/brushes/11fcircle.gbr +share/gimp/1.2/brushes/13circle.gbr +share/gimp/1.2/brushes/13fcircle.gbr +share/gimp/1.2/brushes/15circle.gbr +share/gimp/1.2/brushes/15fcircle.gbr +share/gimp/1.2/brushes/17circle.gbr +share/gimp/1.2/brushes/17fcircle.gbr +share/gimp/1.2/brushes/19circle.gbr +share/gimp/1.2/brushes/19fcircle.gbr +share/gimp/1.2/brushes/1circle.gbr +share/gimp/1.2/brushes/20x20square.gbr +share/gimp/1.2/brushes/20x20squareBlur.gbr +share/gimp/1.2/brushes/3circle.gbr +share/gimp/1.2/brushes/3fcircle.gbr +share/gimp/1.2/brushes/5circle.gbr +share/gimp/1.2/brushes/5fcircle.gbr +share/gimp/1.2/brushes/5x5square.gbr +share/gimp/1.2/brushes/5x5squareBlur.gbr +share/gimp/1.2/brushes/7circle.gbr +share/gimp/1.2/brushes/7fcircle.gbr +share/gimp/1.2/brushes/9circle.gbr +share/gimp/1.2/brushes/9fcircle.gbr +share/gimp/1.2/brushes/DStar11.gbr +share/gimp/1.2/brushes/DStar17.gbr +share/gimp/1.2/brushes/DStar25.gbr +share/gimp/1.2/brushes/SketchBrush-16.gih +share/gimp/1.2/brushes/SketchBrush-32.gih +share/gimp/1.2/brushes/SketchBrush-64.gih +share/gimp/1.2/brushes/callig1.gbr +share/gimp/1.2/brushes/callig2.gbr +share/gimp/1.2/brushes/callig3.gbr +share/gimp/1.2/brushes/callig4.gbr +share/gimp/1.2/brushes/confetti.gbr +share/gimp/1.2/brushes/confetti.gih +share/gimp/1.2/brushes/dunes.gbr +share/gimp/1.2/brushes/feltpen.gih +share/gimp/1.2/brushes/galaxy.gbr +share/gimp/1.2/brushes/galaxy_big.gbr +share/gimp/1.2/brushes/galaxy_small.gbr +share/gimp/1.2/brushes/hsparks.gih +share/gimp/1.2/brushes/pepper.gbr +share/gimp/1.2/brushes/pixel.gbr +share/gimp/1.2/brushes/thegimp.gbr +share/gimp/1.2/brushes/vine.gih +share/gimp/1.2/brushes/xcf.gbr +share/gimp/1.2/devel-docs/html/libgimp/gimpchainbutton.html +share/gimp/1.2/devel-docs/html/libgimp/gimpcolorbutton.html +share/gimp/1.2/devel-docs/html/libgimp/gimpdefinitions.html +share/gimp/1.2/devel-docs/html/libgimp/gimpfileselection.html +share/gimp/1.2/devel-docs/html/libgimp/gimpmodule.html +share/gimp/1.2/devel-docs/html/libgimp/gimppatheditor.html +share/gimp/1.2/devel-docs/html/libgimp/gimppixmap.html +share/gimp/1.2/devel-docs/html/libgimp/gimpsizeentry.html +share/gimp/1.2/devel-docs/html/libgimp/gimpunitmenu.html +share/gimp/1.2/devel-docs/html/libgimp/index.html +share/gimp/1.2/devel-docs/html/libgimp/index.sgml +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimp.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpbrushes.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpchannel.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpchannelops.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpcolor.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpcolordisplay.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpcolorselector.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpcolorspace.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpcompat.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpconvert.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpdialog.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpdisplay.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpdrawable.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpedit.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpenums.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpenv.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpexport.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpfeatures.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpfileops.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpfloatingsel.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpgimprc.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpgradients.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpguides.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimphelp.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimphelpui.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpimage.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimplayer.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimplimits.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpmath.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpmatrix.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpmenu.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpmessage.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpmisc.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpmodule.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimppalette.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpparasite.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpparasiteio.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimppatterns.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimppixelrgn.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpplugin.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpproceduraldb.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpprotocol.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpquerybox.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpselection.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpsignal.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimptexttool.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimptile.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimptools.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpui.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpundo.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpunit.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimputils.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpvector.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpwidgets.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp-gimpwire.html +share/gimp/1.2/devel-docs/html/libgimp/libgimp.html +share/gimp/1.2/devel-docs/html/libgimp/libgimpui.html +share/gimp/1.2/fractalexplorer/Asteroid_Field +share/gimp/1.2/fractalexplorer/Bar_Code_Label +share/gimp/1.2/fractalexplorer/Beauty_of_Nature +share/gimp/1.2/fractalexplorer/Blue_Curtain +share/gimp/1.2/fractalexplorer/Car_Track +share/gimp/1.2/fractalexplorer/Energetic_Diamond +share/gimp/1.2/fractalexplorer/Explosive +share/gimp/1.2/fractalexplorer/Flower +share/gimp/1.2/fractalexplorer/Fragments +share/gimp/1.2/fractalexplorer/Hemp +share/gimp/1.2/fractalexplorer/High_Voltage +share/gimp/1.2/fractalexplorer/Hoops +share/gimp/1.2/fractalexplorer/Ice_Crystal +share/gimp/1.2/fractalexplorer/Leaves +share/gimp/1.2/fractalexplorer/Lightning +share/gimp/1.2/fractalexplorer/Mandelbrot +share/gimp/1.2/fractalexplorer/Marble +share/gimp/1.2/fractalexplorer/Marble2 +share/gimp/1.2/fractalexplorer/Medusa +share/gimp/1.2/fractalexplorer/Nautilus +share/gimp/1.2/fractalexplorer/Nebula +share/gimp/1.2/fractalexplorer/Plant +share/gimp/1.2/fractalexplorer/Rose +share/gimp/1.2/fractalexplorer/Saturn +share/gimp/1.2/fractalexplorer/Snow_Crystal +share/gimp/1.2/fractalexplorer/Soma +share/gimp/1.2/fractalexplorer/Spark +share/gimp/1.2/fractalexplorer/Suns +share/gimp/1.2/fractalexplorer/Tentacles +share/gimp/1.2/fractalexplorer/The_Green_Place +share/gimp/1.2/fractalexplorer/Wave +share/gimp/1.2/fractalexplorer/Wood +share/gimp/1.2/fractalexplorer/Zooming_Circle +share/gimp/1.2/gfig/A_star +share/gimp/1.2/gfig/curves +share/gimp/1.2/gfig/polys +share/gimp/1.2/gfig/ring +share/gimp/1.2/gfig/ring+star +share/gimp/1.2/gfig/simily +share/gimp/1.2/gfig/spirals_and_stars +share/gimp/1.2/gfig/sprial +share/gimp/1.2/gfig/star2 +share/gimp/1.2/gfig/stars +share/gimp/1.2/gflare/Bright_Star +share/gimp/1.2/gflare/Classic +share/gimp/1.2/gflare/Default +share/gimp/1.2/gflare/Distant_Sun +share/gimp/1.2/gflare/GFlare_101 +share/gimp/1.2/gflare/GFlare_102 +share/gimp/1.2/gflare/Hidden_Planet +share/gimp/1.2/gimp_logo.ppm +share/gimp/1.2/gimp_splash.ppm +share/gimp/1.2/gimpressionist/Brushes/arrow01.pgm +share/gimp/1.2/gimpressionist/Brushes/ball.ppm +share/gimp/1.2/gimpressionist/Brushes/blob.ppm +share/gimp/1.2/gimpressionist/Brushes/box.ppm +share/gimp/1.2/gimpressionist/Brushes/chalk01.pgm +share/gimp/1.2/gimpressionist/Brushes/cone.ppm +share/gimp/1.2/gimpressionist/Brushes/crayon01.pgm +share/gimp/1.2/gimpressionist/Brushes/crayon02.pgm +share/gimp/1.2/gimpressionist/Brushes/crayon03.pgm +share/gimp/1.2/gimpressionist/Brushes/crayon04.pgm +share/gimp/1.2/gimpressionist/Brushes/crayon05.pgm +share/gimp/1.2/gimpressionist/Brushes/crayon06.pgm +share/gimp/1.2/gimpressionist/Brushes/crayon07.pgm +share/gimp/1.2/gimpressionist/Brushes/crayon08.pgm +share/gimp/1.2/gimpressionist/Brushes/defaultbrush.pgm +share/gimp/1.2/gimpressionist/Brushes/dribble.pgm +share/gimp/1.2/gimpressionist/Brushes/fabric.pgm +share/gimp/1.2/gimpressionist/Brushes/fabric01.pgm +share/gimp/1.2/gimpressionist/Brushes/fabric02.pgm +share/gimp/1.2/gimpressionist/Brushes/fabric03.pgm +share/gimp/1.2/gimpressionist/Brushes/flower01.pgm +share/gimp/1.2/gimpressionist/Brushes/flower02.pgm +share/gimp/1.2/gimpressionist/Brushes/flower03.pgm +share/gimp/1.2/gimpressionist/Brushes/flower04.pgm +share/gimp/1.2/gimpressionist/Brushes/grad01.pgm +share/gimp/1.2/gimpressionist/Brushes/grad02.pgm +share/gimp/1.2/gimpressionist/Brushes/grad03.pgm +share/gimp/1.2/gimpressionist/Brushes/heart.ppm +share/gimp/1.2/gimpressionist/Brushes/leaf01.pgm +share/gimp/1.2/gimpressionist/Brushes/paintbrush.pgm +share/gimp/1.2/gimpressionist/Brushes/paintbrush01.pgm +share/gimp/1.2/gimpressionist/Brushes/paintbrush02.pgm +share/gimp/1.2/gimpressionist/Brushes/paintbrush03.pgm +share/gimp/1.2/gimpressionist/Brushes/paintbrush04.pgm +share/gimp/1.2/gimpressionist/Brushes/paper01.pgm +share/gimp/1.2/gimpressionist/Brushes/paper02.pgm +share/gimp/1.2/gimpressionist/Brushes/paper03.pgm +share/gimp/1.2/gimpressionist/Brushes/paper04.pgm +share/gimp/1.2/gimpressionist/Brushes/pentagram.pgm +share/gimp/1.2/gimpressionist/Brushes/scribble.pgm +share/gimp/1.2/gimpressionist/Brushes/shape01.pgm +share/gimp/1.2/gimpressionist/Brushes/shape02.pgm +share/gimp/1.2/gimpressionist/Brushes/shape03.pgm +share/gimp/1.2/gimpressionist/Brushes/shape04.pgm +share/gimp/1.2/gimpressionist/Brushes/snow1.pgm +share/gimp/1.2/gimpressionist/Brushes/sphere.ppm +share/gimp/1.2/gimpressionist/Brushes/splat1.pgm +share/gimp/1.2/gimpressionist/Brushes/splat2.pgm +share/gimp/1.2/gimpressionist/Brushes/splat3.pgm +share/gimp/1.2/gimpressionist/Brushes/spunge01.pgm +share/gimp/1.2/gimpressionist/Brushes/spunge02.pgm +share/gimp/1.2/gimpressionist/Brushes/spunge03.pgm +share/gimp/1.2/gimpressionist/Brushes/spunge04.pgm +share/gimp/1.2/gimpressionist/Brushes/spunge05.pgm +share/gimp/1.2/gimpressionist/Brushes/strange01.pgm +share/gimp/1.2/gimpressionist/Brushes/thegimp.pgm +share/gimp/1.2/gimpressionist/Brushes/torus.ppm +share/gimp/1.2/gimpressionist/Brushes/wavy.pgm +share/gimp/1.2/gimpressionist/Brushes/weave.pgm +share/gimp/1.2/gimpressionist/Brushes/worm.pgm +share/gimp/1.2/gimpressionist/Paper/bricks.pgm +share/gimp/1.2/gimpressionist/Paper/bricks2.pgm +share/gimp/1.2/gimpressionist/Paper/burlap.pgm +share/gimp/1.2/gimpressionist/Paper/canvas2.pgm +share/gimp/1.2/gimpressionist/Paper/defaultpaper.pgm +share/gimp/1.2/gimpressionist/Paper/marble.pgm +share/gimp/1.2/gimpressionist/Paper/marble2.pgm +share/gimp/1.2/gimpressionist/Paper/stone.pgm +share/gimp/1.2/gimpressionist/Paper/struc.pgm +share/gimp/1.2/gimpressionist/Presets/ApplyCanvas +share/gimp/1.2/gimpressionist/Presets/Ballpark +share/gimp/1.2/gimpressionist/Presets/Canvas +share/gimp/1.2/gimpressionist/Presets/Crosshatch +share/gimp/1.2/gimpressionist/Presets/Cubism +share/gimp/1.2/gimpressionist/Presets/Dotify +share/gimp/1.2/gimpressionist/Presets/Embroidery +share/gimp/1.2/gimpressionist/Presets/Feathers +share/gimp/1.2/gimpressionist/Presets/Felt-marker +share/gimp/1.2/gimpressionist/Presets/Flowerbed +share/gimp/1.2/gimpressionist/Presets/Furry +share/gimp/1.2/gimpressionist/Presets/Line-art +share/gimp/1.2/gimpressionist/Presets/Line-art-2 +share/gimp/1.2/gimpressionist/Presets/Maggot-invasion +share/gimp/1.2/gimpressionist/Presets/MarbleMadness +share/gimp/1.2/gimpressionist/Presets/Mossy +share/gimp/1.2/gimpressionist/Presets/Painted_Rock +share/gimp/1.2/gimpressionist/Presets/Parquette +share/gimp/1.2/gimpressionist/Presets/Patchwork +share/gimp/1.2/gimpressionist/Presets/Ringworks +share/gimp/1.2/gimpressionist/Presets/Sample +share/gimp/1.2/gimpressionist/Presets/Smash +share/gimp/1.2/gimpressionist/Presets/Straws +share/gimp/1.2/gimpressionist/Presets/Weave +share/gimp/1.2/gimpressionist/Presets/Wormcan +share/gimp/1.2/gradients/Abstract_1 +share/gimp/1.2/gradients/Abstract_2 +share/gimp/1.2/gradients/Abstract_3 +share/gimp/1.2/gradients/Aneurism +share/gimp/1.2/gradients/Blinds +share/gimp/1.2/gradients/Blue_Green +share/gimp/1.2/gradients/Browns +share/gimp/1.2/gradients/Brushed_Aluminium +share/gimp/1.2/gradients/Burning_Paper +share/gimp/1.2/gradients/Burning_Transparency +share/gimp/1.2/gradients/CD +share/gimp/1.2/gradients/CD_Half +share/gimp/1.2/gradients/Caribbean_Blues +share/gimp/1.2/gradients/Coffee +share/gimp/1.2/gradients/Cold_Steel +share/gimp/1.2/gradients/Cold_Steel_2 +share/gimp/1.2/gradients/Crown_molding +share/gimp/1.2/gradients/Danish_flag +share/gimp/1.2/gradients/Dark_1 +share/gimp/1.2/gradients/Deep_Sea +share/gimp/1.2/gradients/Default +share/gimp/1.2/gradients/Flare_Glow_Angular_1 +share/gimp/1.2/gradients/Flare_Glow_Radial_1 +share/gimp/1.2/gradients/Flare_Glow_Radial_2 +share/gimp/1.2/gradients/Flare_Glow_Radial_3 +share/gimp/1.2/gradients/Flare_Glow_Radial_4 +share/gimp/1.2/gradients/Flare_Radial_101 +share/gimp/1.2/gradients/Flare_Radial_102 +share/gimp/1.2/gradients/Flare_Radial_103 +share/gimp/1.2/gradients/Flare_Rays_Radial_1 +share/gimp/1.2/gradients/Flare_Rays_Radial_2 +share/gimp/1.2/gradients/Flare_Rays_Size_1 +share/gimp/1.2/gradients/Flare_Sizefac_101 +share/gimp/1.2/gradients/Four_bars +share/gimp/1.2/gradients/French_flag +share/gimp/1.2/gradients/French_flag_smooth +share/gimp/1.2/gradients/Full_saturation_spectrum_CCW +share/gimp/1.2/gradients/Full_saturation_spectrum_CW +share/gimp/1.2/gradients/German_flag +share/gimp/1.2/gradients/German_flag_smooth +share/gimp/1.2/gradients/Golden +share/gimp/1.2/gradients/Greens +share/gimp/1.2/gradients/Horizon_1 +share/gimp/1.2/gradients/Horizon_2 +share/gimp/1.2/gradients/Incandescent +share/gimp/1.2/gradients/Land_1 +share/gimp/1.2/gradients/Land_and_Sea +share/gimp/1.2/gradients/Metallic_Something +share/gimp/1.2/gradients/Mexican_flag +share/gimp/1.2/gradients/Mexican_flag_smooth +share/gimp/1.2/gradients/Nauseating_Headache +share/gimp/1.2/gradients/Neon_Cyan +share/gimp/1.2/gradients/Neon_Green +share/gimp/1.2/gradients/Neon_Yellow +share/gimp/1.2/gradients/Pastel_Rainbow +share/gimp/1.2/gradients/Pastels +share/gimp/1.2/gradients/Purples +share/gimp/1.2/gradients/Radial_Eyeball_Blue +share/gimp/1.2/gradients/Radial_Eyeball_Brown +share/gimp/1.2/gradients/Radial_Eyeball_Green +share/gimp/1.2/gradients/Radial_Glow_1 +share/gimp/1.2/gradients/Radial_Rainbow_Hoop +share/gimp/1.2/gradients/Romanian_flag +share/gimp/1.2/gradients/Romanian_flag_smooth +share/gimp/1.2/gradients/Rounded_edge +share/gimp/1.2/gradients/Shadows_1 +share/gimp/1.2/gradients/Shadows_2 +share/gimp/1.2/gradients/Shadows_3 +share/gimp/1.2/gradients/Skyline +share/gimp/1.2/gradients/Skyline_polluted +share/gimp/1.2/gradients/Square_Wood_Frame +share/gimp/1.2/gradients/Sunrise +share/gimp/1.2/gradients/Three_bars_sin +share/gimp/1.2/gradients/Tropical_Colors +share/gimp/1.2/gradients/Tube_Red +share/gimp/1.2/gradients/Wood_1 +share/gimp/1.2/gradients/Wood_2 +share/gimp/1.2/gradients/Yellow_Contrast +share/gimp/1.2/gradients/Yellow_Orange +share/gimp/1.2/help/C/bug_submission.html +share/gimp/1.2/help/C/channels/channel_to_selection.html +share/gimp/1.2/help/C/channels/delete_channel.html +share/gimp/1.2/help/C/channels/dialogs +share/gimp/1.2/help/C/channels/duplicate_channel.html +share/gimp/1.2/help/C/channels/index.html +share/gimp/1.2/help/C/channels/lower_channel.html +share/gimp/1.2/help/C/channels/raise_channel.html +share/gimp/1.2/help/C/command_line.html +share/gimp/1.2/help/C/contents.html +share/gimp/1.2/help/C/dialogs/about.html +share/gimp/1.2/help/C/dialogs/border_selection.html +share/gimp/1.2/help/C/dialogs/brush_editor.html +share/gimp/1.2/help/C/dialogs/brush_selection.html +share/gimp/1.2/help/C/dialogs/channels/channels.html +share/gimp/1.2/help/C/dialogs/channels/edit_channel_attributes.html +share/gimp/1.2/help/C/dialogs/channels/new_channel.html +share/gimp/1.2/help/C/dialogs/color_selectors/built_in.html +share/gimp/1.2/help/C/dialogs/color_selectors/gtk.html +share/gimp/1.2/help/C/dialogs/color_selectors/triangle.html +share/gimp/1.2/help/C/dialogs/color_selectors/watercolor.html +share/gimp/1.2/help/C/dialogs/confirm_save.html +share/gimp/1.2/help/C/dialogs/convert_to_indexed.html +share/gimp/1.2/help/C/dialogs/copy_named.html +share/gimp/1.2/help/C/dialogs/cut_named.html +share/gimp/1.2/help/C/dialogs/device_status.html +share/gimp/1.2/help/C/dialogs/document_index.html +share/gimp/1.2/help/C/dialogs/edit_qmask_attributes.html +share/gimp/1.2/help/C/dialogs/error_console.html +share/gimp/1.2/help/C/dialogs/export_file.html +share/gimp/1.2/help/C/dialogs/feather_selection.html +share/gimp/1.2/help/C/dialogs/file_new.html +share/gimp/1.2/help/C/dialogs/file_open.html +share/gimp/1.2/help/C/dialogs/file_save.html +share/gimp/1.2/help/C/dialogs/gradient_editor/copy_gradient.html +share/gimp/1.2/help/C/dialogs/gradient_editor/delete_gradient.html +share/gimp/1.2/help/C/dialogs/gradient_editor/gradient_editor.html +share/gimp/1.2/help/C/dialogs/gradient_editor/new_gradient.html +share/gimp/1.2/help/C/dialogs/gradient_editor/rename_gradient.html +share/gimp/1.2/help/C/dialogs/gradient_editor/replicate_segment.html +share/gimp/1.2/help/C/dialogs/gradient_editor/save_as_povray.html +share/gimp/1.2/help/C/dialogs/gradient_editor/split_segments_uniformly.html +share/gimp/1.2/help/C/dialogs/gradient_selection.html +share/gimp/1.2/help/C/dialogs/grow_selection.html +share/gimp/1.2/help/C/dialogs/help.html +share/gimp/1.2/help/C/dialogs/index.html +share/gimp/1.2/help/C/dialogs/indexed_palette.html +share/gimp/1.2/help/C/dialogs/info_window.html +share/gimp/1.2/help/C/dialogs/input_devices.html +share/gimp/1.2/help/C/dialogs/layers/add_layer_mask.html +share/gimp/1.2/help/C/dialogs/layers/edit_layer_attributes.html +share/gimp/1.2/help/C/dialogs/layers/layer_boundary_size.html +share/gimp/1.2/help/C/dialogs/layers/layers.html +share/gimp/1.2/help/C/dialogs/layers/merge_visible_layers.html +share/gimp/1.2/help/C/dialogs/layers/new_layer.html +share/gimp/1.2/help/C/dialogs/layers/scale_layer.html +share/gimp/1.2/help/C/dialogs/layers_and_channels.html +share/gimp/1.2/help/C/dialogs/module_browser.html +share/gimp/1.2/help/C/dialogs/navigation_window.html +share/gimp/1.2/help/C/dialogs/offset.html +share/gimp/1.2/help/C/dialogs/palette_editor/delete_palette.html +share/gimp/1.2/help/C/dialogs/palette_editor/import_palette.html +share/gimp/1.2/help/C/dialogs/palette_editor/merge_palette.html +share/gimp/1.2/help/C/dialogs/palette_editor/new_palette.html +share/gimp/1.2/help/C/dialogs/palette_editor/palette_editor.html +share/gimp/1.2/help/C/dialogs/palette_selection.html +share/gimp/1.2/help/C/dialogs/paste_named.html +share/gimp/1.2/help/C/dialogs/paths/edit_path_attributes.html +share/gimp/1.2/help/C/dialogs/paths/export_path.html +share/gimp/1.2/help/C/dialogs/paths/import_path.html +share/gimp/1.2/help/C/dialogs/paths/paths.html +share/gimp/1.2/help/C/dialogs/pattern_selection.html +share/gimp/1.2/help/C/dialogs/preferences/directories.html +share/gimp/1.2/help/C/dialogs/preferences/display.html +share/gimp/1.2/help/C/dialogs/preferences/environment.html +share/gimp/1.2/help/C/dialogs/preferences/interface.html +share/gimp/1.2/help/C/dialogs/preferences/monitor.html +share/gimp/1.2/help/C/dialogs/preferences/new_file.html +share/gimp/1.2/help/C/dialogs/preferences/preferences.html +share/gimp/1.2/help/C/dialogs/preferences/session.html +share/gimp/1.2/help/C/dialogs/really_close.html +share/gimp/1.2/help/C/dialogs/really_quit.html +share/gimp/1.2/help/C/dialogs/scale_image.html +share/gimp/1.2/help/C/dialogs/scale_layer_warn.html +share/gimp/1.2/help/C/dialogs/set_canvas_size.html +share/gimp/1.2/help/C/dialogs/shrink_selection.html +share/gimp/1.2/help/C/dialogs/tip_of_the_day.html +share/gimp/1.2/help/C/dialogs/tool_options.html +share/gimp/1.2/help/C/dialogs/undo_history.html +share/gimp/1.2/help/C/file/close.html +share/gimp/1.2/help/C/file/dialogs +share/gimp/1.2/help/C/file/filters +share/gimp/1.2/help/C/file/index.html +share/gimp/1.2/help/C/file/last_opened.html +share/gimp/1.2/help/C/file/open +share/gimp/1.2/help/C/file/quit.html +share/gimp/1.2/help/C/file/revert.html +share/gimp/1.2/help/C/file/save +share/gimp/1.2/help/C/file_formats.html +share/gimp/1.2/help/C/filters/alienmap.html +share/gimp/1.2/help/C/filters/alienmap2.html +share/gimp/1.2/help/C/filters/align_layers.html +share/gimp/1.2/help/C/filters/animate_cells.html +share/gimp/1.2/help/C/filters/animationplay.html +share/gimp/1.2/help/C/filters/animoptimize.html +share/gimp/1.2/help/C/filters/apply_lens.html +share/gimp/1.2/help/C/filters/applycanvas.html +share/gimp/1.2/help/C/filters/autocrop.html +share/gimp/1.2/help/C/filters/autostretch_hsv.html +share/gimp/1.2/help/C/filters/blended2.html +share/gimp/1.2/help/C/filters/blinds.html +share/gimp/1.2/help/C/filters/blowinout.html +share/gimp/1.2/help/C/filters/blur.html +share/gimp/1.2/help/C/filters/border.html +share/gimp/1.2/help/C/filters/borderaverage.html +share/gimp/1.2/help/C/filters/bumpmap.html +share/gimp/1.2/help/C/filters/burst.html +share/gimp/1.2/help/C/filters/bz2.html +share/gimp/1.2/help/C/filters/c_astretch.html +share/gimp/1.2/help/C/filters/centerguide.html +share/gimp/1.2/help/C/filters/checkerboard.html +share/gimp/1.2/help/C/filters/cml_explorer.html +share/gimp/1.2/help/C/filters/color_enhance.html +share/gimp/1.2/help/C/filters/colorify.html +share/gimp/1.2/help/C/filters/colortoalpha.html +share/gimp/1.2/help/C/filters/compose.html +share/gimp/1.2/help/C/filters/convmatrix.html +share/gimp/1.2/help/C/filters/cubism.html +share/gimp/1.2/help/C/filters/curve_bend.html +share/gimp/1.2/help/C/filters/decompose.html +share/gimp/1.2/help/C/filters/deinterlace.html +share/gimp/1.2/help/C/filters/depthmerge.html +share/gimp/1.2/help/C/filters/despeckle.html +share/gimp/1.2/help/C/filters/destripe.html +share/gimp/1.2/help/C/filters/diffraction.html +share/gimp/1.2/help/C/filters/ditherize.html +share/gimp/1.2/help/C/filters/displace.html +share/gimp/1.2/help/C/filters/dust.html +share/gimp/1.2/help/C/filters/edge.html +share/gimp/1.2/help/C/filters/emboss.html +share/gimp/1.2/help/C/filters/engrave.html +share/gimp/1.2/help/C/filters/exchange.html +share/gimp/1.2/help/C/filters/fade-alpha.html +share/gimp/1.2/help/C/filters/film.html +share/gimp/1.2/help/C/filters/fire.html +share/gimp/1.2/help/C/filters/fit-text.html +share/gimp/1.2/help/C/filters/fits.html +share/gimp/1.2/help/C/filters/flame.html +share/gimp/1.2/help/C/filters/flarefx.html +share/gimp/1.2/help/C/filters/fp.html +share/gimp/1.2/help/C/filters/fractalexplorer.html +share/gimp/1.2/help/C/filters/fractaltrace.html +share/gimp/1.2/help/C/filters/frame_filter.html +share/gimp/1.2/help/C/filters/gap_filter.html +share/gimp/1.2/help/C/filters/gap_frontends.html +share/gimp/1.2/help/C/filters/gap_navigator_dialog.html +share/gimp/1.2/help/C/filters/gap_plugins.html +share/gimp/1.2/help/C/filters/gauss_iir.html +share/gimp/1.2/help/C/filters/gauss_rle.html +share/gimp/1.2/help/C/filters/gdyntext.html +share/gimp/1.2/help/C/filters/gee_zoom.html +share/gimp/1.2/help/C/filters/gfig.html +share/gimp/1.2/help/C/filters/gflare.html +share/gimp/1.2/help/C/filters/gih.html +share/gimp/1.2/help/C/filters/gimpressionist.html +share/gimp/1.2/help/C/filters/gqbist.html +share/gimp/1.2/help/C/filters/glasstile.html +share/gimp/1.2/help/C/filters/glowing_steel.html +share/gimp/1.2/help/C/filters/gouge.html +share/gimp/1.2/help/C/filters/gradmap.html +share/gimp/1.2/help/C/filters/grid.html +share/gimp/1.2/help/C/filters/gtm.html +share/gimp/1.2/help/C/filters/guide_remove.html +share/gimp/1.2/help/C/filters/guidegrid.html +share/gimp/1.2/help/C/filters/guides_to_selection.html +share/gimp/1.2/help/C/filters/guillotine.html +share/gimp/1.2/help/C/filters/gz.html +share/gimp/1.2/help/C/filters/hot.html +share/gimp/1.2/help/C/filters/hrz.html +share/gimp/1.2/help/C/filters/ifscompose.html +share/gimp/1.2/help/C/filters/illusion.html +share/gimp/1.2/help/C/filters/image_tile.html +share/gimp/1.2/help/C/filters/imagemap.html +share/gimp/1.2/help/C/filters/index.html +share/gimp/1.2/help/C/filters/iwarp.html +share/gimp/1.2/help/C/filters/jigsaw.html +share/gimp/1.2/help/C/filters/jpeg.html +share/gimp/1.2/help/C/filters/laplace.html +share/gimp/1.2/help/C/filters/layerfuncs.html +share/gimp/1.2/help/C/filters/lic.html +share/gimp/1.2/help/C/filters/lighting.html +share/gimp/1.2/help/C/filters/logulator.html +share/gimp/1.2/help/C/filters/mail.html +share/gimp/1.2/help/C/filters/map_to_gradient.html +share/gimp/1.2/help/C/filters/mapcolor.html +share/gimp/1.2/help/C/filters/mapobject.html +share/gimp/1.2/help/C/filters/max_rgb.html +share/gimp/1.2/help/C/filters/maze.html +share/gimp/1.2/help/C/filters/mblur.html +share/gimp/1.2/help/C/filters/miff.html +share/gimp/1.2/help/C/filters/mirrorsplit.html +share/gimp/1.2/help/C/filters/mosaic.html +share/gimp/1.2/help/C/filters/newsprint.html +share/gimp/1.2/help/C/filters/nlfilt.html +share/gimp/1.2/help/C/filters/noisify.html +share/gimp/1.2/help/C/filters/none.html +share/gimp/1.2/help/C/filters/normalize.html +share/gimp/1.2/help/C/filters/nova.html +share/gimp/1.2/help/C/filters/oilify.html +share/gimp/1.2/help/C/filters/pagecurl.html +share/gimp/1.2/help/C/filters/papertile.html +share/gimp/1.2/help/C/filters/pat.html +share/gimp/1.2/help/C/filters/perlotine.html +share/gimp/1.2/help/C/filters/pixelize.html +share/gimp/1.2/help/C/filters/pixelmap.html +share/gimp/1.2/help/C/filters/plasma.html +share/gimp/1.2/help/C/filters/png.html +share/gimp/1.2/help/C/filters/pnm.html +share/gimp/1.2/help/C/filters/polar.html +share/gimp/1.2/help/C/filters/prep4gif.html +share/gimp/1.2/help/C/filters/print.html +share/gimp/1.2/help/C/filters/psd.html +share/gimp/1.2/help/C/filters/psp.html +share/gimp/1.2/help/C/filters/randomblends.html +share/gimp/1.2/help/C/filters/randomize.html +share/gimp/1.2/help/C/filters/rcm.html +share/gimp/1.2/help/C/filters/repdup.html +share/gimp/1.2/help/C/filters/repeat_last.html +share/gimp/1.2/help/C/filters/reshow_last.html +share/gimp/1.2/help/C/filters/resynth.html +share/gimp/1.2/help/C/filters/ripple.html +share/gimp/1.2/help/C/filters/rotate.html +share/gimp/1.2/help/C/filters/roundsel.html +share/gimp/1.2/help/C/filters/sample_colorize.html +share/gimp/1.2/help/C/filters/scatter_hsv.html +share/gimp/1.2/help/C/filters/scratches.html +share/gimp/1.2/help/C/filters/sel2path.html +share/gimp/1.2/help/C/filters/sel_gauss.html +share/gimp/1.2/help/C/filters/semiflatten.html +share/gimp/1.2/help/C/filters/sgi.html +share/gimp/1.2/help/C/filters/sharpen.html +share/gimp/1.2/help/C/filters/shift.html +share/gimp/1.2/help/C/filters/sinus.html +share/gimp/1.2/help/C/filters/smooth_palette.html +share/gimp/1.2/help/C/filters/snoise.html +share/gimp/1.2/help/C/filters/sobel.html +share/gimp/1.2/help/C/filters/sparkle.html +share/gimp/1.2/help/C/filters/spread.html +share/gimp/1.2/help/C/filters/stampify.html +share/gimp/1.2/help/C/filters/struc.html +share/gimp/1.2/help/C/filters/sunras.html +share/gimp/1.2/help/C/filters/terral_text.html +share/gimp/1.2/help/C/filters/tex-to-float.html +share/gimp/1.2/help/C/filters/tga.html +share/gimp/1.2/help/C/filters/threshold_alpha.html +share/gimp/1.2/help/C/filters/tiff.html +share/gimp/1.2/help/C/filters/tile.html +share/gimp/1.2/help/C/filters/tileable_blur.html +share/gimp/1.2/help/C/filters/tileit.html +share/gimp/1.2/help/C/filters/tiler.html +share/gimp/1.2/help/C/filters/translogo.html +share/gimp/1.2/help/C/filters/unsharp.html +share/gimp/1.2/help/C/filters/url.html +share/gimp/1.2/help/C/filters/video.html +share/gimp/1.2/help/C/filters/vinvert.html +share/gimp/1.2/help/C/filters/vpropagate.html +share/gimp/1.2/help/C/filters/warp-sharp.html +share/gimp/1.2/help/C/filters/warp.html +share/gimp/1.2/help/C/filters/waves.html +share/gimp/1.2/help/C/filters/webify.html +share/gimp/1.2/help/C/filters/whirlpinch.html +share/gimp/1.2/help/C/filters/wind.html +share/gimp/1.2/help/C/filters/windify.html +share/gimp/1.2/help/C/filters/wmf.html +share/gimp/1.2/help/C/filters/xachlego.html +share/gimp/1.2/help/C/filters/xachshadow.html +share/gimp/1.2/help/C/filters/xachvision.html +share/gimp/1.2/help/C/filters/xwd.html +share/gimp/1.2/help/C/filters/zealouscrop.html +share/gimp/1.2/help/C/gimp_license.html +share/gimp/1.2/help/C/gimp_remote.html +share/gimp/1.2/help/C/gimptool.html +share/gimp/1.2/help/C/glossary.html +share/gimp/1.2/help/C/image/dialogs +share/gimp/1.2/help/C/image/edit/clear.html +share/gimp/1.2/help/C/image/edit/copy.html +share/gimp/1.2/help/C/image/edit/cut.html +share/gimp/1.2/help/C/image/edit/dialogs +share/gimp/1.2/help/C/image/edit/fill.html +share/gimp/1.2/help/C/image/edit/paste.html +share/gimp/1.2/help/C/image/edit/paste_as_new.html +share/gimp/1.2/help/C/image/edit/paste_into.html +share/gimp/1.2/help/C/image/edit/redo.html +share/gimp/1.2/help/C/image/edit/stroke.html +share/gimp/1.2/help/C/image/edit/undo.html +share/gimp/1.2/help/C/image/file +share/gimp/1.2/help/C/image/filters +share/gimp/1.2/help/C/image/image/colors/auto/equalize.html +share/gimp/1.2/help/C/image/image/colors/desaturate.html +share/gimp/1.2/help/C/image/image/colors/invert.html +share/gimp/1.2/help/C/image/image/dialogs +share/gimp/1.2/help/C/image/image/duplicate.html +share/gimp/1.2/help/C/image/image/mode/convert_to_grayscale.html +share/gimp/1.2/help/C/image/image/mode/convert_to_rgb.html +share/gimp/1.2/help/C/image/image/mode/dialogs +share/gimp/1.2/help/C/image/image/transforms/dialogs +share/gimp/1.2/help/C/image/image_window.html +share/gimp/1.2/help/C/image/index.html +share/gimp/1.2/help/C/image/layers +share/gimp/1.2/help/C/image/select/all.html +share/gimp/1.2/help/C/image/select/dialogs +share/gimp/1.2/help/C/image/select/float.html +share/gimp/1.2/help/C/image/select/invert.html +share/gimp/1.2/help/C/image/select/none.html +share/gimp/1.2/help/C/image/select/save_to_channel.html +share/gimp/1.2/help/C/image/select/sharpen.html +share/gimp/1.2/help/C/image/toolbox +share/gimp/1.2/help/C/image/tools +share/gimp/1.2/help/C/image/view/dialogs +share/gimp/1.2/help/C/image/view/dot_for_dot.html +share/gimp/1.2/help/C/image/view/new_view.html +share/gimp/1.2/help/C/image/view/shrink_wrap.html +share/gimp/1.2/help/C/image/view/snap_to_guides.html +share/gimp/1.2/help/C/image/view/toggle_guides.html +share/gimp/1.2/help/C/image/view/toggle_rulers.html +share/gimp/1.2/help/C/image/view/toggle_selection.html +share/gimp/1.2/help/C/image/view/toggle_statusbar.html +share/gimp/1.2/help/C/image/view/zoom.html +share/gimp/1.2/help/C/images/add_point.png +share/gimp/1.2/help/C/images/anchor_layer.png +share/gimp/1.2/help/C/images/channel_to_selection.png +share/gimp/1.2/help/C/images/delete_channel.png +share/gimp/1.2/help/C/images/delete_directory.png +share/gimp/1.2/help/C/images/delete_layer.png +share/gimp/1.2/help/C/images/delete_path.png +share/gimp/1.2/help/C/images/dotted_square.png +share/gimp/1.2/help/C/images/duplicate_channel.png +share/gimp/1.2/help/C/images/duplicate_layer.png +share/gimp/1.2/help/C/images/duplicate_path.png +share/gimp/1.2/help/C/images/edit_point.png +share/gimp/1.2/help/C/images/examples/border-selection-01.png +share/gimp/1.2/help/C/images/examples/border-selection-02.png +share/gimp/1.2/help/C/images/eye.png +share/gimp/1.2/help/C/images/geezoom.png +share/gimp/1.2/help/C/images/glossary/modes-addition.png +share/gimp/1.2/help/C/images/glossary/modes-color.png +share/gimp/1.2/help/C/images/glossary/modes-darken.png +share/gimp/1.2/help/C/images/glossary/modes-difference.png +share/gimp/1.2/help/C/images/glossary/modes-dissolve.png +share/gimp/1.2/help/C/images/glossary/modes-divide.png +share/gimp/1.2/help/C/images/glossary/modes-hue.png +share/gimp/1.2/help/C/images/glossary/modes-lighten.png +share/gimp/1.2/help/C/images/glossary/modes-multiply.png +share/gimp/1.2/help/C/images/glossary/modes-normal.png +share/gimp/1.2/help/C/images/glossary/modes-normal2.png +share/gimp/1.2/help/C/images/glossary/modes-overlay.png +share/gimp/1.2/help/C/images/glossary/modes-saturation.png +share/gimp/1.2/help/C/images/glossary/modes-screen.png +share/gimp/1.2/help/C/images/glossary/modes-subtract.png +share/gimp/1.2/help/C/images/glossary/modes-value.png +share/gimp/1.2/help/C/images/image_menu.png +share/gimp/1.2/help/C/images/image_window.png +share/gimp/1.2/help/C/images/layers_dialog.png +share/gimp/1.2/help/C/images/layers_example.png +share/gimp/1.2/help/C/images/layers_menu.png +share/gimp/1.2/help/C/images/layers_overview.png +share/gimp/1.2/help/C/images/lower_channel.png +share/gimp/1.2/help/C/images/lower_directory.png +share/gimp/1.2/help/C/images/lower_layer.png +share/gimp/1.2/help/C/images/new_channel.png +share/gimp/1.2/help/C/images/new_directory.png +share/gimp/1.2/help/C/images/new_path.png +share/gimp/1.2/help/C/images/new_point.png +share/gimp/1.2/help/C/images/path_to_selection.png +share/gimp/1.2/help/C/images/preview_box.png +share/gimp/1.2/help/C/images/print_color.png +share/gimp/1.2/help/C/images/print_main.png +share/gimp/1.2/help/C/images/print_setup.png +share/gimp/1.2/help/C/images/raise_channel.png +share/gimp/1.2/help/C/images/raise_directory.png +share/gimp/1.2/help/C/images/raise_layer.png +share/gimp/1.2/help/C/images/red_square.png +share/gimp/1.2/help/C/images/remove_point.png +share/gimp/1.2/help/C/images/selection_to_path.png +share/gimp/1.2/help/C/images/stroke_path.png +share/gimp/1.2/help/C/images/tool_options.png +share/gimp/1.2/help/C/images/toolbox.png +share/gimp/1.2/help/C/images/tools/tool-opt-increment.png +share/gimp/1.2/help/C/images/tools/tool-opt-nonincrement.png +share/gimp/1.2/help/C/images/tools/tool_airbrush.png +share/gimp/1.2/help/C/images/tools/tool_apartheid.png +share/gimp/1.2/help/C/images/tools/tool_bezier.png +share/gimp/1.2/help/C/images/tools/tool_blend.png +share/gimp/1.2/help/C/images/tools/tool_burndodge.png +share/gimp/1.2/help/C/images/tools/tool_convolver.png +share/gimp/1.2/help/C/images/tools/tool_crop.png +share/gimp/1.2/help/C/images/tools/tool_dodgeburn.png +share/gimp/1.2/help/C/images/tools/tool_ellipse_sel.png +share/gimp/1.2/help/C/images/tools/tool_eraser.png +share/gimp/1.2/help/C/images/tools/tool_fill.png +share/gimp/1.2/help/C/images/tools/tool_flip.png +share/gimp/1.2/help/C/images/tools/tool_free_sel.png +share/gimp/1.2/help/C/images/tools/tool_fuzzy_sel.png +share/gimp/1.2/help/C/images/tools/tool_gradient.png +share/gimp/1.2/help/C/images/tools/tool_ink.png +share/gimp/1.2/help/C/images/tools/tool_measure.png +share/gimp/1.2/help/C/images/tools/tool_move.png +share/gimp/1.2/help/C/images/tools/tool_paintbrush.png +share/gimp/1.2/help/C/images/tools/tool_pencil.png +share/gimp/1.2/help/C/images/tools/tool_picker.png +share/gimp/1.2/help/C/images/tools/tool_rect_sel.png +share/gimp/1.2/help/C/images/tools/tool_scissors.png +share/gimp/1.2/help/C/images/tools/tool_smudge.png +share/gimp/1.2/help/C/images/tools/tool_smuge.png +share/gimp/1.2/help/C/images/tools/tool_text.png +share/gimp/1.2/help/C/images/tools/tool_transform.png +share/gimp/1.2/help/C/images/tools/tool_zoom.png +share/gimp/1.2/help/C/images/triangle.png +share/gimp/1.2/help/C/images/wilber.png +share/gimp/1.2/help/C/index.html +share/gimp/1.2/help/C/introduction.html +share/gimp/1.2/help/C/keyboard_shortcuts.html +share/gimp/1.2/help/C/layers/add_alpha_channel.html +share/gimp/1.2/help/C/layers/alpha_to_selection.html +share/gimp/1.2/help/C/layers/anchor_layer.html +share/gimp/1.2/help/C/layers/apply_mask.html +share/gimp/1.2/help/C/layers/delete_layer.html +share/gimp/1.2/help/C/layers/delete_mask.html +share/gimp/1.2/help/C/layers/dialogs +share/gimp/1.2/help/C/layers/duplicate_layer.html +share/gimp/1.2/help/C/layers/flatten_image.html +share/gimp/1.2/help/C/layers/index.html +share/gimp/1.2/help/C/layers/layer_to_image_size.html +share/gimp/1.2/help/C/layers/mask_to_selection.html +share/gimp/1.2/help/C/layers/merge_down.html +share/gimp/1.2/help/C/layers/stack/stack.html +share/gimp/1.2/help/C/layers/using_layers.html +share/gimp/1.2/help/C/ln7.html +share/gimp/1.2/help/C/main_interface.html +share/gimp/1.2/help/C/open/dialogs +share/gimp/1.2/help/C/open/filters +share/gimp/1.2/help/C/open/index.html +share/gimp/1.2/help/C/open/open_by_extension.html +share/gimp/1.2/help/C/paths/copy_path.html +share/gimp/1.2/help/C/paths/delete_path.html +share/gimp/1.2/help/C/paths/dialogs +share/gimp/1.2/help/C/paths/duplicate_path.html +share/gimp/1.2/help/C/paths/filters +share/gimp/1.2/help/C/paths/index.html +share/gimp/1.2/help/C/paths/new_path.html +share/gimp/1.2/help/C/paths/paste_path.html +share/gimp/1.2/help/C/paths/path_to_selection.html +share/gimp/1.2/help/C/paths/stroke_path.html +share/gimp/1.2/help/C/save/dialogs +share/gimp/1.2/help/C/save/filters +share/gimp/1.2/help/C/save/index.html +share/gimp/1.2/help/C/save/save_by_extension.html +share/gimp/1.2/help/C/stylesheet-images/note.gif +share/gimp/1.2/help/C/stylesheet-images/tip.gif +share/gimp/1.2/help/C/stylesheet-images/warning.gif +share/gimp/1.2/help/C/toolbox/dialogs +share/gimp/1.2/help/C/toolbox/file +share/gimp/1.2/help/C/toolbox/filters +share/gimp/1.2/help/C/toolbox/help/context_help.html +share/gimp/1.2/help/C/toolbox/help/dialogs +share/gimp/1.2/help/C/toolbox/help/filters +share/gimp/1.2/help/C/toolbox/index.html +share/gimp/1.2/help/C/toolbox/toolbox.html +share/gimp/1.2/help/C/tools/airbrush.html +share/gimp/1.2/help/C/tools/bezier_select.html +share/gimp/1.2/help/C/tools/blend.html +share/gimp/1.2/help/C/tools/brightness_contrast.html +share/gimp/1.2/help/C/tools/bucket_fill.html +share/gimp/1.2/help/C/tools/by_color_select.html +share/gimp/1.2/help/C/tools/clone.html +share/gimp/1.2/help/C/tools/color_balance.html +share/gimp/1.2/help/C/tools/color_picker.html +share/gimp/1.2/help/C/tools/convolve.html +share/gimp/1.2/help/C/tools/crop.html +share/gimp/1.2/help/C/tools/curves.html +share/gimp/1.2/help/C/tools/dodgeburn.html +share/gimp/1.2/help/C/tools/ellipse_select.html +share/gimp/1.2/help/C/tools/eraser.html +share/gimp/1.2/help/C/tools/flip.html +share/gimp/1.2/help/C/tools/free_select.html +share/gimp/1.2/help/C/tools/fuzzy_select.html +share/gimp/1.2/help/C/tools/histogram.html +share/gimp/1.2/help/C/tools/hue_saturation.html +share/gimp/1.2/help/C/tools/index.html +share/gimp/1.2/help/C/tools/ink.html +share/gimp/1.2/help/C/tools/intelligent_scissors.html +share/gimp/1.2/help/C/tools/levels.html +share/gimp/1.2/help/C/tools/magnify.html +share/gimp/1.2/help/C/tools/measure.html +share/gimp/1.2/help/C/tools/move.html +share/gimp/1.2/help/C/tools/paintbrush.html +share/gimp/1.2/help/C/tools/pencil.html +share/gimp/1.2/help/C/tools/posterize.html +share/gimp/1.2/help/C/tools/rect_select.html +share/gimp/1.2/help/C/tools/smudge.html +share/gimp/1.2/help/C/tools/text.html +share/gimp/1.2/help/C/tools/threshold.html +share/gimp/1.2/help/C/tools/transform.html +share/gimp/1.2/help/C/using_gimp.html +share/gimp/1.2/help/C/why_gimp.html +share/gimp/1.2/palettes/Bears +share/gimp/1.2/palettes/Bgold +share/gimp/1.2/palettes/Blues +share/gimp/1.2/palettes/Borders +share/gimp/1.2/palettes/Browns_And_Yellows +share/gimp/1.2/palettes/Caramel +share/gimp/1.2/palettes/Cascade +share/gimp/1.2/palettes/China +share/gimp/1.2/palettes/Coldfire +share/gimp/1.2/palettes/Cool_Colors +share/gimp/1.2/palettes/Cranes +share/gimp/1.2/palettes/Dark_pastels +share/gimp/1.2/palettes/Default +share/gimp/1.2/palettes/Ega +share/gimp/1.2/palettes/Firecode +share/gimp/1.2/palettes/Gold +share/gimp/1.2/palettes/GrayViolet +share/gimp/1.2/palettes/Grayblue +share/gimp/1.2/palettes/Grays +share/gimp/1.2/palettes/Greens +share/gimp/1.2/palettes/Hilite +share/gimp/1.2/palettes/Kahki +share/gimp/1.2/palettes/Lights +share/gimp/1.2/palettes/Muted +share/gimp/1.2/palettes/Named_Colors +share/gimp/1.2/palettes/News3 +share/gimp/1.2/palettes/Op2 +share/gimp/1.2/palettes/Paintjet +share/gimp/1.2/palettes/Pastels +share/gimp/1.2/palettes/Plasma +share/gimp/1.2/palettes/Reds +share/gimp/1.2/palettes/Reds_And_Purples +share/gimp/1.2/palettes/Royal +share/gimp/1.2/palettes/Topographic +share/gimp/1.2/palettes/Visibone +share/gimp/1.2/palettes/Visibone2 +share/gimp/1.2/palettes/Volcano +share/gimp/1.2/palettes/Warm_Colors +share/gimp/1.2/palettes/Web +share/gimp/1.2/patterns/3dgreen.pat +share/gimp/1.2/patterns/Craters.pat +share/gimp/1.2/patterns/Moonfoot.pat +share/gimp/1.2/patterns/amethyst.pat +share/gimp/1.2/patterns/bark.pat +share/gimp/1.2/patterns/blue.pat +share/gimp/1.2/patterns/bluegrid.pat +share/gimp/1.2/patterns/bluesquares.pat +share/gimp/1.2/patterns/blueweb.pat +share/gimp/1.2/patterns/brick.pat +share/gimp/1.2/patterns/burlap.pat +share/gimp/1.2/patterns/burlwood.pat +share/gimp/1.2/patterns/choc_swirl.pat +share/gimp/1.2/patterns/corkboard.pat +share/gimp/1.2/patterns/cracked.pat +share/gimp/1.2/patterns/crinklepaper.pat +share/gimp/1.2/patterns/electric.pat +share/gimp/1.2/patterns/fibers.pat +share/gimp/1.2/patterns/granite1.pat +share/gimp/1.2/patterns/ground1.pat +share/gimp/1.2/patterns/ice.pat +share/gimp/1.2/patterns/java.pat +share/gimp/1.2/patterns/leather.pat +share/gimp/1.2/patterns/leaves.pat +share/gimp/1.2/patterns/leopard.pat +share/gimp/1.2/patterns/lightning.pat +share/gimp/1.2/patterns/marble1.pat +share/gimp/1.2/patterns/marble2.pat +share/gimp/1.2/patterns/marble3.pat +share/gimp/1.2/patterns/nops.pat +share/gimp/1.2/patterns/paper.pat +share/gimp/1.2/patterns/parque1.pat +share/gimp/1.2/patterns/parque2.pat +share/gimp/1.2/patterns/parque3.pat +share/gimp/1.2/patterns/pastel.pat +share/gimp/1.2/patterns/pine.pat +share/gimp/1.2/patterns/pink_marble.pat +share/gimp/1.2/patterns/pool.pat +share/gimp/1.2/patterns/qube1.pat +share/gimp/1.2/patterns/rain.pat +share/gimp/1.2/patterns/recessed.pat +share/gimp/1.2/patterns/redcube.pat +share/gimp/1.2/patterns/rock.pat +share/gimp/1.2/patterns/sky.pat +share/gimp/1.2/patterns/slate.pat +share/gimp/1.2/patterns/sm_squares.pat +share/gimp/1.2/patterns/starfield.pat +share/gimp/1.2/patterns/stone33.pat +share/gimp/1.2/patterns/terra.pat +share/gimp/1.2/patterns/walnut.pat +share/gimp/1.2/patterns/warning.pat +share/gimp/1.2/patterns/wood1.pat +share/gimp/1.2/patterns/wood2.pat +share/gimp/1.2/patterns/wood3.pat +share/gimp/1.2/patterns/wood4.pat +share/gimp/1.2/patterns/wood5.pat +share/gimp/1.2/scripts/3d-outline.scm +share/gimp/1.2/scripts/3dTruchet.scm +share/gimp/1.2/scripts/add-bevel.scm +share/gimp/1.2/scripts/addborder.scm +share/gimp/1.2/scripts/alien-glow-arrow.scm +share/gimp/1.2/scripts/alien-glow-bar.scm +share/gimp/1.2/scripts/alien-glow-bullet.scm +share/gimp/1.2/scripts/alien-glow-button.scm +share/gimp/1.2/scripts/alien-glow-logo.scm +share/gimp/1.2/scripts/alien-neon-logo.scm +share/gimp/1.2/scripts/asc2img.scm +share/gimp/1.2/scripts/basic1-logo.scm +share/gimp/1.2/scripts/basic2-logo.scm +share/gimp/1.2/scripts/beavis.jpg +share/gimp/1.2/scripts/beveled-button.scm +share/gimp/1.2/scripts/beveled-pattern-arrow.scm +share/gimp/1.2/scripts/beveled-pattern-bullet.scm +share/gimp/1.2/scripts/beveled-pattern-button.scm +share/gimp/1.2/scripts/beveled-pattern-heading.scm +share/gimp/1.2/scripts/beveled-pattern-hrule.scm +share/gimp/1.2/scripts/blend-anim.scm +share/gimp/1.2/scripts/blended-logo.scm +share/gimp/1.2/scripts/bovinated-logo.scm +share/gimp/1.2/scripts/camo.scm +share/gimp/1.2/scripts/carve-it.scm +share/gimp/1.2/scripts/carved-logo.scm +share/gimp/1.2/scripts/chalk.scm +share/gimp/1.2/scripts/chip-away.scm +share/gimp/1.2/scripts/chrome-it.scm +share/gimp/1.2/scripts/chrome-logo.scm +share/gimp/1.2/scripts/circuit.scm +share/gimp/1.2/scripts/clothify.scm +share/gimp/1.2/scripts/coffee.scm +share/gimp/1.2/scripts/comic-logo.scm +share/gimp/1.2/scripts/coolmetal-logo.scm +share/gimp/1.2/scripts/copy-visible.scm +share/gimp/1.2/scripts/crystal-logo.scm +share/gimp/1.2/scripts/distress_selection.scm +share/gimp/1.2/scripts/drop-shadow.scm +share/gimp/1.2/scripts/erase-rows.scm +share/gimp/1.2/scripts/fade-outline.scm +share/gimp/1.2/scripts/flatland.scm +share/gimp/1.2/scripts/font-map.scm +share/gimp/1.2/scripts/frosty-logo.scm +share/gimp/1.2/scripts/fuzzyborder.scm +share/gimp/1.2/scripts/gimp-headers.scm +share/gimp/1.2/scripts/gimp-labels.scm +share/gimp/1.2/scripts/glossy.scm +share/gimp/1.2/scripts/glowing-logo.scm +share/gimp/1.2/scripts/gradient-bevel-logo.scm +share/gimp/1.2/scripts/gradient-example.scm +share/gimp/1.2/scripts/grid-system.scm +share/gimp/1.2/scripts/hsv-graph.scm +share/gimp/1.2/scripts/i26-gunya2.scm +share/gimp/1.2/scripts/image-structure.scm +share/gimp/1.2/scripts/land.scm +share/gimp/1.2/scripts/lava.scm +share/gimp/1.2/scripts/line-nova.scm +share/gimp/1.2/scripts/mkbrush.scm +share/gimp/1.2/scripts/neon-logo.scm +share/gimp/1.2/scripts/news-text.scm +share/gimp/1.2/scripts/old_photo.scm +share/gimp/1.2/scripts/perspective-shadow.scm +share/gimp/1.2/scripts/predator.scm +share/gimp/1.2/scripts/pupi-button.scm +share/gimp/1.2/scripts/rendermap.scm +share/gimp/1.2/scripts/ripply-anim.scm +share/gimp/1.2/scripts/round-corners.scm +share/gimp/1.2/scripts/sel-to-anim-img.scm +share/gimp/1.2/scripts/select_to_brush.scm +share/gimp/1.2/scripts/select_to_image.scm +share/gimp/1.2/scripts/selection-round.scm +share/gimp/1.2/scripts/slide.scm +share/gimp/1.2/scripts/sota-chrome-logo.scm +share/gimp/1.2/scripts/speed-text.scm +share/gimp/1.2/scripts/sphere.scm +share/gimp/1.2/scripts/spinning_globe.scm +share/gimp/1.2/scripts/starburst-logo.scm +share/gimp/1.2/scripts/starscape-logo.scm +share/gimp/1.2/scripts/swirltile.scm +share/gimp/1.2/scripts/swirly-pattern.scm +share/gimp/1.2/scripts/t-o-p-logo.scm +share/gimp/1.2/scripts/text-circle.scm +share/gimp/1.2/scripts/texture.jpg +share/gimp/1.2/scripts/texture1.jpg +share/gimp/1.2/scripts/texture2.jpg +share/gimp/1.2/scripts/texture3.jpg +share/gimp/1.2/scripts/textured-logo.scm +share/gimp/1.2/scripts/tileblur.scm +share/gimp/1.2/scripts/title-header.scm +share/gimp/1.2/scripts/trochoid.scm +share/gimp/1.2/scripts/truchet.scm +share/gimp/1.2/scripts/unsharp-mask.scm +share/gimp/1.2/scripts/waves-anim.scm +share/gimp/1.2/scripts/weave.scm +share/gimp/1.2/scripts/web-browser.scm +share/gimp/1.2/scripts/xach-effect.scm +share/gimp/1.2/tips/gimp_conseils.fr.txt +share/gimp/1.2/tips/gimp_tips.cs.txt +share/gimp/1.2/tips/gimp_tips.da.txt +share/gimp/1.2/tips/gimp_tips.de.txt +share/gimp/1.2/tips/gimp_tips.es.txt +share/gimp/1.2/tips/gimp_tips.hu.txt +share/gimp/1.2/tips/gimp_tips.it.txt +share/gimp/1.2/tips/gimp_tips.ja.txt +share/gimp/1.2/tips/gimp_tips.ko.txt +share/gimp/1.2/tips/gimp_tips.lt.txt +share/gimp/1.2/tips/gimp_tips.pl.txt +share/gimp/1.2/tips/gimp_tips.ru.txt +share/gimp/1.2/tips/gimp_tips.tr.txt +share/gimp/1.2/tips/gimp_tips.txt +share/gimp/1.2/tips/gimp_tips.uk.txt +share/gimp/1.2/tips/gimp_tips.zh_CN.txt +share/gimp/1.2/tips/gimp_tips.zh_TW.txt +share/gimp/1.2/user_install +share/locale/ca/LC_MESSAGES/gimp-libgimp.mo +share/locale/ca/LC_MESSAGES/gimp-script-fu.mo +share/locale/ca/LC_MESSAGES/gimp-std-plugins.mo +share/locale/ca/LC_MESSAGES/gimp.mo +share/locale/cs/LC_MESSAGES/gimp-libgimp.mo +share/locale/cs/LC_MESSAGES/gimp-script-fu.mo +share/locale/cs/LC_MESSAGES/gimp-std-plugins.mo +share/locale/cs/LC_MESSAGES/gimp.mo +share/locale/da/LC_MESSAGES/gimp-libgimp.mo +share/locale/da/LC_MESSAGES/gimp-script-fu.mo +share/locale/da/LC_MESSAGES/gimp-std-plugins.mo +share/locale/da/LC_MESSAGES/gimp.mo +share/locale/de/LC_MESSAGES/gimp-libgimp.mo +share/locale/de/LC_MESSAGES/gimp-script-fu.mo +share/locale/de/LC_MESSAGES/gimp-std-plugins.mo +share/locale/de/LC_MESSAGES/gimp.mo +share/locale/el/LC_MESSAGES/gimp-libgimp.mo +share/locale/el/LC_MESSAGES/gimp-script-fu.mo +share/locale/el/LC_MESSAGES/gimp-std-plugins.mo +share/locale/el/LC_MESSAGES/gimp.mo +share/locale/en_GB/LC_MESSAGES/gimp-libgimp.mo +share/locale/en_GB/LC_MESSAGES/gimp-script-fu.mo +share/locale/en_GB/LC_MESSAGES/gimp-std-plugins.mo +share/locale/en_GB/LC_MESSAGES/gimp.mo +share/locale/es/LC_MESSAGES/gimp-libgimp.mo +share/locale/es/LC_MESSAGES/gimp-script-fu.mo +share/locale/es/LC_MESSAGES/gimp-std-plugins.mo +share/locale/es/LC_MESSAGES/gimp.mo +share/locale/fi/LC_MESSAGES/gimp-libgimp.mo +share/locale/fi/LC_MESSAGES/gimp-script-fu.mo +share/locale/fi/LC_MESSAGES/gimp-std-plugins.mo +share/locale/fi/LC_MESSAGES/gimp.mo +share/locale/fr/LC_MESSAGES/gimp-libgimp.mo +share/locale/fr/LC_MESSAGES/gimp-script-fu.mo +share/locale/fr/LC_MESSAGES/gimp-std-plugins.mo +share/locale/fr/LC_MESSAGES/gimp.mo +share/locale/ga/LC_MESSAGES/gimp-libgimp.mo +share/locale/ga/LC_MESSAGES/gimp-script-fu.mo +share/locale/ga/LC_MESSAGES/gimp-std-plugins.mo +share/locale/ga/LC_MESSAGES/gimp.mo +share/locale/gl/LC_MESSAGES/gimp-libgimp.mo +share/locale/gl/LC_MESSAGES/gimp-script-fu.mo +share/locale/gl/LC_MESSAGES/gimp-std-plugins.mo +share/locale/gl/LC_MESSAGES/gimp.mo +share/locale/hr/LC_MESSAGES/gimp-libgimp.mo +share/locale/hr/LC_MESSAGES/gimp-script-fu.mo +share/locale/hr/LC_MESSAGES/gimp-std-plugins.mo +share/locale/hr/LC_MESSAGES/gimp.mo +share/locale/hu/LC_MESSAGES/gimp-libgimp.mo +share/locale/hu/LC_MESSAGES/gimp-script-fu.mo +share/locale/hu/LC_MESSAGES/gimp-std-plugins.mo +share/locale/hu/LC_MESSAGES/gimp.mo +share/locale/it/LC_MESSAGES/gimp-libgimp.mo +share/locale/it/LC_MESSAGES/gimp-script-fu.mo +share/locale/it/LC_MESSAGES/gimp-std-plugins.mo +share/locale/it/LC_MESSAGES/gimp.mo +share/locale/ja/LC_MESSAGES/gimp-libgimp.mo +share/locale/ja/LC_MESSAGES/gimp-script-fu.mo +share/locale/ja/LC_MESSAGES/gimp-std-plugins.mo +share/locale/ja/LC_MESSAGES/gimp.mo +share/locale/ko/LC_MESSAGES/gimp-libgimp.mo +share/locale/ko/LC_MESSAGES/gimp-script-fu.mo +share/locale/ko/LC_MESSAGES/gimp-std-plugins.mo +share/locale/ko/LC_MESSAGES/gimp.mo +share/locale/lt/LC_MESSAGES/gimp-libgimp.mo +share/locale/lt/LC_MESSAGES/gimp-script-fu.mo +share/locale/lt/LC_MESSAGES/gimp-std-plugins.mo +share/locale/lt/LC_MESSAGES/gimp.mo +share/locale/nl/LC_MESSAGES/gimp-libgimp.mo +share/locale/nl/LC_MESSAGES/gimp-script-fu.mo +share/locale/nl/LC_MESSAGES/gimp-std-plugins.mo +share/locale/nl/LC_MESSAGES/gimp.mo +share/locale/nn/LC_MESSAGES/gimp-libgimp.mo +share/locale/nn/LC_MESSAGES/gimp-script-fu.mo +share/locale/nn/LC_MESSAGES/gimp-std-plugins.mo +share/locale/nn/LC_MESSAGES/gimp.mo +share/locale/no/LC_MESSAGES/gimp-libgimp.mo +share/locale/no/LC_MESSAGES/gimp-script-fu.mo +share/locale/no/LC_MESSAGES/gimp-std-plugins.mo +share/locale/no/LC_MESSAGES/gimp.mo +share/locale/pl/LC_MESSAGES/gimp-libgimp.mo +share/locale/pl/LC_MESSAGES/gimp-script-fu.mo +share/locale/pl/LC_MESSAGES/gimp-std-plugins.mo +share/locale/pl/LC_MESSAGES/gimp.mo +share/locale/pt_BR/LC_MESSAGES/gimp-libgimp.mo +share/locale/pt_BR/LC_MESSAGES/gimp-script-fu.mo +share/locale/pt_BR/LC_MESSAGES/gimp-std-plugins.mo +share/locale/pt_BR/LC_MESSAGES/gimp.mo +share/locale/ru/LC_MESSAGES/gimp-libgimp.mo +share/locale/ru/LC_MESSAGES/gimp-script-fu.mo +share/locale/ru/LC_MESSAGES/gimp-std-plugins.mo +share/locale/ru/LC_MESSAGES/gimp.mo +share/locale/ro/LC_MESSAGES/gimp-libgimp.mo +share/locale/ro/LC_MESSAGES/gimp-script-fu.mo +share/locale/ro/LC_MESSAGES/gimp-std-plugins.mo +share/locale/ro/LC_MESSAGES/gimp.mo +share/locale/sk/LC_MESSAGES/gimp-libgimp.mo +share/locale/sk/LC_MESSAGES/gimp-script-fu.mo +share/locale/sk/LC_MESSAGES/gimp-std-plugins.mo +share/locale/sk/LC_MESSAGES/gimp.mo +share/locale/sv/LC_MESSAGES/gimp-libgimp.mo +share/locale/sv/LC_MESSAGES/gimp-script-fu.mo +share/locale/sv/LC_MESSAGES/gimp-std-plugins.mo +share/locale/sv/LC_MESSAGES/gimp.mo +share/locale/tr/LC_MESSAGES/gimp-libgimp.mo +share/locale/tr/LC_MESSAGES/gimp-script-fu.mo +share/locale/tr/LC_MESSAGES/gimp-std-plugins.mo +share/locale/tr/LC_MESSAGES/gimp.mo +share/locale/uk/LC_MESSAGES/gimp-libgimp.mo +share/locale/uk/LC_MESSAGES/gimp-script-fu.mo +share/locale/uk/LC_MESSAGES/gimp-std-plugins.mo +share/locale/uk/LC_MESSAGES/gimp.mo +share/locale/zh_CN/LC_MESSAGES/gimp-libgimp.mo +share/locale/zh_CN/LC_MESSAGES/gimp-script-fu.mo +share/locale/zh_CN/LC_MESSAGES/gimp-std-plugins.mo +share/locale/zh_CN/LC_MESSAGES/gimp.mo +share/locale/zh_TW/LC_MESSAGES/gimp-libgimp.mo +share/locale/zh_TW/LC_MESSAGES/gimp-script-fu.mo +share/locale/zh_TW/LC_MESSAGES/gimp-std-plugins.mo +share/locale/zh_TW/LC_MESSAGES/gimp.mo +@dirrm share/gimp/1.2/tips +@dirrm share/gimp/1.2/scripts +@dirrm share/gimp/1.2/patterns +@dirrm share/gimp/1.2/palettes +@dirrm share/gimp/1.2/help/C/tools +@dirrm share/gimp/1.2/help/C/toolbox/help +@dirrm share/gimp/1.2/help/C/toolbox +@dirrm share/gimp/1.2/help/C/save +@dirrm share/gimp/1.2/help/C/paths +@dirrm share/gimp/1.2/help/C/open +@dirrm share/gimp/1.2/help/C/layers/stack +@dirrm share/gimp/1.2/help/C/layers +@dirrm share/gimp/1.2/help/C/images/examples +@dirrm share/gimp/1.2/help/C/images/glossary +@dirrm share/gimp/1.2/help/C/images/tools +@dirrm share/gimp/1.2/help/C/images +@dirrm share/gimp/1.2/help/C/image/view +@dirrm share/gimp/1.2/help/C/image/select +@dirrm share/gimp/1.2/help/C/image/image/transforms +@dirrm share/gimp/1.2/help/C/image/image/mode +@dirrm share/gimp/1.2/help/C/image/image/colors/auto +@dirrm share/gimp/1.2/help/C/image/image/colors +@dirrm share/gimp/1.2/help/C/image/image +@dirrm share/gimp/1.2/help/C/image/edit +@dirrm share/gimp/1.2/help/C/image +@dirrm share/gimp/1.2/help/C/filters +@dirrm share/gimp/1.2/help/C/file +@dirrm share/gimp/1.2/help/C/dialogs/preferences +@dirrm share/gimp/1.2/help/C/dialogs/paths +@dirrm share/gimp/1.2/help/C/dialogs/palette_editor +@dirrm share/gimp/1.2/help/C/dialogs/layers +@dirrm share/gimp/1.2/help/C/dialogs/gradient_editor +@dirrm share/gimp/1.2/help/C/dialogs/color_selectors +@dirrm share/gimp/1.2/help/C/dialogs/channels +@dirrm share/gimp/1.2/help/C/dialogs +@dirrm share/gimp/1.2/help/C/channels +@dirrm share/gimp/1.2/help/C/stylesheet-images +@dirrm share/gimp/1.2/help/C +@dirrm share/gimp/1.2/help +@dirrm share/gimp/1.2/gradients +@dirrm share/gimp/1.2/gimpressionist/Presets +@dirrm share/gimp/1.2/gimpressionist/Paper +@dirrm share/gimp/1.2/gimpressionist/Brushes +@dirrm share/gimp/1.2/gimpressionist +@dirrm share/gimp/1.2/gflare +@dirrm share/gimp/1.2/gfig +@dirrm share/gimp/1.2/fractalexplorer +@dirrm share/gimp/1.2/devel-docs/html/libgimp +@dirrm share/gimp/1.2/devel-docs/html +@dirrm share/gimp/1.2/devel-docs +@dirrm share/gimp/1.2/brushes +@dirrm share/gimp/1.2 +@dirrm share/gimp +@unexec ${RMDIR} %D/share/aclocal 2>/dev/null || true +@dirrm lib/gimp/1.2/plug-ins +@dirrm lib/gimp/1.2/modules +@dirrm lib/gimp/1.2 +@dirrm lib/gimp +@dirrm include/libgimp +@dirrm include/gck +@dirrm etc/gimp/1.2 +@dirrm etc/gimp +@exec test %D = ${LOCALBASE} || ln -s %D/share/aclocal/gimp.m4 ${LOCALBASE}/share/aclocal/gimp.m4 +@unexec test %D = ${LOCALBASE} || ${RM} ${LOCALBASE}/share/aclocal/gimp.m4 diff --git a/graphics/gimp-base/buildlink.mk b/graphics/gimp-base/buildlink.mk new file mode 100644 index 00000000000..54d7508f0a5 --- /dev/null +++ b/graphics/gimp-base/buildlink.mk @@ -0,0 +1,56 @@ +# $NetBSD: buildlink.mk,v 1.1.1.1 2002/02/15 20:52:36 drochner Exp $ +# +# This Makefile fragment is included by packages that use gtk. +# +# To use this Makefile fragment, simply: +# +# (1) Optionally define BUILDLINK_DEPENDS.gtk to the dependency pattern +# for the version of gtk desired. +# (2) Include this Makefile fragment in the package Makefile, +# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header +# search path, and +# (4) Add ${BUILDLINK_DIR}/lib to the front of the linker's library search +# path. + +.if !defined(GIMPBASE_BUILDLINK_MK) +GIMPBASE_BUILDLINK_MK= # defined + +.include "../../mk/bsd.buildlink.mk" + +BUILDLINK_DEPENDS.gimpbase?= gimp-base>=1.2.3 +DEPENDS+= ${BUILDLINK_DEPENDS.gimpbase}:../../graphics/gimp-base + +EVAL_PREFIX+= BUILDLINK_PREFIX.gimpbase=gimp-base +BUILDLINK_PREFIX.gimpbase_DEFAULT= ${X11PREFIX} +BUILDLINK_FILES.gimpbase= include/libgimp/* +BUILDLINK_FILES.gimpbase+= lib/libgimp.* +BUILDLINK_FILES.gimpbase+= lib/libgimpui.* + +.include "../../devel/glib/buildlink.mk" +.include "../../x11/gtk/buildlink.mk" + +BUILDLINK_TARGETS.gimpbase= gimpbase-buildlink +BUILDLINK_TARGETS.gimpbase+= gimpbase-buildlink-config-wrapper +BUILDLINK_TARGETS.gimpbase+= gimptool-buildlink-config-wrapper +BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.gimpbase} + +BUILDLINK_CONFIG.gimpbase= ${BUILDLINK_PREFIX.gimpbase}/bin/gimp-config +BUILDLINK_CONFIG_WRAPPER.gimpbase= ${BUILDLINK_DIR}/bin/gimp-config +BUILDLINK_CONFIG.gimptool= ${BUILDLINK_PREFIX.gimpbase}/bin/gimptool +BUILDLINK_CONFIG_WRAPPER.gimptool= ${BUILDLINK_DIR}/bin/gimptool +REPLACE_BUILDLINK_SED+= \ + -e "s|${BUILDLINK_CONFIG_WRAPPER.gimpbase}|${BUILDLINK_CONFIG.gimpbase}|g" +REPLACE_BUILDLINK_SED+= \ + -e "s|${BUILDLINK_CONFIG_WRAPPER.gimptool}|${BUILDLINK_CONFIG.gimptool}|g" + +.if defined(USE_CONFIG_WRAPPER) +GIMPTOOL?= ${BUILDLINK_CONFIG_WRAPPER.gimptool} +CONFIGURE_ENV+= GIMPTOOL="${GIMPTOOL}" +.endif + +pre-configure: ${BUILDLINK_TARGETS.gimpbase} +gimpbase-buildlink: _BUILDLINK_USE +gimpbase-buildlink-config-wrapper: _BUILDLINK_CONFIG_WRAPPER_USE +gimptool-buildlink-config-wrapper: _BUILDLINK_CONFIG_WRAPPER_USE + +.endif # GIMPBASE_BUILDLINK_MK diff --git a/graphics/gimp-base/distinfo b/graphics/gimp-base/distinfo new file mode 100644 index 00000000000..421e61716e3 --- /dev/null +++ b/graphics/gimp-base/distinfo @@ -0,0 +1,9 @@ +$NetBSD: distinfo,v 1.1.1.1 2002/02/15 20:52:36 drochner Exp $ + +SHA1 (gimp-1.2.3.tar.bz2) = 3cb2686fcdc7995888b76d175e1c7bc33b2b4707 +Size (gimp-1.2.3.tar.bz2) = 10795020 bytes +SHA1 (gimp-data-extras-1.2.0.tar.bz2) = 93e966544a4f507e2b9045e0cc0745bd0ae1ee81 +Size (gimp-data-extras-1.2.0.tar.bz2) = 4432926 bytes +SHA1 (patch-aa) = 2d2f7ce110822522314aebfd86c06ebcbdbabb9d +SHA1 (patch-ab) = fd8dcdaffc70e4fc905f98d1af82b2ee13e3eed1 +SHA1 (patch-ac) = 1534c73e3fe0144f38c633663e46bdf622c3bd65 diff --git a/graphics/gimp-base/files/pdb_self_doc.c b/graphics/gimp-base/files/pdb_self_doc.c new file mode 100644 index 00000000000..4817095126a --- /dev/null +++ b/graphics/gimp-base/files/pdb_self_doc.c @@ -0,0 +1,180 @@ +/* $NetBSD: pdb_self_doc.c,v 1.1.1.1 2002/02/15 20:52:36 drochner Exp $ */ + +/* + * C version of pdb_self_doc.el, makes some assumptions about the structure + * of the pdb_dump file. + * + * Author: Todd Vierling + * Copyright: Do whatever you want with this code. I offer no guarantee or + * warranty of any kind. + */ + +#include +#ifdef __NetBSD__ +#include +#endif +#include +#include +#include + +#ifndef __NetBSD__ +#include +void errx (int rc, char *fmt,...) +{ + va_list ap; + + va_start (ap, fmt); + fputs ("pdb_self_doc: ", stderr); + vfprintf (stderr, fmt, ap); + exit (rc); +} +#endif + +int depth, line; + +static struct ioarg { + struct ioarg *next; + char *hlist[3]; +} **curioargs, *curioarg; + +static struct procedure { + char *hlist[7]; + struct ioarg *iargs; + struct ioarg *oargs; +} procs[800], *curproc; + +static char **hlist; + +int hnum, hmax, inum, onum, iomode; +int nprocs; + +#define wsspan(p) strspn(p, " \t\r\n") + +static char *strndup(const char *x, int len) { + char *p = malloc(len + 1); + strncpy(p, x, len); + p[len] = 0; + return p; +} + +static int proccompar(const void *a, const void *b) { + return strcmp(((struct procedure *)a)->hlist[0], + ((struct procedure *)b)->hlist[0]); +} + +int main(int argc, char **argv) { + char buf[65536], *p; + int i; + + while (fgets(buf, 65536, stdin)) { + line++; + p = buf + wsspan(buf); + + while (*p) { + if (*p == '(') { + depth++; + p++; + if (!curproc && depth > 1) + errx(1, "depth > 1 without register-procedure on line %d\n", line); + if (depth > 3) + errx(1, "depth > 3 on line %d\n", line); + if (depth == 1) { + hnum = 0; + hmax = 7; + } else if (depth == 2) { + hmax = 3; + if (++iomode > 1) + curioargs = &curproc->oargs; + else + curioargs = &curproc->iargs; + } else if (depth == 3) { + struct ioarg *arg = calloc(1, sizeof(*arg)); + *curioargs = curioarg = arg; + curioargs = &arg->next; + hnum = 0; + hlist = arg->hlist; + } + } else if (*p == ')') { + depth--; + p++; + if (depth == 0) { + hnum = hmax = inum = onum = iomode = 0; + curproc = NULL; + hlist = NULL; + } else if (depth == 1) { + curioargs = NULL; + } else if (depth == 2) { + curioarg = NULL; + } + } else if (*p == '\"') { + char *eq = ++p, *neq; + + if ((depth != 1) && (depth != 3)) + errx(1, "string with depth != 1 or 3 on line %d: %s\n", line, --p); + if (!curproc) + errx(1, "string without register-procedure on line %d\n", line); + if (hnum >= hmax) + errx(1, "too many strings on line %d\n", line); + + while ((neq = strchr(eq, '\"')) && (neq > p) && (neq[-1] == '\\')) { + strcpy(neq - 1, neq); + eq = neq; + } + if (!neq) { + --p; + if (!fgets(buf + strlen(buf), 65536 - strlen(buf), stdin)) + errx(1, "EOF in string at line %d\n", line); + continue; + } + + hlist[hnum++] = strndup(p, neq - p); + p = ++neq; + } else if (!strncmp(p, "register-procedure", 18)) { + if (depth != 1) + errx(1, "register-procedure at depth %d, line %d\n", depth, line); + p += 18; + curproc = &procs[nprocs++]; + hlist = curproc->hlist; + } else { + errx(1, "unknown token on line: %s\n", line, p); + } + p += wsspan(p); + } + } + + qsort(procs, nprocs, sizeof(procs[0]), proccompar); + + for (i = 0; i < nprocs; i++) { + struct ioarg *arg; + + printf("@defun %s ", procs[i].hlist[0]); + for (arg = procs[i].iargs; arg; arg = arg->next) { + if (arg->next) + printf("%s, ", arg->hlist[0]); + else + printf("%s", arg->hlist[0]); + } + printf("\n%s--@strong{%s}", procs[i].hlist[2], procs[i].hlist[6]); + if (procs[i].iargs) { + puts("\n\n@strong{Inputs}\n@itemize @bullet"); + for (arg = procs[i].iargs; arg; arg = arg->next) { + arg->hlist[2][0] = toupper(arg->hlist[2][0]); + printf("@item @emph{%s} (%s)--%s\n", arg->hlist[0], + arg->hlist[1], arg->hlist[2]); + } + puts("@end itemize"); + } + if (procs[i].oargs) { + puts("\n\n@strong{Outputs}\n@itemize @bullet"); + for (arg = procs[i].oargs; arg; arg = arg->next) { + arg->hlist[2][0] = toupper(arg->hlist[2][0]); + printf("@item @emph{%s} (%s)--%s\n", arg->hlist[0], + arg->hlist[1], arg->hlist[2]); + } + puts("@end itemize"); + } + printf("@end defun\n@emph{%s}\n\n", procs[i].hlist[3]); + } + + return 0; +} diff --git a/graphics/gimp-base/patches/patch-aa b/graphics/gimp-base/patches/patch-aa new file mode 100644 index 00000000000..3e0776872d3 --- /dev/null +++ b/graphics/gimp-base/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.1.1.1 2002/02/15 20:52:36 drochner Exp $ + +--- plug-ins/common/Makefile.in.orig Wed Feb 13 17:04:38 2002 ++++ plug-ins/common/Makefile.in Wed Feb 13 17:07:56 2002 +@@ -509,7 +509,7 @@ + gradmap_SOURCES = gradmap.c + + +-gradmap_LDADD = $(top_builddir)/libgimp/libgimpui.la $(top_builddir)/libgimp/libgimp.la $(GLIB_LIBS) $(INTLLIBS) ++gradmap_LDADD = $(top_builddir)/libgimp/libgimpui.la -Wl,-R${X11BASE}/lib $(top_builddir)/libgimp/libgimp.la $(GLIB_LIBS) $(INTLLIBS) + + + grid_SOURCES = grid.c +@@ -581,7 +581,7 @@ + laplace_SOURCES = laplace.c + + +-laplace_LDADD = $(top_builddir)/libgimp/libgimpui.la $(top_builddir)/libgimp/libgimp.la $(GLIB_LIBS) $(INTLLIBS) ++laplace_LDADD = $(top_builddir)/libgimp/libgimpui.la -Wl,-R${X11BASE}/lib $(top_builddir)/libgimp/libgimp.la $(GLIB_LIBS) $(INTLLIBS) + + + lic_SOURCES = lic.c diff --git a/graphics/gimp-base/patches/patch-ab b/graphics/gimp-base/patches/patch-ab new file mode 100644 index 00000000000..64effe895e6 --- /dev/null +++ b/graphics/gimp-base/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1.1.1 2002/02/15 20:52:36 drochner Exp $ + +--- plug-ins/Makefile.in.orig Fri Feb 15 14:01:45 2002 ++++ plug-ins/Makefile.in Fri Feb 15 14:03:20 2002 +@@ -187,7 +187,7 @@ + @OS_WIN32_TRUE@TWAIN = twain + @OS_WIN32_TRUE@WINSNAP = winsnap + +-SUBDIRS = libgck dbbrowser script-fu $(GIMP_PERL) FractalExplorer Lighting MapObject bmp faxg3 fits flame fp gap gdyntext gfig gflare gfli gimpressionist $(HELPBROWSER) ifscompose imagemap maze mosaic pagecurl print rcm sgi sel2path $(TWAIN) $(WEBBROWSER) $(WINSNAP) xjt common ++SUBDIRS = libgck dbbrowser script-fu $(GIMP_PERL) FractalExplorer Lighting MapObject bmp faxg3 fits flame fp gap gdyntext gfig gflare gfli gimpressionist $(HELPBROWSER) ifscompose imagemap maze mosaic pagecurl rcm sgi sel2path $(TWAIN) $(WEBBROWSER) $(WINSNAP) xjt common + + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs + CONFIG_HEADER = ../config.h diff --git a/graphics/gimp-base/patches/patch-ac b/graphics/gimp-base/patches/patch-ac new file mode 100644 index 00000000000..1efe4d07532 --- /dev/null +++ b/graphics/gimp-base/patches/patch-ac @@ -0,0 +1,41 @@ +$NetBSD: patch-ac,v 1.1.1.1 2002/02/15 20:52:36 drochner Exp $ + +--- gimptool-1.2.in.orig Fri Feb 15 17:38:29 2002 ++++ gimptool-1.2.in Fri Feb 15 17:41:42 2002 +@@ -90,16 +90,16 @@ + fi + + if test x${GTK_CONFIG+set} != xset ; then +- gtk_cflags='@GTK_CFLAGS@' +- gtk_libs='@GTK_LIBS@' ++ gtk_cflags='@ORIG_GTK_CFLAGS@' ++ gtk_libs='@ORIG_GTK_LIBS@' + else + gtk_cflags=`$GTK_CONFIG --cflags` + gtk_libs=`$GTK_CONFIG --libs` + fi + + if test x${GLIB_CONFIG+set} != xset ; then +- glib_cflags='@GLIB_CFLAGS@' +- glib_libs='@GLIB_LIBS@' ++ glib_cflags='@ORIG_GLIB_CFLAGS@' ++ glib_libs='@ORIG_GLIB_LIBS@' + else + glib_cflags=`$GLIB_CONFIG --cflags` + glib_libs=`$GLIB_CONFIG --libs` +@@ -120,13 +120,13 @@ + fi + + if test x${CFLAGS+set} != xset ; then +- cflags='@CFLAGS@' ++ cflags='@ORIG_CFLAGS@' + else + cflags="$CFLAGS" + fi + + if test x${LDFLAGS+set} != xset ; then +- ldflags='@LDFLAGS@' ++ ldflags='@ORIG_LDFLAGS@' + else + ldflags="$LDFLAGS" + fi -- cgit v1.2.3