diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-02-27 08:21:46 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-02-27 08:21:46 +0800 |
commit | 7d6760551f211817c3ca2ecabce8712f4ea5ea9c (patch) | |
tree | 0ae6feacb5673ab88f6609e4caba81c06fce6b04 | |
parent | 1773d8036d0e925adddcdb17f846356030345695 (diff) | |
download | marcuscom-ports-7d6760551f211817c3ca2ecabce8712f4ea5ea9c.tar marcuscom-ports-7d6760551f211817c3ca2ecabce8712f4ea5ea9c.tar.gz marcuscom-ports-7d6760551f211817c3ca2ecabce8712f4ea5ea9c.tar.bz2 marcuscom-ports-7d6760551f211817c3ca2ecabce8712f4ea5ea9c.tar.lz marcuscom-ports-7d6760551f211817c3ca2ecabce8712f4ea5ea9c.tar.xz marcuscom-ports-7d6760551f211817c3ca2ecabce8712f4ea5ea9c.tar.zst marcuscom-ports-7d6760551f211817c3ca2ecabce8712f4ea5ea9c.zip |
Chase the poppler shared library bump.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@11928 df743ca5-7f9a-e211-a948-0013205c9059
30 files changed, 4498 insertions, 2 deletions
diff --git a/graphics/epdfview/Makefile b/graphics/epdfview/Makefile new file mode 100644 index 000000000..8e606242f --- /dev/null +++ b/graphics/epdfview/Makefile @@ -0,0 +1,58 @@ +# New ports collection makefile for: epdfview +# Date created: 2006/06/01 +# Whom: chinsan <chinsan.tw@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= epdfview +PORTVERSION= 0.1.6 +PORTREVISION= 8 +CATEGORIES= graphics print gnome +MASTER_SITES= http://trac.emma-soft.com/epdfview/chrome/site/releases/ \ + LOCAL/chinsan + +MAINTAINER= chinsan@FreeBSD.org +COMMENT= A lightweight PDF document viewer + +BUILD_DEPENDS= cppunit-config:${PORTSDIR}/devel/cppunit +LIB_DEPENDS= poppler-glib.4:${PORTSDIR}/graphics/poppler-gtk + +USE_BZIP2= yes +GNU_CONFIGURE= yes +INSTALLS_ICONS= yes +USE_ICONV= yes +USE_GMAKE= yes +USE_GNOME= gtk20 intlhack +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +OPTIONS= CUPS "Use cups printing system" off \ + NLS "Native language support" on + +.include <bsd.port.pre.mk> + +.if defined(WITH_CUPS) +CONFIGURE_ARGS+=--with-cups +LIB_DEPENDS+= cups.2:${PORTSDIR}/print/cups-base +.else +CONFIGURE_ARGS+=--without-cups +.endif + +.if !defined(WITHOUT_NLS) +USE_GETTEXT= yes +PLIST_SUB+= NLS="" +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" +.else +CONFIGURE_ARGS+=--disable-nls +PLIST_SUB+= NLS="@comment " +.endif + +post-install: + ${MKDIR} ${PREFIX}/share/applications + ${INSTALL_DATA} ${WRKSRC}/data/${PORTNAME}.desktop ${PREFIX}/share/applications/ + @-update-desktop-database + +.include <bsd.port.post.mk> diff --git a/graphics/epdfview/distinfo b/graphics/epdfview/distinfo new file mode 100644 index 000000000..8485b77dd --- /dev/null +++ b/graphics/epdfview/distinfo @@ -0,0 +1,3 @@ +MD5 (epdfview-0.1.6.tar.bz2) = cce9edb41b4a8308e0ef0eea24b5a1ab +SHA256 (epdfview-0.1.6.tar.bz2) = 61d041afc953e0570ddae934179e92edf800f69f043d78058073806504e4137f +SIZE (epdfview-0.1.6.tar.bz2) = 406037 diff --git a/graphics/epdfview/files/patch-PrintPtr.cxx b/graphics/epdfview/files/patch-PrintPtr.cxx new file mode 100644 index 000000000..48eb6f84a --- /dev/null +++ b/graphics/epdfview/files/patch-PrintPtr.cxx @@ -0,0 +1,103 @@ +diff -Naur ./src/PrintPter.cxx ../epdfview-0.1.6/src/PrintPter.cxx +--- ./src/PrintPter.cxx 2008-08-28 15:27:16.000000000 +0200 ++++ ../epdfview-0.1.6/src/PrintPter.cxx 2008-08-28 15:27:32.000000000 +0200 +@@ -230,20 +230,27 @@ + ppdFindOption (printerPPD, "PageSize"); + view.clearPageSizeList (); + int pageSizeToSelect = 0; +- ppd_choice_t *pageSizeChoice = pageSizeOption->choices; +- for ( int currentSize = 0 ; +- currentSize < pageSizeOption->num_choices ; +- ++currentSize, ++pageSizeChoice ) ++ if ( 0 != pageSizeOption ) + { +- const gchar *sizeName = pageSizeChoice->text; +- const gchar *sizeValue = pageSizeChoice->choice; +- +- view.addPageSize (_(sizeName), sizeValue); +- if ( pageSizeChoice->marked ) ++ ppd_choice_t *pageSizeChoice = pageSizeOption->choices; ++ for ( int currentSize = 0 ; ++ currentSize < pageSizeOption->num_choices ; ++ ++currentSize, ++pageSizeChoice ) + { +- pageSizeToSelect = currentSize; ++ const gchar *sizeName = pageSizeChoice->text; ++ const gchar *sizeValue = pageSizeChoice->choice; ++ ++ view.addPageSize (_(sizeName), sizeValue); ++ if ( pageSizeChoice->marked ) ++ { ++ pageSizeToSelect = currentSize; ++ } + } + } ++ else ++ { ++ view.addPageSize (_("A4"), "A4"); ++ } + view.selectPageSize (pageSizeToSelect); + + // Get the resolutions. +@@ -251,29 +258,36 @@ + ppdFindOption (printerPPD, "Resolution"); + view.clearResolutionList (); + int resolutionToSelect = 0; +- ppd_choice_t *resolutionChoice = resolutionOption->choices; +- for ( int currentRes = 0 ; +- currentRes < resolutionOption->num_choices ; +- ++currentRes, ++resolutionChoice ) ++ if ( 0 != resolutionOption ) + { +- const gchar *resName = resolutionChoice->text; +- const gchar *resValue = resolutionChoice->choice; +- +- view.addResolution (_(resName), resValue); +- if ( resolutionChoice->marked ) ++ ppd_choice_t *resolutionChoice = resolutionOption->choices; ++ for ( int currentRes = 0 ; ++ currentRes < resolutionOption->num_choices ; ++ ++currentRes, ++resolutionChoice ) + { +- resolutionToSelect = currentRes; ++ const gchar *resName = resolutionChoice->text; ++ const gchar *resValue = resolutionChoice->choice; ++ ++ view.addResolution (_(resName), resValue); ++ if ( resolutionChoice->marked ) ++ { ++ resolutionToSelect = currentRes; ++ } + } + } ++ else ++ { ++ view.addResolution (_("300 DPI"), "300x300dpi"); ++ } + view.selectResolution (resolutionToSelect); + + // Get the color models. + ppd_option_t *colorModelOption = + ppdFindOption (printerPPD, "ColorModel"); + view.clearColorModelList (); ++ int colorModelToSelect = 0; + if ( NULL != colorModelOption ) + { +- int colorModelToSelect = 0; + ppd_choice_t *colorModelChoice = colorModelOption->choices; + for ( int currentColor = 0 ; + currentColor < colorModelOption->num_choices ; +@@ -288,12 +302,12 @@ + colorModelToSelect = currentColor; + } + } +- view.selectColorModel (colorModelToSelect); + } + else + { + view.addColorModel (_("Grayscale"), "Gray"); + } ++ view.selectColorModel (colorModelToSelect); + ppdClose (printerPPD); + } + } diff --git a/graphics/epdfview/pkg-descr b/graphics/epdfview/pkg-descr new file mode 100644 index 000000000..8f6a402a7 --- /dev/null +++ b/graphics/epdfview/pkg-descr @@ -0,0 +1,7 @@ +ePDFView is a free lightweight PDF document viewer using Poppler and GTK+ +libraries. + +The aim of ePDFView is to make a simple PDF document viewer, in the lines of +Evince but without using the Gnome libraries. + +WWW: http://www.emma-soft.com/projects/epdfview/ diff --git a/graphics/epdfview/pkg-plist b/graphics/epdfview/pkg-plist new file mode 100644 index 000000000..f31c126a0 --- /dev/null +++ b/graphics/epdfview/pkg-plist @@ -0,0 +1,25 @@ +bin/epdfview +%%NLS%%share/locale/ca/LC_MESSAGES/epdfview.mo +%%NLS%%share/locale/de/LC_MESSAGES/epdfview.mo +%%NLS%%share/locale/el/LC_MESSAGES/epdfview.mo +%%NLS%%share/locale/es/LC_MESSAGES/epdfview.mo +%%NLS%%share/locale/fr/LC_MESSAGES/epdfview.mo +%%NLS%%share/locale/pl/LC_MESSAGES/epdfview.mo +%%NLS%%share/locale/ru/LC_MESSAGES/epdfview.mo +%%NLS%%share/locale/vi/LC_MESSAGES/epdfview.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/epdfview.mo +share/applications/epdfview.desktop +%%DATADIR%%/pixmaps/icon_epdfview-24.png +%%DATADIR%%/pixmaps/icon_epdfview-32.png +%%DATADIR%%/pixmaps/icon_epdfview-48.png +%%DATADIR%%/pixmaps/stock_find_next_24.png +%%DATADIR%%/pixmaps/stock_find_previous_24.png +%%DATADIR%%/pixmaps/stock_rotate-90.png +%%DATADIR%%/pixmaps/stock_rotate-270.png +%%DATADIR%%/pixmaps/stock_zoom-page-width.png +%%DATADIR%%/ui/epdfview-ui-print.xml +%%DATADIR%%/ui/epdfview-ui.xml +@dirrmtry share/applications +@dirrmtry %%DATADIR%%/pixmaps +@dirrmtry %%DATADIR%%/ui +@dirrmtry %%DATADIR%% diff --git a/graphics/evince/Makefile b/graphics/evince/Makefile index 7c8905f73..c720a799f 100644 --- a/graphics/evince/Makefile +++ b/graphics/evince/Makefile @@ -3,11 +3,12 @@ # Whom: Adam Weinberger <adamw@FreeBSD.org> # # $FreeBSD$ -# $MCom$ +# $MCom: ports/graphics/evince/Makefile,v 1.116 2009/02/21 13:30:00 kwm Exp $ # PORTNAME= evince PORTVERSION= 2.25.91 +PORTREVISION= 1 CATEGORIES= graphics print gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 @@ -15,7 +16,7 @@ DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= GNOME 2 multi-format document viewer -LIB_DEPENDS= poppler-glib.3:${PORTSDIR}/graphics/poppler-gtk \ +LIB_DEPENDS= poppler-glib.4:${PORTSDIR}/graphics/poppler-gtk \ spectre.1:${PORTSDIR}/print/libspectre USE_LDCONFIG= yes diff --git a/graphics/gimp-app/Makefile b/graphics/gimp-app/Makefile new file mode 100644 index 000000000..236ede96c --- /dev/null +++ b/graphics/gimp-app/Makefile @@ -0,0 +1,147 @@ +# New ports collection makefile for: The GIMP +# Date created: Mon Nov 18 21:28:43 CST 1996 +# Whom: erich@FreeBSD.org +# +# $FreeBSD: ports/graphics/gimp-app/Makefile,v 1.232 2009/02/24 01:33:06 marcus Exp $ +# $MCom: ports/graphics/gimp-app/Makefile,v 1.30 2009/01/04 22:16:26 marcus Exp $ +# + +PORTNAME= gimp-app +DISTVERSION= 2.6.5 +PORTREVISION?= 1 +PORTEPOCH?= 1 +CATEGORIES?= graphics gnome +MASTER_SITES= ftp://ftp.gimp.org/pub/%SUBDIR%/ \ + http://gimp.mirrors.hoobly.com/%SUBDIR%/ \ + http://ftp.gwdg.de/pub/misc/grafik/gimp/%SUBDIR%/ \ + ftp://ftp.fh-heilbronn.de/mirrors/ftp.gimp.org/%SUBDIR%/ \ + ftp://ftp.insync.net/pub/mirrors/ftp.gimp.org/%SUBDIR%/ \ + http://www.mirrorservice.org/sites/ftp.gimp.org/pub/%SUBDIR%/ \ + ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,graphics/%SUBDIR%,} +MASTER_SITE_SUBDIR= gimp/v${PORTVERSION:R} +DISTNAME= gimp-${DISTVERSION} + +MAINTAINER= gnome@FreeBSD.org +COMMENT= A GNU Image Manipulation Program + +BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes +LIB_DEPENDS= exif.12:${PORTSDIR}/graphics/libexif \ + wmf.2:${PORTSDIR}/graphics/libwmf \ + poppler-glib.4:${PORTSDIR}/graphics/poppler-gtk \ + aa.1:${PORTSDIR}/graphics/aalib \ + mng.1:${PORTSDIR}/graphics/libmng \ + png.5:${PORTSDIR}/graphics/png \ + jpeg.9:${PORTSDIR}/graphics/jpeg \ + tiff.4:${PORTSDIR}/graphics/tiff \ + lcms.1:${PORTSDIR}/graphics/lcms \ + gegl-0.0.20:${PORTSDIR}/graphics/gegl +RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes + +CONFLICTS= gimp-app-devel-[0-9]* + +USE_BZIP2= yes +USE_GETTEXT= yes +USE_XORG= xpm xmu xext +USE_GMAKE= yes +USE_AUTOTOOLS= libtool:15 +USE_GNOME+= gnomehack intltool intlhack gtk20 libartlgpl2 ltverhack \ + desktopfileutils librsvg2 +USE_LDCONFIG= yes +INSTALLS_ICONS= yes +LIBTOOLFLAGS= --disable-ltlibs --release-ignore +CONFIGURE_ARGS?=--with-html-dir=${PREFIX}/share/doc/gimp \ + --disable-gtk-doc \ + --without-print \ + --disable-python \ + --with-desktop-dir=${PREFIX}/share \ + --docdir=${PREFIX}/share/doc/gimp \ + --enable-default-binary \ + --without-gnomevfs +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" \ + GIMP_THREAD_LIBS=${PTHREAD_LIBS} + +.if !defined(GIMP_SLAVE) +WANT_GNOME= yes + +OPTIONS?= DEBUG "debugging" off \ + DBUS "D-BUS support" on \ + GVFS "Use GVFS for the URI plug-in" on \ + HELPBROWSER "internal help browser" on \ + MP "multiple processor support" off +.endif + +.include <bsd.port.pre.mk> + +.if defined(GIMP_SLAVE) +PKG_CONFIG?= ${LOCALBASE}/bin/pkg-config +GIMP_LIBS= `${PKG_CONFIG} --libs gimp-2.0` +GIMP_THUMB_LIBS=`${PKG_CONFIG} --libs gimpthumb-2.0` +GIMP_UI_LIBS= `${PKG_CONFIG} --libs gimpui-2.0` + +LIB_DEPENDS+= gimp-2.0.0:${PORTSDIR}/graphics/gimp-app + +.else + +MAN1+= gimp-2.6.1 gimptool-2.0.1 +MAN5+= gimprc-2.6.5 +MLINKS= gimp-2.6.1 gimp.1 \ + gimp-2.6.1 gimp-console-2.6.1 \ + gimp-console-2.6.1 gimp-console.1 \ + gimprc-2.6.5 gimprc.5 + +.if defined(WITH_DEBUG) +CONFIGURE_ARGS+= --enable-debug +.endif + +.if defined(WITH_MP) +CONFIGURE_ARGS+= --enable-mp +.else +CONFIGURE_ARGS+= --disable-mp +.endif + +.if ${HAVE_GNOME:Mgnomehier}!="" || defined(WITH_GNOME) +USE_GNOME+= desktopfileutils gnomehier +PLIST_SUB+= GNOME="" +.else +PLIST_SUB+= GNOME="@comment " +.endif + +.if defined(WITH_HELPBROWSER) +LIB_DEPENDS+= webkit-1.0.1:${PORTSDIR}/www/webkit-gtk2 +CONFIGURE_ARGS+= --with-webkit +PLIST_SUB+= HELPBROWSER="" +.else +CONFIGURE_ARGS+= --without-webkit +PLIST_SUB+= HELPBROWSER="@comment " +.endif + +.if defined(WITH_DBUS) +LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib +CONFIGURE_ARGS+= --with-dbus +.else +CONFIGURE_ARGS+= --without-dbus +.endif + +.if defined(WITH_GVFS) || ${HAVE_GNOME:Mgvfs}!="" +LIB_DEPENDS+= gnome-keyring.0:${PORTSDIR}/security/gnome-keyring +USE_GNOME+= gvfs +. if ${HAVE_GNOME:Mlibgnomeui}!="" +USE_GNOME+= libgnomeui +. endif +.endif + +.endif + +post-patch: + @${REINPLACE_CMD} -e 's|%%GIMP_LIBS%%|${GIMP_LIBS}|; \ + s|%%GIMP_THUMB_LIBS%%|${GIMP_THUMB_LIBS}|; \ + s|%%GIMP_UI_LIBS%%|${GIMP_UI_LIBS}|' \ + ${WRKSRC}/plug-ins/pygimp/Makefile.in + @${REINPLACE_CMD} -e 's|"libpng"|"libpng12"|' \ + ${WRKSRC}/configure + +post-install: + @-update-desktop-database + +.include <bsd.port.post.mk> diff --git a/graphics/gimp-app/distinfo b/graphics/gimp-app/distinfo new file mode 100644 index 000000000..f7185a1fa --- /dev/null +++ b/graphics/gimp-app/distinfo @@ -0,0 +1,3 @@ +MD5 (gimp-2.6.5.tar.bz2) = cd13050bc6bde6d8d8fd38eff6276033 +SHA256 (gimp-2.6.5.tar.bz2) = 6209081f5c29fc22e0d376367b017618f7afb0b179f994b16b4cc68106cbe521 +SIZE (gimp-2.6.5.tar.bz2) = 16043778 diff --git a/graphics/gimp-app/files/patch-configure b/graphics/gimp-app/files/patch-configure new file mode 100644 index 000000000..1a89a1cc2 --- /dev/null +++ b/graphics/gimp-app/files/patch-configure @@ -0,0 +1,23 @@ +--- configure.orig Thu Nov 23 15:16:53 2006 ++++ configure Sun Dec 31 19:29:32 2006 +@@ -29404,6 +29404,7 @@ + if test "x$enable_gtktest" = "xyes" ; then + ac_save_CFLAGS="$CFLAGS" + ac_save_LIBS="$LIBS" ++ GTK_LIBS="$GIMP_THREAD_LIBS $GTK_LIBS" + CFLAGS="$CFLAGS $GTK_CFLAGS" + LIBS="$GTK_LIBS $LIBS" + rm -f conf.gtktest +@@ -38514,9 +38515,9 @@ + fi + + +-gimpdatadir="$datadir/$PACKAGE/2.0" +-gimpplugindir="$libdir/$PACKAGE/2.0" +-gimpsysconfdir="$sysconfdir/$PACKAGE/2.0" ++gimpdatadir="$datadir/$PACKAGE" ++gimpplugindir="$libexecdir/$PACKAGE/2.2" ++gimpsysconfdir="$sysconfdir/$PACKAGE/2.2" + + + diff --git a/graphics/gimp-app/files/patch-libgimp_gimp.c b/graphics/gimp-app/files/patch-libgimp_gimp.c new file mode 100644 index 000000000..a1bb86bbf --- /dev/null +++ b/graphics/gimp-app/files/patch-libgimp_gimp.c @@ -0,0 +1,20 @@ +--- libgimp/gimp.c.orig Fri Sep 1 06:14:32 2006 ++++ libgimp/gimp.c Sun Dec 31 15:56:37 2006 +@@ -29,6 +29,7 @@ + #include <stdlib.h> + #include <string.h> + #include <sys/types.h> ++#include <floatingpoint.h> + + #ifdef HAVE_SYS_TIME_H + #include <sys/time.h> +@@ -291,6 +292,9 @@ + gimp_env_init (TRUE); + + progname = argv[0]; ++ ++ /* Ignore floating point exceptions */ ++ fpsetmask(0); + + basename = g_path_get_basename (progname); + diff --git a/graphics/gimp-app/files/patch-plug-ins_pygimp_Makefile.in b/graphics/gimp-app/files/patch-plug-ins_pygimp_Makefile.in new file mode 100644 index 000000000..4f46084a0 --- /dev/null +++ b/graphics/gimp-app/files/patch-plug-ins_pygimp_Makefile.in @@ -0,0 +1,104 @@ +--- plug-ins/pygimp/Makefile.in.orig 2008-08-31 09:39:24.157774518 -0500 ++++ plug-ins/pygimp/Makefile.in 2008-08-31 09:42:47.663351903 -0500 +@@ -61,7 +61,7 @@ + pygimpLTLIBRARIES_INSTALL = $(INSTALL) + LTLIBRARIES = $(pygimp_LTLIBRARIES) + am__DEPENDENCIES_1 = +-_gimpenums_la_DEPENDENCIES = $(libgimp) $(libgimpcolor) $(libgimpbase) \ ++_gimpenums_la_DEPENDENCIES = \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) + am__gimpenums_la_OBJECTS = gimpenumsmodule.lo +@@ -69,16 +69,15 @@ + _gimpenums_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(_gimpenums_la_LDFLAGS) $(LDFLAGS) -o $@ +-_gimpui_la_DEPENDENCIES = $(libgimpui) $(libgimpwidgets) \ +- $(libgimpconfig) $(libgimpmath) $(libgimp) $(libgimpcolor) \ +- $(libgimpbase) $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ ++_gimpui_la_DEPENDENCIES = \ ++ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) + am__gimpui_la_OBJECTS = gimpuimodule.lo gimpui.lo + _gimpui_la_OBJECTS = $(am__gimpui_la_OBJECTS) + _gimpui_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(_gimpui_la_LDFLAGS) $(LDFLAGS) -o $@ +-gimp_la_DEPENDENCIES = $(libgimp) $(libgimpcolor) $(libgimpbase) \ ++gimp_la_DEPENDENCIES = \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) + am_gimp_la_OBJECTS = gimpmodule.lo pygimp-display.lo \ +@@ -88,14 +87,14 @@ + gimp_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(gimp_la_LDFLAGS) \ + $(LDFLAGS) -o $@ +-gimpcolor_la_DEPENDENCIES = $(libgimpcolor) $(am__DEPENDENCIES_1) \ ++gimpcolor_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) + am_gimpcolor_la_OBJECTS = gimpcolormodule.lo pygimp-colors.lo + gimpcolor_la_OBJECTS = $(am_gimpcolor_la_OBJECTS) + gimpcolor_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(gimpcolor_la_LDFLAGS) $(LDFLAGS) -o $@ +-gimpthumb_la_DEPENDENCIES = $(libgimpthumb) $(am__DEPENDENCIES_1) \ ++gimpthumb_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) + am_gimpthumb_la_OBJECTS = gimpthumbmodule.lo gimpthumb.lo + gimpthumb_la_OBJECTS = $(am_gimpthumb_la_OBJECTS) +@@ -486,9 +485,7 @@ + -export-symbols-regex initgimp + + gimp_la_LIBADD = \ +- $(libgimp) \ +- $(libgimpcolor) \ +- $(libgimpbase) \ ++ %%GIMP_LIBS%% \ + $(GLIB_LIBS) \ + $(PYLINK_LIBS) \ + $(RT_LIBS) +@@ -500,9 +497,7 @@ + -export-symbols-regex init_gimpenums + + _gimpenums_la_LIBADD = \ +- $(libgimp) \ +- $(libgimpcolor) \ +- $(libgimpbase) \ ++ %%GIMP_LIBS%% \ + $(GLIB_LIBS) \ + $(PYLINK_LIBS) \ + $(RT_LIBS) +@@ -517,7 +512,7 @@ + -export-symbols-regex initgimpcolor + + gimpcolor_la_LIBADD = \ +- $(libgimpcolor) \ ++ %%GIMP_LIBS%% \ + $(GLIB_LIBS) \ + $(PYLINK_LIBS) + +@@ -529,13 +524,8 @@ + -export-symbols-regex init_gimpui + + _gimpui_la_LIBADD = \ +- $(libgimpui) \ +- $(libgimpwidgets) \ +- $(libgimpconfig) \ +- $(libgimpmath) \ +- $(libgimp) \ +- $(libgimpcolor) \ +- $(libgimpbase) \ ++ %%GIMP_LIBS%% \ ++ %%GIMP_UI_LIBS%% \ + $(GTK_LIBS) \ + $(PYLINK_LIBS) \ + $(RT_LIBS) \ +@@ -549,7 +539,7 @@ + -export-symbols-regex initgimpthumb + + gimpthumb_la_LIBADD = \ +- $(libgimpthumb) \ ++ %%GIMP_THUMB_LIBS%% \ + $(GDK_PIXBUF_LIBS) \ + $(PYLINK_LIBS) + diff --git a/graphics/gimp-app/pkg-descr b/graphics/gimp-app/pkg-descr new file mode 100644 index 000000000..4d7f49925 --- /dev/null +++ b/graphics/gimp-app/pkg-descr @@ -0,0 +1,19 @@ +The GIMP is designed to provide an intuitive graphical interface to a +variety of image editing operations. Here is a list of the GIMP's +major features: + + Image editing + ------------- + + * Selection tools including rectangle, ellipse, free, fuzzy, bezier + and intelligent. + * Transformation tools including rotate, scale, shear and flip. + * Painting tools including bucket, brush, airbrush, clone, convolve, + blend and text. + * Effects filters (such as blur, edge detect). + * Channel & color operations (such as add, composite, decompose). + * Plug-ins which allow for the easy addition of new file formats and + new effect filters. + * Multiple undo/redo. + +WWW: http://www.gimp.org/ diff --git a/graphics/gimp-app/pkg-plist b/graphics/gimp-app/pkg-plist new file mode 100644 index 000000000..1c8f7bc07 --- /dev/null +++ b/graphics/gimp-app/pkg-plist @@ -0,0 +1,2100 @@ +bin/gimp +bin/gimp-2.6 +bin/gimp-console +bin/gimp-console-2.6 +bin/gimptool-2.0 +etc/gimp/2.2/controllerrc +etc/gimp/2.2/gimprc +etc/gimp/2.2/gtkrc +etc/gimp/2.2/menurc +etc/gimp/2.2/ps-menurc +etc/gimp/2.2/sessionrc +etc/gimp/2.2/templaterc +etc/gimp/2.2/unitrc +include/gimp-2.0/libgimp/gimp.h +include/gimp-2.0/libgimp/gimp_pdb.h +include/gimp-2.0/libgimp/gimpaspectpreview.h +include/gimp-2.0/libgimp/gimpbrush_pdb.h +include/gimp-2.0/libgimp/gimpbrushes.h +include/gimp-2.0/libgimp/gimpbrushes_pdb.h +include/gimp-2.0/libgimp/gimpbrushmenu.h +include/gimp-2.0/libgimp/gimpbrushselect.h +include/gimp-2.0/libgimp/gimpbrushselect_pdb.h +include/gimp-2.0/libgimp/gimpbrushselectbutton.h +include/gimp-2.0/libgimp/gimpbuffer_pdb.h +include/gimp-2.0/libgimp/gimpchannel.h +include/gimp-2.0/libgimp/gimpchannel_pdb.h +include/gimp-2.0/libgimp/gimpcolor_pdb.h +include/gimp-2.0/libgimp/gimpcompat.h +include/gimp-2.0/libgimp/gimpcontext_pdb.h +include/gimp-2.0/libgimp/gimpconvert_pdb.h +include/gimp-2.0/libgimp/gimpdisplay_pdb.h +include/gimp-2.0/libgimp/gimpdrawable.h +include/gimp-2.0/libgimp/gimpdrawable_pdb.h +include/gimp-2.0/libgimp/gimpdrawablepreview.h +include/gimp-2.0/libgimp/gimpdrawabletransform_pdb.h +include/gimp-2.0/libgimp/gimpedit_pdb.h +include/gimp-2.0/libgimp/gimpenums.h +include/gimp-2.0/libgimp/gimpexport.h +include/gimp-2.0/libgimp/gimpfileops_pdb.h +include/gimp-2.0/libgimp/gimpfloatingsel_pdb.h +include/gimp-2.0/libgimp/gimpfontmenu.h +include/gimp-2.0/libgimp/gimpfonts_pdb.h +include/gimp-2.0/libgimp/gimpfontselect.h +include/gimp-2.0/libgimp/gimpfontselect_pdb.h +include/gimp-2.0/libgimp/gimpfontselectbutton.h +include/gimp-2.0/libgimp/gimpgimprc.h +include/gimp-2.0/libgimp/gimpgimprc_pdb.h +include/gimp-2.0/libgimp/gimpgradient_pdb.h +include/gimp-2.0/libgimp/gimpgradientmenu.h +include/gimp-2.0/libgimp/gimpgradients.h +include/gimp-2.0/libgimp/gimpgradients_pdb.h +include/gimp-2.0/libgimp/gimpgradientselect.h +include/gimp-2.0/libgimp/gimpgradientselect_pdb.h +include/gimp-2.0/libgimp/gimpgradientselectbutton.h +include/gimp-2.0/libgimp/gimpgrid_pdb.h +include/gimp-2.0/libgimp/gimpguides_pdb.h +include/gimp-2.0/libgimp/gimphelp_pdb.h +include/gimp-2.0/libgimp/gimpimage.h +include/gimp-2.0/libgimp/gimpimage_pdb.h +include/gimp-2.0/libgimp/gimpimagecombobox.h +include/gimp-2.0/libgimp/gimpitemcombobox.h +include/gimp-2.0/libgimp/gimplayer.h +include/gimp-2.0/libgimp/gimplayer_pdb.h +include/gimp-2.0/libgimp/gimpmenu.h +include/gimp-2.0/libgimp/gimpmessage_pdb.h +include/gimp-2.0/libgimp/gimpmisc_pdb.h +include/gimp-2.0/libgimp/gimppainttools_pdb.h +include/gimp-2.0/libgimp/gimppalette.h +include/gimp-2.0/libgimp/gimppalette_pdb.h +include/gimp-2.0/libgimp/gimppalettemenu.h +include/gimp-2.0/libgimp/gimppalettes.h +include/gimp-2.0/libgimp/gimppalettes_pdb.h +include/gimp-2.0/libgimp/gimppaletteselect.h +include/gimp-2.0/libgimp/gimppaletteselect_pdb.h +include/gimp-2.0/libgimp/gimppaletteselectbutton.h +include/gimp-2.0/libgimp/gimpparasite_pdb.h +include/gimp-2.0/libgimp/gimppaths_pdb.h +include/gimp-2.0/libgimp/gimppattern_pdb.h +include/gimp-2.0/libgimp/gimppatternmenu.h +include/gimp-2.0/libgimp/gimppatterns.h +include/gimp-2.0/libgimp/gimppatterns_pdb.h +include/gimp-2.0/libgimp/gimppatternselect.h +include/gimp-2.0/libgimp/gimppatternselect_pdb.h +include/gimp-2.0/libgimp/gimppatternselectbutton.h +include/gimp-2.0/libgimp/gimppixbuf.h +include/gimp-2.0/libgimp/gimppixelfetcher.h +include/gimp-2.0/libgimp/gimppixelrgn.h +include/gimp-2.0/libgimp/gimpplugin.h +include/gimp-2.0/libgimp/gimpplugin_pdb.h +include/gimp-2.0/libgimp/gimpprocbrowserdialog.h +include/gimp-2.0/libgimp/gimpproceduraldb.h +include/gimp-2.0/libgimp/gimpproceduraldb_pdb.h +include/gimp-2.0/libgimp/gimpprocview.h +include/gimp-2.0/libgimp/gimpprogress.h +include/gimp-2.0/libgimp/gimpprogress_pdb.h +include/gimp-2.0/libgimp/gimpprogressbar.h +include/gimp-2.0/libgimp/gimpregioniterator.h +include/gimp-2.0/libgimp/gimpselectbutton.h +include/gimp-2.0/libgimp/gimpselection.h +include/gimp-2.0/libgimp/gimpselection_pdb.h +include/gimp-2.0/libgimp/gimpselectiontools_pdb.h +include/gimp-2.0/libgimp/gimptextlayer_pdb.h +include/gimp-2.0/libgimp/gimptexttool_pdb.h +include/gimp-2.0/libgimp/gimptile.h +include/gimp-2.0/libgimp/gimptransformtools_pdb.h +include/gimp-2.0/libgimp/gimptypes.h +include/gimp-2.0/libgimp/gimpui.h +include/gimp-2.0/libgimp/gimpuitypes.h +include/gimp-2.0/libgimp/gimpundo_pdb.h +include/gimp-2.0/libgimp/gimpunit_pdb.h +include/gimp-2.0/libgimp/gimpvectors_pdb.h +include/gimp-2.0/libgimp/gimpzoompreview.h +include/gimp-2.0/libgimpbase/gimpbase.h +include/gimp-2.0/libgimpbase/gimpbaseenums.h +include/gimp-2.0/libgimpbase/gimpbasetypes.h +include/gimp-2.0/libgimpbase/gimpchecks.h +include/gimp-2.0/libgimpbase/gimpcpuaccel.h +include/gimp-2.0/libgimpbase/gimpdatafiles.h +include/gimp-2.0/libgimpbase/gimpenv.h +include/gimp-2.0/libgimpbase/gimplimits.h +include/gimp-2.0/libgimpbase/gimpmemsize.h +include/gimp-2.0/libgimpbase/gimpparam.h +include/gimp-2.0/libgimpbase/gimpparasite.h +include/gimp-2.0/libgimpbase/gimpparasiteio.h +include/gimp-2.0/libgimpbase/gimprectangle.h +include/gimp-2.0/libgimpbase/gimpsignal.h +include/gimp-2.0/libgimpbase/gimpunit.h +include/gimp-2.0/libgimpbase/gimputils.h +include/gimp-2.0/libgimpbase/gimpversion.h +include/gimp-2.0/libgimpcolor/gimpadaptivesupersample.h +include/gimp-2.0/libgimpcolor/gimpbilinear.h +include/gimp-2.0/libgimpcolor/gimpcmyk.h +include/gimp-2.0/libgimpcolor/gimpcolor.h +include/gimp-2.0/libgimpcolor/gimpcolormanaged.h +include/gimp-2.0/libgimpcolor/gimpcolorspace.h +include/gimp-2.0/libgimpcolor/gimpcolortypes.h +include/gimp-2.0/libgimpcolor/gimphsl.h +include/gimp-2.0/libgimpcolor/gimphsv.h +include/gimp-2.0/libgimpcolor/gimprgb.h +include/gimp-2.0/libgimpconfig/gimpcolorconfig-enums.h +include/gimp-2.0/libgimpconfig/gimpcolorconfig.h +include/gimp-2.0/libgimpconfig/gimpconfig-deserialize.h +include/gimp-2.0/libgimpconfig/gimpconfig-error.h +include/gimp-2.0/libgimpconfig/gimpconfig-iface.h +include/gimp-2.0/libgimpconfig/gimpconfig-params.h +include/gimp-2.0/libgimpconfig/gimpconfig-path.h +include/gimp-2.0/libgimpconfig/gimpconfig-serialize.h +include/gimp-2.0/libgimpconfig/gimpconfig-utils.h +include/gimp-2.0/libgimpconfig/gimpconfig.h +include/gimp-2.0/libgimpconfig/gimpconfigtypes.h +include/gimp-2.0/libgimpconfig/gimpconfigwriter.h +include/gimp-2.0/libgimpconfig/gimpscanner.h +include/gimp-2.0/libgimpmath/gimpmath.h +include/gimp-2.0/libgimpmath/gimpmathtypes.h +include/gimp-2.0/libgimpmath/gimpmatrix.h +include/gimp-2.0/libgimpmath/gimpmd5.h +include/gimp-2.0/libgimpmath/gimpvector.h +include/gimp-2.0/libgimpmodule/gimpmodule.h +include/gimp-2.0/libgimpmodule/gimpmoduledb.h +include/gimp-2.0/libgimpmodule/gimpmoduletypes.h +include/gimp-2.0/libgimpthumb/gimpthumb-enums.h +include/gimp-2.0/libgimpthumb/gimpthumb-error.h +include/gimp-2.0/libgimpthumb/gimpthumb-types.h +include/gimp-2.0/libgimpthumb/gimpthumb-utils.h +include/gimp-2.0/libgimpthumb/gimpthumb.h +include/gimp-2.0/libgimpthumb/gimpthumbnail.h +include/gimp-2.0/libgimpwidgets/gimpbrowser.h +include/gimp-2.0/libgimpwidgets/gimpbutton.h +include/gimp-2.0/libgimpwidgets/gimpcairo-utils.h +include/gimp-2.0/libgimpwidgets/gimpcellrenderercolor.h +include/gimp-2.0/libgimpwidgets/gimpcellrenderertoggle.h +include/gimp-2.0/libgimpwidgets/gimpchainbutton.h +include/gimp-2.0/libgimpwidgets/gimpcolorarea.h +include/gimp-2.0/libgimpwidgets/gimpcolorbutton.h +include/gimp-2.0/libgimpwidgets/gimpcolordisplay.h +include/gimp-2.0/libgimpwidgets/gimpcolordisplaystack.h +include/gimp-2.0/libgimpwidgets/gimpcolorhexentry.h +include/gimp-2.0/libgimpwidgets/gimpcolornotebook.h +include/gimp-2.0/libgimpwidgets/gimpcolorprofilecombobox.h +include/gimp-2.0/libgimpwidgets/gimpcolorprofilestore.h +include/gimp-2.0/libgimpwidgets/gimpcolorscale.h +include/gimp-2.0/libgimpwidgets/gimpcolorscales.h +include/gimp-2.0/libgimpwidgets/gimpcolorselect.h +include/gimp-2.0/libgimpwidgets/gimpcolorselection.h +include/gimp-2.0/libgimpwidgets/gimpcolorselector.h +include/gimp-2.0/libgimpwidgets/gimpcontroller.h +include/gimp-2.0/libgimpwidgets/gimpdialog.h +include/gimp-2.0/libgimpwidgets/gimpenumcombobox.h +include/gimp-2.0/libgimpwidgets/gimpenumlabel.h +include/gimp-2.0/libgimpwidgets/gimpenumstore.h +include/gimp-2.0/libgimpwidgets/gimpenumwidgets.h +include/gimp-2.0/libgimpwidgets/gimpfileentry.h +include/gimp-2.0/libgimpwidgets/gimpframe.h +include/gimp-2.0/libgimpwidgets/gimphelpui.h +include/gimp-2.0/libgimpwidgets/gimphintbox.h +include/gimp-2.0/libgimpwidgets/gimpintcombobox.h +include/gimp-2.0/libgimpwidgets/gimpintstore.h +include/gimp-2.0/libgimpwidgets/gimpmemsizeentry.h +include/gimp-2.0/libgimpwidgets/gimpnumberpairentry.h +include/gimp-2.0/libgimpwidgets/gimpoffsetarea.h +include/gimp-2.0/libgimpwidgets/gimpoldwidgets.h +include/gimp-2.0/libgimpwidgets/gimppageselector.h +include/gimp-2.0/libgimpwidgets/gimppatheditor.h +include/gimp-2.0/libgimpwidgets/gimppickbutton.h +include/gimp-2.0/libgimpwidgets/gimppixmap.h +include/gimp-2.0/libgimpwidgets/gimppreview.h +include/gimp-2.0/libgimpwidgets/gimppreviewarea.h +include/gimp-2.0/libgimpwidgets/gimppropwidgets.h +include/gimp-2.0/libgimpwidgets/gimpquerybox.h +include/gimp-2.0/libgimpwidgets/gimpruler.h +include/gimp-2.0/libgimpwidgets/gimpscaleentry.h +include/gimp-2.0/libgimpwidgets/gimpscrolledpreview.h +include/gimp-2.0/libgimpwidgets/gimpsizeentry.h +include/gimp-2.0/libgimpwidgets/gimpstock.h +include/gimp-2.0/libgimpwidgets/gimpstringcombobox.h +include/gimp-2.0/libgimpwidgets/gimpunitmenu.h +include/gimp-2.0/libgimpwidgets/gimpwidgets.h +include/gimp-2.0/libgimpwidgets/gimpwidgetsenums.h +include/gimp-2.0/libgimpwidgets/gimpwidgetstypes.h +include/gimp-2.0/libgimpwidgets/gimpzoommodel.h +lib/libgimp-2.0.a +lib/libgimp-2.0.la +lib/libgimp-2.0.so +lib/libgimp-2.0.so.0 +lib/libgimpbase-2.0.a +lib/libgimpbase-2.0.la +lib/libgimpbase-2.0.so +lib/libgimpbase-2.0.so.0 +lib/libgimpcolor-2.0.a +lib/libgimpcolor-2.0.la +lib/libgimpcolor-2.0.so +lib/libgimpcolor-2.0.so.0 +lib/libgimpconfig-2.0.a +lib/libgimpconfig-2.0.la +lib/libgimpconfig-2.0.so +lib/libgimpconfig-2.0.so.0 +lib/libgimpmath-2.0.a +lib/libgimpmath-2.0.la +lib/libgimpmath-2.0.so +lib/libgimpmath-2.0.so.0 +lib/libgimpmodule-2.0.a +lib/libgimpmodule-2.0.la +lib/libgimpmodule-2.0.so +lib/libgimpmodule-2.0.so.0 +lib/libgimpthumb-2.0.a +lib/libgimpthumb-2.0.la +lib/libgimpthumb-2.0.so +lib/libgimpthumb-2.0.so.0 +lib/libgimpui-2.0.a +lib/libgimpui-2.0.la +lib/libgimpui-2.0.so +lib/libgimpui-2.0.so.0 +lib/libgimpwidgets-2.0.a +lib/libgimpwidgets-2.0.la +lib/libgimpwidgets-2.0.so +lib/libgimpwidgets-2.0.so.0 +libdata/pkgconfig/gimp-2.0.pc +libdata/pkgconfig/gimpthumb-2.0.pc +libdata/pkgconfig/gimpui-2.0.pc +libexec/gimp/2.2/environ/default.env +libexec/gimp/2.2/interpreters/default.interp +libexec/gimp/2.2/modules/libcolor-selector-cmyk.a +libexec/gimp/2.2/modules/libcolor-selector-cmyk.la +libexec/gimp/2.2/modules/libcolor-selector-cmyk.so +libexec/gimp/2.2/modules/libcolor-selector-water.a +libexec/gimp/2.2/modules/libcolor-selector-water.la +libexec/gimp/2.2/modules/libcolor-selector-water.so +libexec/gimp/2.2/modules/libcolor-selector-wheel.a +libexec/gimp/2.2/modules/libcolor-selector-wheel.la +libexec/gimp/2.2/modules/libcolor-selector-wheel.so +libexec/gimp/2.2/modules/libcontroller-midi.a +libexec/gimp/2.2/modules/libcontroller-midi.la +libexec/gimp/2.2/modules/libcontroller-midi.so +libexec/gimp/2.2/modules/libdisplay-filter-color-blind.a +libexec/gimp/2.2/modules/libdisplay-filter-color-blind.la +libexec/gimp/2.2/modules/libdisplay-filter-color-blind.so +libexec/gimp/2.2/modules/libdisplay-filter-gamma.a +libexec/gimp/2.2/modules/libdisplay-filter-gamma.la +libexec/gimp/2.2/modules/libdisplay-filter-gamma.so +libexec/gimp/2.2/modules/libdisplay-filter-high-contrast.a +libexec/gimp/2.2/modules/libdisplay-filter-high-contrast.la +libexec/gimp/2.2/modules/libdisplay-filter-high-contrast.so +libexec/gimp/2.2/modules/libdisplay-filter-lcms.a +libexec/gimp/2.2/modules/libdisplay-filter-lcms.la +libexec/gimp/2.2/modules/libdisplay-filter-lcms.so +libexec/gimp/2.2/modules/libdisplay-filter-proof.a +libexec/gimp/2.2/modules/libdisplay-filter-proof.la +libexec/gimp/2.2/modules/libdisplay-filter-proof.so +libexec/gimp/2.2/plug-ins/alien-map +libexec/gimp/2.2/plug-ins/align-layers +libexec/gimp/2.2/plug-ins/animation-optimize +libexec/gimp/2.2/plug-ins/animation-play +libexec/gimp/2.2/plug-ins/antialias +libexec/gimp/2.2/plug-ins/apply-canvas +libexec/gimp/2.2/plug-ins/blinds +libexec/gimp/2.2/plug-ins/blur +libexec/gimp/2.2/plug-ins/blur-gauss +libexec/gimp/2.2/plug-ins/blur-gauss-selective +libexec/gimp/2.2/plug-ins/blur-motion +libexec/gimp/2.2/plug-ins/border-average +libexec/gimp/2.2/plug-ins/bump-map +libexec/gimp/2.2/plug-ins/cartoon +libexec/gimp/2.2/plug-ins/channel-mixer +libexec/gimp/2.2/plug-ins/checkerboard +libexec/gimp/2.2/plug-ins/cml-explorer +libexec/gimp/2.2/plug-ins/color-cube-analyze +libexec/gimp/2.2/plug-ins/color-enhance +libexec/gimp/2.2/plug-ins/color-exchange +libexec/gimp/2.2/plug-ins/color-rotate +libexec/gimp/2.2/plug-ins/color-to-alpha +libexec/gimp/2.2/plug-ins/colorify +libexec/gimp/2.2/plug-ins/colormap-remap +libexec/gimp/2.2/plug-ins/compose +libexec/gimp/2.2/plug-ins/contrast-normalize +libexec/gimp/2.2/plug-ins/contrast-retinex +libexec/gimp/2.2/plug-ins/contrast-stretch +libexec/gimp/2.2/plug-ins/contrast-stretch-hsv +libexec/gimp/2.2/plug-ins/convolution-matrix +libexec/gimp/2.2/plug-ins/crop-auto +libexec/gimp/2.2/plug-ins/crop-zealous +libexec/gimp/2.2/plug-ins/cubism +libexec/gimp/2.2/plug-ins/curve-bend +libexec/gimp/2.2/plug-ins/decompose +libexec/gimp/2.2/plug-ins/deinterlace +libexec/gimp/2.2/plug-ins/depth-merge +libexec/gimp/2.2/plug-ins/despeckle +libexec/gimp/2.2/plug-ins/destripe +libexec/gimp/2.2/plug-ins/diffraction +libexec/gimp/2.2/plug-ins/displace +libexec/gimp/2.2/plug-ins/edge +libexec/gimp/2.2/plug-ins/edge-dog +libexec/gimp/2.2/plug-ins/edge-laplace +libexec/gimp/2.2/plug-ins/edge-neon +libexec/gimp/2.2/plug-ins/edge-sobel +libexec/gimp/2.2/plug-ins/emboss +libexec/gimp/2.2/plug-ins/engrave +libexec/gimp/2.2/plug-ins/file-aa +libexec/gimp/2.2/plug-ins/file-bmp +libexec/gimp/2.2/plug-ins/file-cel +libexec/gimp/2.2/plug-ins/file-compressor +libexec/gimp/2.2/plug-ins/file-csource +libexec/gimp/2.2/plug-ins/file-desktop-link +libexec/gimp/2.2/plug-ins/file-dicom +libexec/gimp/2.2/plug-ins/file-faxg3 +libexec/gimp/2.2/plug-ins/file-fits +libexec/gimp/2.2/plug-ins/file-fli +libexec/gimp/2.2/plug-ins/file-gbr +libexec/gimp/2.2/plug-ins/file-gif-load +libexec/gimp/2.2/plug-ins/file-gif-save +libexec/gimp/2.2/plug-ins/file-gih +libexec/gimp/2.2/plug-ins/file-glob +libexec/gimp/2.2/plug-ins/file-header +libexec/gimp/2.2/plug-ins/file-html-table +libexec/gimp/2.2/plug-ins/file-ico +libexec/gimp/2.2/plug-ins/file-jpeg +libexec/gimp/2.2/plug-ins/file-mng +libexec/gimp/2.2/plug-ins/file-pat +libexec/gimp/2.2/plug-ins/file-pcx +libexec/gimp/2.2/plug-ins/file-pdf +libexec/gimp/2.2/plug-ins/file-pix +libexec/gimp/2.2/plug-ins/file-png +libexec/gimp/2.2/plug-ins/file-pnm +libexec/gimp/2.2/plug-ins/file-ps +libexec/gimp/2.2/plug-ins/file-psd-load +libexec/gimp/2.2/plug-ins/file-psd-save +libexec/gimp/2.2/plug-ins/file-psp +libexec/gimp/2.2/plug-ins/file-raw +libexec/gimp/2.2/plug-ins/file-sgi +libexec/gimp/2.2/plug-ins/file-sunras +libexec/gimp/2.2/plug-ins/file-svg +libexec/gimp/2.2/plug-ins/file-tga +libexec/gimp/2.2/plug-ins/file-tiff-load +libexec/gimp/2.2/plug-ins/file-tiff-save +libexec/gimp/2.2/plug-ins/file-uri +libexec/gimp/2.2/plug-ins/file-wmf +libexec/gimp/2.2/plug-ins/file-xbm +libexec/gimp/2.2/plug-ins/file-xjt +libexec/gimp/2.2/plug-ins/file-xpm +libexec/gimp/2.2/plug-ins/file-xwd +libexec/gimp/2.2/plug-ins/film +libexec/gimp/2.2/plug-ins/filter-pack +libexec/gimp/2.2/plug-ins/flame +libexec/gimp/2.2/plug-ins/fractal-explorer +libexec/gimp/2.2/plug-ins/fractal-trace +libexec/gimp/2.2/plug-ins/gee +libexec/gimp/2.2/plug-ins/gee-zoom +libexec/gimp/2.2/plug-ins/gfig +libexec/gimp/2.2/plug-ins/gimpressionist +libexec/gimp/2.2/plug-ins/gradient-flare +libexec/gimp/2.2/plug-ins/gradient-map +libexec/gimp/2.2/plug-ins/grid +libexec/gimp/2.2/plug-ins/guillotine +libexec/gimp/2.2/plug-ins/help +%%HELPBROWSER%%libexec/gimp/2.2/plug-ins/help-browser +libexec/gimp/2.2/plug-ins/hot +libexec/gimp/2.2/plug-ins/ifs-compose +libexec/gimp/2.2/plug-ins/illusion +libexec/gimp/2.2/plug-ins/imagemap +libexec/gimp/2.2/plug-ins/iwarp +libexec/gimp/2.2/plug-ins/jigsaw +libexec/gimp/2.2/plug-ins/lcms +libexec/gimp/2.2/plug-ins/lens-apply +libexec/gimp/2.2/plug-ins/lens-distortion +libexec/gimp/2.2/plug-ins/lens-flare +libexec/gimp/2.2/plug-ins/lighting +libexec/gimp/2.2/plug-ins/mail +libexec/gimp/2.2/plug-ins/map-object +libexec/gimp/2.2/plug-ins/max-rgb +libexec/gimp/2.2/plug-ins/maze +libexec/gimp/2.2/plug-ins/metadata +libexec/gimp/2.2/plug-ins/mosaic +libexec/gimp/2.2/plug-ins/newsprint +libexec/gimp/2.2/plug-ins/nl-filter +libexec/gimp/2.2/plug-ins/noise-hsv +libexec/gimp/2.2/plug-ins/noise-randomize +libexec/gimp/2.2/plug-ins/noise-rgb +libexec/gimp/2.2/plug-ins/noise-solid +libexec/gimp/2.2/plug-ins/noise-spread +libexec/gimp/2.2/plug-ins/nova +libexec/gimp/2.2/plug-ins/oilify +libexec/gimp/2.2/plug-ins/pagecurl +libexec/gimp/2.2/plug-ins/photocopy +libexec/gimp/2.2/plug-ins/pixelize +libexec/gimp/2.2/plug-ins/plasma +libexec/gimp/2.2/plug-ins/plugin-browser +libexec/gimp/2.2/plug-ins/polar-coords +libexec/gimp/2.2/plug-ins/procedure-browser +libexec/gimp/2.2/plug-ins/qbist +libexec/gimp/2.2/plug-ins/red-eye-removal +libexec/gimp/2.2/plug-ins/ripple +libexec/gimp/2.2/plug-ins/rotate +libexec/gimp/2.2/plug-ins/sample-colorize +libexec/gimp/2.2/plug-ins/screenshot +libexec/gimp/2.2/plug-ins/script-fu +libexec/gimp/2.2/plug-ins/selection-to-path +libexec/gimp/2.2/plug-ins/semi-flatten +libexec/gimp/2.2/plug-ins/sharpen +libexec/gimp/2.2/plug-ins/shift +libexec/gimp/2.2/plug-ins/sinus +libexec/gimp/2.2/plug-ins/smooth-palette +libexec/gimp/2.2/plug-ins/softglow +libexec/gimp/2.2/plug-ins/sparkle +libexec/gimp/2.2/plug-ins/sphere-designer +libexec/gimp/2.2/plug-ins/threshold-alpha +libexec/gimp/2.2/plug-ins/tile +libexec/gimp/2.2/plug-ins/tile-glass +libexec/gimp/2.2/plug-ins/tile-paper +libexec/gimp/2.2/plug-ins/tile-seamless +libexec/gimp/2.2/plug-ins/tile-small +libexec/gimp/2.2/plug-ins/unit-editor +libexec/gimp/2.2/plug-ins/unsharp-mask +libexec/gimp/2.2/plug-ins/value-invert +libexec/gimp/2.2/plug-ins/value-propagate +libexec/gimp/2.2/plug-ins/van-gogh-lic +libexec/gimp/2.2/plug-ins/video +libexec/gimp/2.2/plug-ins/warp +libexec/gimp/2.2/plug-ins/waves +libexec/gimp/2.2/plug-ins/web-browser +libexec/gimp/2.2/plug-ins/whirl-pinch +libexec/gimp/2.2/plug-ins/wind +share/aclocal/gimp-2.0.m4 +share/applications/gimp.desktop +share/doc/gimp/libgimp/GimpAspectPreview.html +share/doc/gimp/libgimp/GimpBrushSelectButton.html +share/doc/gimp/libgimp/GimpDrawablePreview.html +share/doc/gimp/libgimp/GimpFontSelectButton.html +share/doc/gimp/libgimp/GimpGradientSelectButton.html +share/doc/gimp/libgimp/GimpImageComboBox.html +share/doc/gimp/libgimp/GimpPaletteSelectButton.html +share/doc/gimp/libgimp/GimpPatternSelectButton.html +share/doc/gimp/libgimp/GimpProcBrowserDialog.html +share/doc/gimp/libgimp/GimpProgressBar.html +share/doc/gimp/libgimp/GimpSelectButton.html +share/doc/gimp/libgimp/GimpZoomPreview.html +share/doc/gimp/libgimp/home.png +share/doc/gimp/libgimp/index.html +share/doc/gimp/libgimp/index.sgml +share/doc/gimp/libgimp/left.png +share/doc/gimp/libgimp/libgimp-GimpItemComboBox.html +share/doc/gimp/libgimp/libgimp-data.html +share/doc/gimp/libgimp/libgimp-general.html +share/doc/gimp/libgimp/libgimp-gimp.html +share/doc/gimp/libgimp/libgimp-gimpbrush.html +share/doc/gimp/libgimp/libgimp-gimpbrushes.html +share/doc/gimp/libgimp/libgimp-gimpbrushmenu.html +share/doc/gimp/libgimp/libgimp-gimpbrushselect.html +share/doc/gimp/libgimp/libgimp-gimpbuffer.html +share/doc/gimp/libgimp/libgimp-gimpchannel.html +share/doc/gimp/libgimp/libgimp-gimpcolor.html +share/doc/gimp/libgimp/libgimp-gimpcontext.html +share/doc/gimp/libgimp/libgimp-gimpconvert.html +share/doc/gimp/libgimp/libgimp-gimpdisplay.html +share/doc/gimp/libgimp/libgimp-gimpdrawable.html +share/doc/gimp/libgimp/libgimp-gimpdrawabletransform.html +share/doc/gimp/libgimp/libgimp-gimpedit.html +share/doc/gimp/libgimp/libgimp-gimpenums.html +share/doc/gimp/libgimp/libgimp-gimpexport.html +share/doc/gimp/libgimp/libgimp-gimpfileops.html +share/doc/gimp/libgimp/libgimp-gimpfloatingsel.html +share/doc/gimp/libgimp/libgimp-gimpfontmenu.html +share/doc/gimp/libgimp/libgimp-gimpfonts.html +share/doc/gimp/libgimp/libgimp-gimpfontselect.html +share/doc/gimp/libgimp/libgimp-gimpgimprc.html +share/doc/gimp/libgimp/libgimp-gimpgradient.html +share/doc/gimp/libgimp/libgimp-gimpgradientmenu.html +share/doc/gimp/libgimp/libgimp-gimpgradients.html +share/doc/gimp/libgimp/libgimp-gimpgradientselect.html +share/doc/gimp/libgimp/libgimp-gimpgrid.html +share/doc/gimp/libgimp/libgimp-gimpguides.html +share/doc/gimp/libgimp/libgimp-gimphelp.html +share/doc/gimp/libgimp/libgimp-gimpimage.html +share/doc/gimp/libgimp/libgimp-gimplayer.html +share/doc/gimp/libgimp/libgimp-gimpmenu.html +share/doc/gimp/libgimp/libgimp-gimpmessage.html +share/doc/gimp/libgimp/libgimp-gimppalette.html +share/doc/gimp/libgimp/libgimp-gimppalettemenu.html +share/doc/gimp/libgimp/libgimp-gimppalettes.html +share/doc/gimp/libgimp/libgimp-gimppaletteselect.html +share/doc/gimp/libgimp/libgimp-gimppaths.html +share/doc/gimp/libgimp/libgimp-gimppattern.html +share/doc/gimp/libgimp/libgimp-gimppatternmenu.html +share/doc/gimp/libgimp/libgimp-gimppatterns.html +share/doc/gimp/libgimp/libgimp-gimppatternselect.html +share/doc/gimp/libgimp/libgimp-gimppixbuf.html +share/doc/gimp/libgimp/libgimp-gimppixelfetcher.html +share/doc/gimp/libgimp/libgimp-gimppixelrgn.html +share/doc/gimp/libgimp/libgimp-gimpplugin.html +share/doc/gimp/libgimp/libgimp-gimpproceduraldb.html +share/doc/gimp/libgimp/libgimp-gimpprocview.html +share/doc/gimp/libgimp/libgimp-gimpprogress.html +share/doc/gimp/libgimp/libgimp-gimpregioniterator.html +share/doc/gimp/libgimp/libgimp-gimpselection.html +share/doc/gimp/libgimp/libgimp-gimptextlayer.html +share/doc/gimp/libgimp/libgimp-gimptexttool.html +share/doc/gimp/libgimp/libgimp-gimptile.html +share/doc/gimp/libgimp/libgimp-gimptools.html +share/doc/gimp/libgimp/libgimp-gimpui.html +share/doc/gimp/libgimp/libgimp-gimpundo.html +share/doc/gimp/libgimp/libgimp-gimpvectors.html +share/doc/gimp/libgimp/libgimp-image.html +share/doc/gimp/libgimp/libgimp-index-deprecated.html +share/doc/gimp/libgimp/libgimp-index-new-in-2-2.html +share/doc/gimp/libgimp/libgimp-index-new-in-2-4.html +share/doc/gimp/libgimp/libgimp-index-new-in-2-6.html +share/doc/gimp/libgimp/libgimp-index.html +share/doc/gimp/libgimp/libgimp-selectors.html +share/doc/gimp/libgimp/libgimp.devhelp +share/doc/gimp/libgimp/libgimp.devhelp2 +share/doc/gimp/libgimp/libgimp.html +share/doc/gimp/libgimp/libgimpui-hierarchy.html +share/doc/gimp/libgimp/libgimpui.html +share/doc/gimp/libgimp/right.png +share/doc/gimp/libgimp/style.css +share/doc/gimp/libgimp/up.png +share/doc/gimp/libgimpbase/home.png +share/doc/gimp/libgimpbase/index.html +share/doc/gimp/libgimpbase/index.sgml +share/doc/gimp/libgimpbase/left.png +share/doc/gimp/libgimpbase/libgimpbase-gimpbaseenums.html +share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html +share/doc/gimp/libgimpbase/libgimpbase-gimpchecks.html +share/doc/gimp/libgimpbase/libgimpbase-gimpcpuaccel.html +share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.html +share/doc/gimp/libgimpbase/libgimpbase-gimpenv.html +share/doc/gimp/libgimpbase/libgimpbase-gimplimits.html +share/doc/gimp/libgimpbase/libgimpbase-gimpmemsize.html +share/doc/gimp/libgimpbase/libgimpbase-gimpparam.html +share/doc/gimp/libgimpbase/libgimpbase-gimpparasite.html +share/doc/gimp/libgimpbase/libgimpbase-gimpparasiteio.html +share/doc/gimp/libgimpbase/libgimpbase-gimprectangle.html +share/doc/gimp/libgimpbase/libgimpbase-gimpsignal.html +share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html +share/doc/gimp/libgimpbase/libgimpbase-gimputils.html +share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html +share/doc/gimp/libgimpbase/libgimpbase-index-deprecated.html +share/doc/gimp/libgimpbase/libgimpbase-index-new-in-2-2.html +share/doc/gimp/libgimpbase/libgimpbase-index-new-in-2-4.html +share/doc/gimp/libgimpbase/libgimpbase-index-new-in-2-6.html +share/doc/gimp/libgimpbase/libgimpbase-index.html +share/doc/gimp/libgimpbase/libgimpbase.devhelp +share/doc/gimp/libgimpbase/libgimpbase.devhelp2 +share/doc/gimp/libgimpbase/libgimpbase.html +share/doc/gimp/libgimpbase/right.png +share/doc/gimp/libgimpbase/style.css +share/doc/gimp/libgimpbase/up.png +share/doc/gimp/libgimpcolor/home.png +share/doc/gimp/libgimpcolor/index.html +share/doc/gimp/libgimpcolor/index.sgml +share/doc/gimp/libgimpcolor/left.png +share/doc/gimp/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpBilinear.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpCMYK.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorManaged.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorSpace.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpHSV.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpRGB.html +share/doc/gimp/libgimpcolor/libgimpcolor-index-deprecated.html +share/doc/gimp/libgimpcolor/libgimpcolor-index-new-in-2-2.html +share/doc/gimp/libgimpcolor/libgimpcolor-index-new-in-2-4.html +share/doc/gimp/libgimpcolor/libgimpcolor-index-new-in-2-6.html +share/doc/gimp/libgimpcolor/libgimpcolor-index.html +share/doc/gimp/libgimpcolor/libgimpcolor.devhelp +share/doc/gimp/libgimpcolor/libgimpcolor.devhelp2 +share/doc/gimp/libgimpcolor/libgimpcolor.html +share/doc/gimp/libgimpcolor/right.png +share/doc/gimp/libgimpcolor/style.css +share/doc/gimp/libgimpcolor/up.png +share/doc/gimp/libgimpconfig/GimpColorConfig.html +share/doc/gimp/libgimpconfig/home.png +share/doc/gimp/libgimpconfig/index.html +share/doc/gimp/libgimpconfig/index.sgml +share/doc/gimp/libgimpconfig/left.png +share/doc/gimp/libgimpconfig/libgimpconfig-GimpConfig.html +share/doc/gimp/libgimpconfig/libgimpconfig-GimpConfigError.html +share/doc/gimp/libgimpconfig/libgimpconfig-GimpConfigWriter.html +share/doc/gimp/libgimpconfig/libgimpconfig-GimpScanner.html +share/doc/gimp/libgimpconfig/libgimpconfig-gimpconfig-deserialize.html +share/doc/gimp/libgimpconfig/libgimpconfig-gimpconfig-params.html +share/doc/gimp/libgimpconfig/libgimpconfig-gimpconfig-path.html +share/doc/gimp/libgimpconfig/libgimpconfig-gimpconfig-serialize.html +share/doc/gimp/libgimpconfig/libgimpconfig-gimpconfig-utils.html +share/doc/gimp/libgimpconfig/libgimpconfig-hierarchy.html +share/doc/gimp/libgimpconfig/libgimpconfig-index-deprecated.html +share/doc/gimp/libgimpconfig/libgimpconfig-index-new-in-2-4.html +share/doc/gimp/libgimpconfig/libgimpconfig-index-new-in-2-6.html +share/doc/gimp/libgimpconfig/libgimpconfig-index.html +share/doc/gimp/libgimpconfig/libgimpconfig.devhelp +share/doc/gimp/libgimpconfig/libgimpconfig.devhelp2 +share/doc/gimp/libgimpconfig/libgimpconfig.html +share/doc/gimp/libgimpconfig/right.png +share/doc/gimp/libgimpconfig/style.css +share/doc/gimp/libgimpconfig/up.png +share/doc/gimp/libgimpmath/home.png +share/doc/gimp/libgimpmath/index.html +share/doc/gimp/libgimpmath/index.sgml +share/doc/gimp/libgimpmath/left.png +share/doc/gimp/libgimpmath/libgimpmath-GimpMD5.html +share/doc/gimp/libgimpmath/libgimpmath-GimpMath.html +share/doc/gimp/libgimpmath/libgimpmath-GimpMatrix.html +share/doc/gimp/libgimpmath/libgimpmath-GimpVector.html +share/doc/gimp/libgimpmath/libgimpmath-index-deprecated.html +share/doc/gimp/libgimpmath/libgimpmath-index-new-in-2-2.html +share/doc/gimp/libgimpmath/libgimpmath-index-new-in-2-4.html +share/doc/gimp/libgimpmath/libgimpmath-index-new-in-2-6.html +share/doc/gimp/libgimpmath/libgimpmath-index.html +share/doc/gimp/libgimpmath/libgimpmath.devhelp +share/doc/gimp/libgimpmath/libgimpmath.devhelp2 +share/doc/gimp/libgimpmath/libgimpmath.html +share/doc/gimp/libgimpmath/right.png +share/doc/gimp/libgimpmath/style.css +share/doc/gimp/libgimpmath/up.png +share/doc/gimp/libgimpmodule/GimpModule.html +share/doc/gimp/libgimpmodule/GimpModuleDB.html +share/doc/gimp/libgimpmodule/home.png +share/doc/gimp/libgimpmodule/index.html +share/doc/gimp/libgimpmodule/index.sgml +share/doc/gimp/libgimpmodule/left.png +share/doc/gimp/libgimpmodule/libgimpmodule-index-deprecated.html +share/doc/gimp/libgimpmodule/libgimpmodule-index-new-in-2-2.html +share/doc/gimp/libgimpmodule/libgimpmodule-index-new-in-2-4.html +share/doc/gimp/libgimpmodule/libgimpmodule-index-new-in-2-6.html +share/doc/gimp/libgimpmodule/libgimpmodule-index.html +share/doc/gimp/libgimpmodule/libgimpmodule.devhelp +share/doc/gimp/libgimpmodule/libgimpmodule.devhelp2 +share/doc/gimp/libgimpmodule/libgimpmodule.html +share/doc/gimp/libgimpmodule/right.png +share/doc/gimp/libgimpmodule/style.css +share/doc/gimp/libgimpmodule/up.png +share/doc/gimp/libgimpthumb/GimpThumbnail.html +share/doc/gimp/libgimpthumb/home.png +share/doc/gimp/libgimpthumb/index.html +share/doc/gimp/libgimpthumb/index.sgml +share/doc/gimp/libgimpthumb/left.png +share/doc/gimp/libgimpthumb/libgimpthumb-gimpthumb-enums.html +share/doc/gimp/libgimpthumb/libgimpthumb-gimpthumb-error.html +share/doc/gimp/libgimpthumb/libgimpthumb-gimpthumb-utils.html +share/doc/gimp/libgimpthumb/libgimpthumb-index-deprecated.html +share/doc/gimp/libgimpthumb/libgimpthumb-index-new-in-2-2.html +share/doc/gimp/libgimpthumb/libgimpthumb-index-new-in-2-4.html +share/doc/gimp/libgimpthumb/libgimpthumb-index-new-in-2-6.html +share/doc/gimp/libgimpthumb/libgimpthumb-index.html +share/doc/gimp/libgimpthumb/libgimpthumb.devhelp +share/doc/gimp/libgimpthumb/libgimpthumb.devhelp2 +share/doc/gimp/libgimpthumb/libgimpthumb.html +share/doc/gimp/libgimpthumb/right.png +share/doc/gimp/libgimpthumb/style.css +share/doc/gimp/libgimpthumb/up.png +share/doc/gimp/libgimpwidgets/GimpBrowser.html +share/doc/gimp/libgimpwidgets/GimpButton.html +share/doc/gimp/libgimpwidgets/GimpCellRendererColor.html +share/doc/gimp/libgimpwidgets/GimpCellRendererToggle.html +share/doc/gimp/libgimpwidgets/GimpChainButton.html +share/doc/gimp/libgimpwidgets/GimpColorArea.html +share/doc/gimp/libgimpwidgets/GimpColorButton.html +share/doc/gimp/libgimpwidgets/GimpColorDisplay.html +share/doc/gimp/libgimpwidgets/GimpColorDisplayStack.html +share/doc/gimp/libgimpwidgets/GimpColorHexEntry.html +share/doc/gimp/libgimpwidgets/GimpColorNotebook.html +share/doc/gimp/libgimpwidgets/GimpColorProfileComboBox.html +share/doc/gimp/libgimpwidgets/GimpColorProfileStore.html +share/doc/gimp/libgimpwidgets/GimpColorScale.html +share/doc/gimp/libgimpwidgets/GimpColorScales.html +share/doc/gimp/libgimpwidgets/GimpColorSelect.html +share/doc/gimp/libgimpwidgets/GimpColorSelection.html +share/doc/gimp/libgimpwidgets/GimpColorSelector.html +share/doc/gimp/libgimpwidgets/GimpController.html +share/doc/gimp/libgimpwidgets/GimpDialog.html +share/doc/gimp/libgimpwidgets/GimpEnumComboBox.html +share/doc/gimp/libgimpwidgets/GimpEnumLabel.html +share/doc/gimp/libgimpwidgets/GimpEnumStore.html +share/doc/gimp/libgimpwidgets/GimpFileEntry.html +share/doc/gimp/libgimpwidgets/GimpFrame.html +share/doc/gimp/libgimpwidgets/GimpIntComboBox.html +share/doc/gimp/libgimpwidgets/GimpIntStore.html +share/doc/gimp/libgimpwidgets/GimpMemsizeEntry.html +share/doc/gimp/libgimpwidgets/GimpNumberPairEntry.html +share/doc/gimp/libgimpwidgets/GimpOffsetArea.html +share/doc/gimp/libgimpwidgets/GimpPageSelector.html +share/doc/gimp/libgimpwidgets/GimpPathEditor.html +share/doc/gimp/libgimpwidgets/GimpPickButton.html +share/doc/gimp/libgimpwidgets/GimpPixmap.html +share/doc/gimp/libgimpwidgets/GimpPreview.html +share/doc/gimp/libgimpwidgets/GimpPreviewArea.html +share/doc/gimp/libgimpwidgets/GimpRuler.html +share/doc/gimp/libgimpwidgets/GimpScrolledPreview.html +share/doc/gimp/libgimpwidgets/GimpSizeEntry.html +share/doc/gimp/libgimpwidgets/GimpStringComboBox.html +share/doc/gimp/libgimpwidgets/GimpUnitMenu.html +share/doc/gimp/libgimpwidgets/GimpZoomModel.html +share/doc/gimp/libgimpwidgets/gimp-browser.png +share/doc/gimp/libgimpwidgets/gimp-button.png +share/doc/gimp/libgimpwidgets/gimp-chain-button.png +share/doc/gimp/libgimpwidgets/gimp-color-area.png +share/doc/gimp/libgimpwidgets/gimp-color-button.png +share/doc/gimp/libgimpwidgets/gimp-color-hex-entry.png +share/doc/gimp/libgimpwidgets/gimp-color-profile-combo-box.png +share/doc/gimp/libgimpwidgets/gimp-color-scale.png +share/doc/gimp/libgimpwidgets/gimp-color-selection.png +share/doc/gimp/libgimpwidgets/gimp-dialog.png +share/doc/gimp/libgimpwidgets/gimp-enum-combo-box.png +share/doc/gimp/libgimpwidgets/gimp-enum-label.png +share/doc/gimp/libgimpwidgets/gimp-file-entry.png +share/doc/gimp/libgimpwidgets/gimp-frame.png +share/doc/gimp/libgimpwidgets/gimp-hint-box.png +share/doc/gimp/libgimpwidgets/gimp-int-combo-box.png +share/doc/gimp/libgimpwidgets/gimp-memsize-entry.png +share/doc/gimp/libgimpwidgets/gimp-number-pair-entry.png +share/doc/gimp/libgimpwidgets/gimp-offset-area.png +share/doc/gimp/libgimpwidgets/gimp-page-selector.png +share/doc/gimp/libgimpwidgets/gimp-path-editor.png +share/doc/gimp/libgimpwidgets/gimp-pick-button.png +share/doc/gimp/libgimpwidgets/gimp-preview-area.png +share/doc/gimp/libgimpwidgets/gimp-string-combo-box.png +share/doc/gimp/libgimpwidgets/gimp-unit-menu.png +share/doc/gimp/libgimpwidgets/home.png +share/doc/gimp/libgimpwidgets/index.html +share/doc/gimp/libgimpwidgets/index.sgml +share/doc/gimp/libgimpwidgets/left.png +share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpCairoUtils.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpEnumWidgets.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpHelpUI.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpHintBox.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpPropWidgets.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpQueryBox.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpStock.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpWidgets.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-cell-renderers.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-colordisplay.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-colorselector.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-controller.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-deprecated.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-gallery.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpoldwidgets.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-hierarchy.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-index-deprecated.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-index-new-in-2-2.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-index-new-in-2-4.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-index-new-in-2-6.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-index.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-utils.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-widgets.html +share/doc/gimp/libgimpwidgets/libgimpwidgets.devhelp +share/doc/gimp/libgimpwidgets/libgimpwidgets.devhelp2 +share/doc/gimp/libgimpwidgets/right.png +share/doc/gimp/libgimpwidgets/stock-anchor-16.png +share/doc/gimp/libgimpwidgets/stock-cap-butt-16.png +share/doc/gimp/libgimpwidgets/stock-cap-round-16.png +share/doc/gimp/libgimpwidgets/stock-cap-square-16.png +share/doc/gimp/libgimpwidgets/stock-center-16.png +share/doc/gimp/libgimpwidgets/stock-center-24.png +share/doc/gimp/libgimpwidgets/stock-channel-16.png +share/doc/gimp/libgimpwidgets/stock-channel-24.png +share/doc/gimp/libgimpwidgets/stock-channel-32.png +share/doc/gimp/libgimpwidgets/stock-channel-48.png +share/doc/gimp/libgimpwidgets/stock-channel-alpha-16.png +share/doc/gimp/libgimpwidgets/stock-channel-alpha-24.png +share/doc/gimp/libgimpwidgets/stock-channel-alpha-32.png +share/doc/gimp/libgimpwidgets/stock-channel-alpha-48.png +share/doc/gimp/libgimpwidgets/stock-channel-blue-16.png +share/doc/gimp/libgimpwidgets/stock-channel-blue-24.png +share/doc/gimp/libgimpwidgets/stock-channel-blue-32.png +share/doc/gimp/libgimpwidgets/stock-channel-blue-48.png +share/doc/gimp/libgimpwidgets/stock-channel-gray-16.png +share/doc/gimp/libgimpwidgets/stock-channel-gray-24.png +share/doc/gimp/libgimpwidgets/stock-channel-gray-32.png +share/doc/gimp/libgimpwidgets/stock-channel-gray-48.png +share/doc/gimp/libgimpwidgets/stock-channel-green-16.png +share/doc/gimp/libgimpwidgets/stock-channel-green-24.png +share/doc/gimp/libgimpwidgets/stock-channel-green-32.png +share/doc/gimp/libgimpwidgets/stock-channel-green-48.png +share/doc/gimp/libgimpwidgets/stock-channel-indexed-16.png +share/doc/gimp/libgimpwidgets/stock-channel-indexed-24.png +share/doc/gimp/libgimpwidgets/stock-channel-indexed-32.png +share/doc/gimp/libgimpwidgets/stock-channel-indexed-48.png +share/doc/gimp/libgimpwidgets/stock-channel-red-16.png +share/doc/gimp/libgimpwidgets/stock-channel-red-24.png +share/doc/gimp/libgimpwidgets/stock-channel-red-32.png +share/doc/gimp/libgimpwidgets/stock-channel-red-48.png +share/doc/gimp/libgimpwidgets/stock-channels-16.png +share/doc/gimp/libgimpwidgets/stock-channels-24.png +share/doc/gimp/libgimpwidgets/stock-char-picker-22.png +share/doc/gimp/libgimpwidgets/stock-close-12.png +share/doc/gimp/libgimpwidgets/stock-color-pick-from-screen-16.png +share/doc/gimp/libgimpwidgets/stock-color-picker-black-18.png +share/doc/gimp/libgimpwidgets/stock-color-picker-gray-18.png +share/doc/gimp/libgimpwidgets/stock-color-picker-white-18.png +share/doc/gimp/libgimpwidgets/stock-color-triangle-16.png +share/doc/gimp/libgimpwidgets/stock-colormap-16.png +share/doc/gimp/libgimpwidgets/stock-colormap-24.png +share/doc/gimp/libgimpwidgets/stock-controller-16.png +share/doc/gimp/libgimpwidgets/stock-controller-24.png +share/doc/gimp/libgimpwidgets/stock-controller-keyboard-16.png +share/doc/gimp/libgimpwidgets/stock-controller-keyboard-24.png +share/doc/gimp/libgimpwidgets/stock-controller-linux-input-16.png +share/doc/gimp/libgimpwidgets/stock-controller-linux-input-24.png +share/doc/gimp/libgimpwidgets/stock-controller-midi-16.png +share/doc/gimp/libgimpwidgets/stock-controller-midi-24.png +share/doc/gimp/libgimpwidgets/stock-controller-wheel-16.png +share/doc/gimp/libgimpwidgets/stock-controller-wheel-24.png +share/doc/gimp/libgimpwidgets/stock-convert-grayscale-16.png +share/doc/gimp/libgimpwidgets/stock-convert-indexed-16.png +share/doc/gimp/libgimpwidgets/stock-convert-rgb-16.png +share/doc/gimp/libgimpwidgets/stock-cursor-16.png +share/doc/gimp/libgimpwidgets/stock-cursor-24.png +share/doc/gimp/libgimpwidgets/stock-curve-free-16.png +share/doc/gimp/libgimpwidgets/stock-curve-smooth-16.png +share/doc/gimp/libgimpwidgets/stock-default-colors-12.png +share/doc/gimp/libgimpwidgets/stock-device-status-16.png +share/doc/gimp/libgimpwidgets/stock-device-status-24.png +share/doc/gimp/libgimpwidgets/stock-display-filter-16.png +share/doc/gimp/libgimpwidgets/stock-display-filter-24.png +share/doc/gimp/libgimpwidgets/stock-display-filter-colorblind-16.png +share/doc/gimp/libgimpwidgets/stock-display-filter-colorblind-24.png +share/doc/gimp/libgimpwidgets/stock-display-filter-contrast-16.png +share/doc/gimp/libgimpwidgets/stock-display-filter-contrast-24.png +share/doc/gimp/libgimpwidgets/stock-display-filter-gamma-16.png +share/doc/gimp/libgimpwidgets/stock-display-filter-gamma-24.png +share/doc/gimp/libgimpwidgets/stock-display-filter-lcms-16.png +share/doc/gimp/libgimpwidgets/stock-display-filter-lcms-24.png +share/doc/gimp/libgimpwidgets/stock-display-filter-proof-16.png +share/doc/gimp/libgimpwidgets/stock-display-filter-proof-24.png +share/doc/gimp/libgimpwidgets/stock-duplicate-16.png +share/doc/gimp/libgimpwidgets/stock-edit-16.png +share/doc/gimp/libgimpwidgets/stock-error-64.png +share/doc/gimp/libgimpwidgets/stock-eye-12.png +share/doc/gimp/libgimpwidgets/stock-eye-20.png +share/doc/gimp/libgimpwidgets/stock-flip-horizontal-16.png +share/doc/gimp/libgimpwidgets/stock-flip-vertical-16.png +share/doc/gimp/libgimpwidgets/stock-floating-selection-16.png +share/doc/gimp/libgimpwidgets/stock-floating-selection-24.png +share/doc/gimp/libgimpwidgets/stock-floating-selection-32.png +share/doc/gimp/libgimpwidgets/stock-floating-selection-48.png +share/doc/gimp/libgimpwidgets/stock-frame-64.png +share/doc/gimp/libgimpwidgets/stock-gegl-16.png +share/doc/gimp/libgimpwidgets/stock-gegl-22.png +share/doc/gimp/libgimpwidgets/stock-gradient-bilinear-16.png +share/doc/gimp/libgimpwidgets/stock-gradient-conical-asymmetric-16.png +share/doc/gimp/libgimpwidgets/stock-gradient-conical-symmetric-16.png +share/doc/gimp/libgimpwidgets/stock-gradient-linear-16.png +share/doc/gimp/libgimpwidgets/stock-gradient-radial-16.png +share/doc/gimp/libgimpwidgets/stock-gradient-shapeburst-angular-16.png +share/doc/gimp/libgimpwidgets/stock-gradient-shapeburst-dimpled-16.png +share/doc/gimp/libgimpwidgets/stock-gradient-shapeburst-spherical-16.png +share/doc/gimp/libgimpwidgets/stock-gradient-spiral-anticlockwise-16.png +share/doc/gimp/libgimpwidgets/stock-gradient-spiral-clockwise-16.png +share/doc/gimp/libgimpwidgets/stock-gradient-square-16.png +share/doc/gimp/libgimpwidgets/stock-gravity-east-24.png +share/doc/gimp/libgimpwidgets/stock-gravity-north-24.png +share/doc/gimp/libgimpwidgets/stock-gravity-north-east-24.png +share/doc/gimp/libgimpwidgets/stock-gravity-north-west-24.png +share/doc/gimp/libgimpwidgets/stock-gravity-south-24.png +share/doc/gimp/libgimpwidgets/stock-gravity-south-east-24.png +share/doc/gimp/libgimpwidgets/stock-gravity-south-west-24.png +share/doc/gimp/libgimpwidgets/stock-gravity-west-24.png +share/doc/gimp/libgimpwidgets/stock-grid-16.png +share/doc/gimp/libgimpwidgets/stock-hcenter-24.png +share/doc/gimp/libgimpwidgets/stock-hchain-24.png +share/doc/gimp/libgimpwidgets/stock-hchain-broken-24.png +share/doc/gimp/libgimpwidgets/stock-histogram-16.png +share/doc/gimp/libgimpwidgets/stock-histogram-22.png +share/doc/gimp/libgimpwidgets/stock-histogram-linear-16.png +share/doc/gimp/libgimpwidgets/stock-histogram-logarithmic-16.png +share/doc/gimp/libgimpwidgets/stock-image-16.png +share/doc/gimp/libgimpwidgets/stock-image-24.png +share/doc/gimp/libgimpwidgets/stock-image-32.png +share/doc/gimp/libgimpwidgets/stock-image-48.png +share/doc/gimp/libgimpwidgets/stock-images-16.png +share/doc/gimp/libgimpwidgets/stock-images-24.png +share/doc/gimp/libgimpwidgets/stock-info-16.png +share/doc/gimp/libgimpwidgets/stock-info-24.png +share/doc/gimp/libgimpwidgets/stock-info-64.png +share/doc/gimp/libgimpwidgets/stock-invert-16.png +share/doc/gimp/libgimpwidgets/stock-join-bevel-16.png +share/doc/gimp/libgimpwidgets/stock-join-miter-16.png +share/doc/gimp/libgimpwidgets/stock-join-round-16.png +share/doc/gimp/libgimpwidgets/stock-landscape-16.png +share/doc/gimp/libgimpwidgets/stock-landscape-22.png +share/doc/gimp/libgimpwidgets/stock-layer-16.png +share/doc/gimp/libgimpwidgets/stock-layer-24.png +share/doc/gimp/libgimpwidgets/stock-layer-32.png +share/doc/gimp/libgimpwidgets/stock-layer-48.png +share/doc/gimp/libgimpwidgets/stock-layer-mask-16.png +share/doc/gimp/libgimpwidgets/stock-layer-mask-24.png +share/doc/gimp/libgimpwidgets/stock-layer-mask-32.png +share/doc/gimp/libgimpwidgets/stock-layer-mask-48.png +share/doc/gimp/libgimpwidgets/stock-layer-to-imagesize-16.png +share/doc/gimp/libgimpwidgets/stock-layers-16.png +share/doc/gimp/libgimpwidgets/stock-layers-24.png +share/doc/gimp/libgimpwidgets/stock-letter-spacing-22.png +share/doc/gimp/libgimpwidgets/stock-line-spacing-22.png +share/doc/gimp/libgimpwidgets/stock-linked-12.png +share/doc/gimp/libgimpwidgets/stock-linked-20.png +share/doc/gimp/libgimpwidgets/stock-list-16.png +share/doc/gimp/libgimpwidgets/stock-menu-left-12.png +share/doc/gimp/libgimpwidgets/stock-menu-right-12.png +share/doc/gimp/libgimpwidgets/stock-merge-down-16.png +share/doc/gimp/libgimpwidgets/stock-move-to-screen-16.png +share/doc/gimp/libgimpwidgets/stock-move-to-screen-24.png +share/doc/gimp/libgimpwidgets/stock-navigation-16.png +share/doc/gimp/libgimpwidgets/stock-paste-as-new-16.png +share/doc/gimp/libgimpwidgets/stock-paste-into-16.png +share/doc/gimp/libgimpwidgets/stock-path-16.png +share/doc/gimp/libgimpwidgets/stock-path-22.png +share/doc/gimp/libgimpwidgets/stock-path-stroke-16.png +share/doc/gimp/libgimpwidgets/stock-paths-16.png +share/doc/gimp/libgimpwidgets/stock-paths-22.png +share/doc/gimp/libgimpwidgets/stock-plugin-16.png +share/doc/gimp/libgimpwidgets/stock-portrait-16.png +share/doc/gimp/libgimpwidgets/stock-portrait-22.png +share/doc/gimp/libgimpwidgets/stock-print-resolution-16.png +share/doc/gimp/libgimpwidgets/stock-print-resolution-24.png +share/doc/gimp/libgimpwidgets/stock-question-64.png +share/doc/gimp/libgimpwidgets/stock-quick-mask-off-12.png +share/doc/gimp/libgimpwidgets/stock-quick-mask-on-12.png +share/doc/gimp/libgimpwidgets/stock-reset-16.png +share/doc/gimp/libgimpwidgets/stock-reshow-filter-16.png +share/doc/gimp/libgimpwidgets/stock-resize-16.png +share/doc/gimp/libgimpwidgets/stock-rotate-180-16.png +share/doc/gimp/libgimpwidgets/stock-rotate-270-16.png +share/doc/gimp/libgimpwidgets/stock-rotate-90-16.png +share/doc/gimp/libgimpwidgets/stock-sample-point-16.png +share/doc/gimp/libgimpwidgets/stock-sample-point-24.png +share/doc/gimp/libgimpwidgets/stock-scale-16.png +share/doc/gimp/libgimpwidgets/stock-selection-16.png +share/doc/gimp/libgimpwidgets/stock-selection-add-16.png +share/doc/gimp/libgimpwidgets/stock-selection-all-16.png +share/doc/gimp/libgimpwidgets/stock-selection-border-16.png +share/doc/gimp/libgimpwidgets/stock-selection-grow-16.png +share/doc/gimp/libgimpwidgets/stock-selection-intersect-16.png +share/doc/gimp/libgimpwidgets/stock-selection-none-16.png +share/doc/gimp/libgimpwidgets/stock-selection-replace-16.png +share/doc/gimp/libgimpwidgets/stock-selection-shrink-16.png +share/doc/gimp/libgimpwidgets/stock-selection-stroke-16.png +share/doc/gimp/libgimpwidgets/stock-selection-subtract-16.png +share/doc/gimp/libgimpwidgets/stock-selection-to-channel-16.png +share/doc/gimp/libgimpwidgets/stock-selection-to-path-16.png +share/doc/gimp/libgimpwidgets/stock-shape-circle-16.png +share/doc/gimp/libgimpwidgets/stock-shape-diamond-16.png +share/doc/gimp/libgimpwidgets/stock-shape-square-16.png +share/doc/gimp/libgimpwidgets/stock-swap-colors-12.png +share/doc/gimp/libgimpwidgets/stock-template-16.png +share/doc/gimp/libgimpwidgets/stock-template-24.png +share/doc/gimp/libgimpwidgets/stock-text-dir-ltr-24.png +share/doc/gimp/libgimpwidgets/stock-text-dir-rtl-24.png +share/doc/gimp/libgimpwidgets/stock-text-layer-16.png +share/doc/gimp/libgimpwidgets/stock-text-layer-24.png +share/doc/gimp/libgimpwidgets/stock-text-layer-32.png +share/doc/gimp/libgimpwidgets/stock-text-layer-48.png +share/doc/gimp/libgimpwidgets/stock-texture-64.png +share/doc/gimp/libgimpwidgets/stock-toilet-paper-16.png +share/doc/gimp/libgimpwidgets/stock-toilet-paper-24.png +share/doc/gimp/libgimpwidgets/stock-tool-airbrush-16.png +share/doc/gimp/libgimpwidgets/stock-tool-airbrush-22.png +share/doc/gimp/libgimpwidgets/stock-tool-align-16.png +share/doc/gimp/libgimpwidgets/stock-tool-align-22.png +share/doc/gimp/libgimpwidgets/stock-tool-blend-16.png +share/doc/gimp/libgimpwidgets/stock-tool-blend-22.png +share/doc/gimp/libgimpwidgets/stock-tool-blur-16.png +share/doc/gimp/libgimpwidgets/stock-tool-blur-22.png +share/doc/gimp/libgimpwidgets/stock-tool-brightness-contrast-16.png +share/doc/gimp/libgimpwidgets/stock-tool-brightness-contrast-22.png +share/doc/gimp/libgimpwidgets/stock-tool-bucket-fill-16.png +share/doc/gimp/libgimpwidgets/stock-tool-bucket-fill-22.png +share/doc/gimp/libgimpwidgets/stock-tool-by-color-select-16.png +share/doc/gimp/libgimpwidgets/stock-tool-by-color-select-22.png +share/doc/gimp/libgimpwidgets/stock-tool-clone-16.png +share/doc/gimp/libgimpwidgets/stock-tool-clone-22.png +share/doc/gimp/libgimpwidgets/stock-tool-color-balance-16.png +share/doc/gimp/libgimpwidgets/stock-tool-color-balance-22.png +share/doc/gimp/libgimpwidgets/stock-tool-color-picker-16.png +share/doc/gimp/libgimpwidgets/stock-tool-color-picker-22.png +share/doc/gimp/libgimpwidgets/stock-tool-colorize-16.png +share/doc/gimp/libgimpwidgets/stock-tool-colorize-22.png +share/doc/gimp/libgimpwidgets/stock-tool-crop-16.png +share/doc/gimp/libgimpwidgets/stock-tool-crop-22.png +share/doc/gimp/libgimpwidgets/stock-tool-curves-16.png +share/doc/gimp/libgimpwidgets/stock-tool-curves-22.png +share/doc/gimp/libgimpwidgets/stock-tool-dodge-16.png +share/doc/gimp/libgimpwidgets/stock-tool-dodge-22.png +share/doc/gimp/libgimpwidgets/stock-tool-ellipse-select-16.png +share/doc/gimp/libgimpwidgets/stock-tool-ellipse-select-22.png +share/doc/gimp/libgimpwidgets/stock-tool-eraser-16.png +share/doc/gimp/libgimpwidgets/stock-tool-eraser-22.png +share/doc/gimp/libgimpwidgets/stock-tool-flip-16.png +share/doc/gimp/libgimpwidgets/stock-tool-flip-22.png +share/doc/gimp/libgimpwidgets/stock-tool-foreground-select-16.png +share/doc/gimp/libgimpwidgets/stock-tool-foreground-select-22.png +share/doc/gimp/libgimpwidgets/stock-tool-free-select-16.png +share/doc/gimp/libgimpwidgets/stock-tool-free-select-22.png +share/doc/gimp/libgimpwidgets/stock-tool-fuzzy-select-16.png +share/doc/gimp/libgimpwidgets/stock-tool-fuzzy-select-22.png +share/doc/gimp/libgimpwidgets/stock-tool-heal-16.png +share/doc/gimp/libgimpwidgets/stock-tool-heal-22.png +share/doc/gimp/libgimpwidgets/stock-tool-hue-saturation-16.png +share/doc/gimp/libgimpwidgets/stock-tool-hue-saturation-22.png +share/doc/gimp/libgimpwidgets/stock-tool-ink-16.png +share/doc/gimp/libgimpwidgets/stock-tool-ink-22.png +share/doc/gimp/libgimpwidgets/stock-tool-iscissors-16.png +share/doc/gimp/libgimpwidgets/stock-tool-iscissors-22.png +share/doc/gimp/libgimpwidgets/stock-tool-levels-16.png +share/doc/gimp/libgimpwidgets/stock-tool-levels-22.png +share/doc/gimp/libgimpwidgets/stock-tool-measure-16.png +share/doc/gimp/libgimpwidgets/stock-tool-measure-22.png +share/doc/gimp/libgimpwidgets/stock-tool-move-16.png +share/doc/gimp/libgimpwidgets/stock-tool-move-22.png +share/doc/gimp/libgimpwidgets/stock-tool-options-16.png +share/doc/gimp/libgimpwidgets/stock-tool-options-24.png +share/doc/gimp/libgimpwidgets/stock-tool-paintbrush-16.png +share/doc/gimp/libgimpwidgets/stock-tool-paintbrush-22.png +share/doc/gimp/libgimpwidgets/stock-tool-path-16.png +share/doc/gimp/libgimpwidgets/stock-tool-path-22.png +share/doc/gimp/libgimpwidgets/stock-tool-pencil-16.png +share/doc/gimp/libgimpwidgets/stock-tool-pencil-22.png +share/doc/gimp/libgimpwidgets/stock-tool-perspective-16.png +share/doc/gimp/libgimpwidgets/stock-tool-perspective-22.png +share/doc/gimp/libgimpwidgets/stock-tool-perspective-clone-16.png +share/doc/gimp/libgimpwidgets/stock-tool-perspective-clone-22.png +share/doc/gimp/libgimpwidgets/stock-tool-posterize-16.png +share/doc/gimp/libgimpwidgets/stock-tool-posterize-22.png +share/doc/gimp/libgimpwidgets/stock-tool-rect-select-16.png +share/doc/gimp/libgimpwidgets/stock-tool-rect-select-22.png +share/doc/gimp/libgimpwidgets/stock-tool-rotate-16.png +share/doc/gimp/libgimpwidgets/stock-tool-rotate-22.png +share/doc/gimp/libgimpwidgets/stock-tool-scale-16.png +share/doc/gimp/libgimpwidgets/stock-tool-scale-22.png +share/doc/gimp/libgimpwidgets/stock-tool-shear-16.png +share/doc/gimp/libgimpwidgets/stock-tool-shear-22.png +share/doc/gimp/libgimpwidgets/stock-tool-smudge-16.png +share/doc/gimp/libgimpwidgets/stock-tool-smudge-22.png +share/doc/gimp/libgimpwidgets/stock-tool-text-16.png +share/doc/gimp/libgimpwidgets/stock-tool-text-22.png +share/doc/gimp/libgimpwidgets/stock-tool-threshold-16.png +share/doc/gimp/libgimpwidgets/stock-tool-threshold-22.png +share/doc/gimp/libgimpwidgets/stock-tool-zoom-16.png +share/doc/gimp/libgimpwidgets/stock-tool-zoom-22.png +share/doc/gimp/libgimpwidgets/stock-tools-16.png +share/doc/gimp/libgimpwidgets/stock-tools-24.png +share/doc/gimp/libgimpwidgets/stock-transparency-16.png +share/doc/gimp/libgimpwidgets/stock-transparency-24.png +share/doc/gimp/libgimpwidgets/stock-undo-history-16.png +share/doc/gimp/libgimpwidgets/stock-undo-history-24.png +share/doc/gimp/libgimpwidgets/stock-user-manual-16.png +share/doc/gimp/libgimpwidgets/stock-user-manual-24.png +share/doc/gimp/libgimpwidgets/stock-user-manual-32.png +share/doc/gimp/libgimpwidgets/stock-user-manual-64.png +share/doc/gimp/libgimpwidgets/stock-vcenter-24.png +share/doc/gimp/libgimpwidgets/stock-vchain-24.png +share/doc/gimp/libgimpwidgets/stock-vchain-broken-24.png +share/doc/gimp/libgimpwidgets/stock-video-16.png +share/doc/gimp/libgimpwidgets/stock-video-24.png +share/doc/gimp/libgimpwidgets/stock-warning-16.png +share/doc/gimp/libgimpwidgets/stock-warning-24.png +share/doc/gimp/libgimpwidgets/stock-warning-64.png +share/doc/gimp/libgimpwidgets/stock-web-16.png +share/doc/gimp/libgimpwidgets/stock-web-24.png +share/doc/gimp/libgimpwidgets/stock-wilber-16.png +share/doc/gimp/libgimpwidgets/stock-wilber-22.png +share/doc/gimp/libgimpwidgets/stock-wilber-64.png +share/doc/gimp/libgimpwidgets/stock-wilber-eek-64.png +share/doc/gimp/libgimpwidgets/stock-zoom-follow-window-12.png +share/doc/gimp/libgimpwidgets/style.css +share/doc/gimp/libgimpwidgets/up.png +share/gimp/brushes/10x10square.gbr +share/gimp/brushes/10x10squareBlur.gbr +share/gimp/brushes/20x20square.gbr +share/gimp/brushes/20x20squareBlur.gbr +share/gimp/brushes/5x5square.gbr +share/gimp/brushes/5x5squareBlur.gbr +share/gimp/brushes/Calligraphic-Brush-0.vbr +share/gimp/brushes/Calligraphic-Brush-1.vbr +share/gimp/brushes/Calligraphic-Brush-2.vbr +share/gimp/brushes/Calligraphic-Brush-3.vbr +share/gimp/brushes/Circle-1.vbr +share/gimp/brushes/Circle-11.vbr +share/gimp/brushes/Circle-13.vbr +share/gimp/brushes/Circle-15.vbr +share/gimp/brushes/Circle-17.vbr +share/gimp/brushes/Circle-19.vbr +share/gimp/brushes/Circle-3.vbr +share/gimp/brushes/Circle-5.vbr +share/gimp/brushes/Circle-7.vbr +share/gimp/brushes/Circle-9.vbr +share/gimp/brushes/Circle-Fuzzy-11.vbr +share/gimp/brushes/Circle-Fuzzy-13.vbr +share/gimp/brushes/Circle-Fuzzy-15.vbr +share/gimp/brushes/Circle-Fuzzy-17.vbr +share/gimp/brushes/Circle-Fuzzy-19.vbr +share/gimp/brushes/Circle-Fuzzy-3.vbr +share/gimp/brushes/Circle-Fuzzy-5.vbr +share/gimp/brushes/Circle-Fuzzy-7.vbr +share/gimp/brushes/Circle-Fuzzy-9.vbr +share/gimp/brushes/Diagonal-Star-11.vbr +share/gimp/brushes/Diagonal-Star-17.vbr +share/gimp/brushes/Diagonal-Star-25.vbr +share/gimp/brushes/SketchBrush-16.gih +share/gimp/brushes/SketchBrush-32.gih +share/gimp/brushes/SketchBrush-64.gih +share/gimp/brushes/confetti.gbr +share/gimp/brushes/confetti.gih +share/gimp/brushes/dunes.gbr +share/gimp/brushes/feltpen.gih +share/gimp/brushes/galaxy.gbr +share/gimp/brushes/galaxy_big.gbr +share/gimp/brushes/galaxy_small.gbr +share/gimp/brushes/hsparks.gih +share/gimp/brushes/pepper.gbr +share/gimp/brushes/pixel.gbr +share/gimp/brushes/vine.gih +share/gimp/fractalexplorer/Asteroid_Field +share/gimp/fractalexplorer/Bar_Code_Label +share/gimp/fractalexplorer/Beauty_of_Nature +share/gimp/fractalexplorer/Blue_Curtain +share/gimp/fractalexplorer/Car_Track +share/gimp/fractalexplorer/Energetic_Diamond +share/gimp/fractalexplorer/Explosive +share/gimp/fractalexplorer/Flower +share/gimp/fractalexplorer/Fragments +share/gimp/fractalexplorer/Hemp +share/gimp/fractalexplorer/High_Voltage +share/gimp/fractalexplorer/Hoops +share/gimp/fractalexplorer/Ice_Crystal +share/gimp/fractalexplorer/Leaves +share/gimp/fractalexplorer/Lightning +share/gimp/fractalexplorer/Mandelbrot +share/gimp/fractalexplorer/Marble +share/gimp/fractalexplorer/Marble2 +share/gimp/fractalexplorer/Medusa +share/gimp/fractalexplorer/Nautilus +share/gimp/fractalexplorer/Nebula +share/gimp/fractalexplorer/Plant +share/gimp/fractalexplorer/Rose +share/gimp/fractalexplorer/Saturn +share/gimp/fractalexplorer/Snow_Crystal +share/gimp/fractalexplorer/Soma +share/gimp/fractalexplorer/Spark +share/gimp/fractalexplorer/Suns +share/gimp/fractalexplorer/Tentacles +share/gimp/fractalexplorer/The_Green_Place +share/gimp/fractalexplorer/Wave +share/gimp/fractalexplorer/Wood +share/gimp/fractalexplorer/Zooming_Circle +share/gimp/gfig/A_star +share/gimp/gfig/curves +share/gimp/gfig/polys +share/gimp/gfig/ring +share/gimp/gfig/ring+star +share/gimp/gfig/simily +share/gimp/gfig/spirals_and_stars +share/gimp/gfig/sprial +share/gimp/gfig/star2 +share/gimp/gfig/stars +share/gimp/gflare/Bright_Star +share/gimp/gflare/Classic +share/gimp/gflare/Default +share/gimp/gflare/Distant_Sun +share/gimp/gflare/GFlare_101 +share/gimp/gflare/GFlare_102 +share/gimp/gflare/Hidden_Planet +share/gimp/gimpressionist/Brushes/arrow01.pgm +share/gimp/gimpressionist/Brushes/ball.ppm +share/gimp/gimpressionist/Brushes/blob.ppm +share/gimp/gimpressionist/Brushes/box.ppm +share/gimp/gimpressionist/Brushes/chalk01.pgm +share/gimp/gimpressionist/Brushes/cone.ppm +share/gimp/gimpressionist/Brushes/crayon01.pgm +share/gimp/gimpressionist/Brushes/crayon02.pgm +share/gimp/gimpressionist/Brushes/crayon03.pgm +share/gimp/gimpressionist/Brushes/crayon04.pgm +share/gimp/gimpressionist/Brushes/crayon05.pgm +share/gimp/gimpressionist/Brushes/crayon06.pgm +share/gimp/gimpressionist/Brushes/crayon07.pgm +share/gimp/gimpressionist/Brushes/crayon08.pgm +share/gimp/gimpressionist/Brushes/defaultbrush.pgm +share/gimp/gimpressionist/Brushes/dribble.pgm +share/gimp/gimpressionist/Brushes/fabric.pgm +share/gimp/gimpressionist/Brushes/fabric01.pgm +share/gimp/gimpressionist/Brushes/fabric02.pgm +share/gimp/gimpressionist/Brushes/fabric03.pgm +share/gimp/gimpressionist/Brushes/flower01.pgm +share/gimp/gimpressionist/Brushes/flower02.pgm +share/gimp/gimpressionist/Brushes/flower03.pgm +share/gimp/gimpressionist/Brushes/flower04.pgm +share/gimp/gimpressionist/Brushes/grad01.pgm +share/gimp/gimpressionist/Brushes/grad02.pgm +share/gimp/gimpressionist/Brushes/grad03.pgm +share/gimp/gimpressionist/Brushes/heart.ppm +share/gimp/gimpressionist/Brushes/leaf01.pgm +share/gimp/gimpressionist/Brushes/paintbrush.pgm +share/gimp/gimpressionist/Brushes/paintbrush01.pgm +share/gimp/gimpressionist/Brushes/paintbrush02.pgm +share/gimp/gimpressionist/Brushes/paintbrush03.pgm +share/gimp/gimpressionist/Brushes/paintbrush04.pgm +share/gimp/gimpressionist/Brushes/paper01.pgm +share/gimp/gimpressionist/Brushes/paper02.pgm +share/gimp/gimpressionist/Brushes/paper03.pgm +share/gimp/gimpressionist/Brushes/paper04.pgm +share/gimp/gimpressionist/Brushes/pentagram.pgm +share/gimp/gimpressionist/Brushes/scribble.pgm +share/gimp/gimpressionist/Brushes/shape01.pgm +share/gimp/gimpressionist/Brushes/shape02.pgm +share/gimp/gimpressionist/Brushes/shape03.pgm +share/gimp/gimpressionist/Brushes/shape04.pgm +share/gimp/gimpressionist/Brushes/snow1.pgm +share/gimp/gimpressionist/Brushes/sphere.ppm +share/gimp/gimpressionist/Brushes/splat1.pgm +share/gimp/gimpressionist/Brushes/splat2.pgm +share/gimp/gimpressionist/Brushes/splat3.pgm +share/gimp/gimpressionist/Brushes/spunge01.pgm +share/gimp/gimpressionist/Brushes/spunge02.pgm +share/gimp/gimpressionist/Brushes/spunge03.pgm +share/gimp/gimpressionist/Brushes/spunge04.pgm +share/gimp/gimpressionist/Brushes/spunge05.pgm +share/gimp/gimpressionist/Brushes/strange01.pgm +share/gimp/gimpressionist/Brushes/thegimp.pgm +share/gimp/gimpressionist/Brushes/torus.ppm +share/gimp/gimpressionist/Brushes/wavy.pgm +share/gimp/gimpressionist/Brushes/weave.pgm +share/gimp/gimpressionist/Brushes/worm.pgm +share/gimp/gimpressionist/Paper/bricks.pgm +share/gimp/gimpressionist/Paper/bricks2.pgm +share/gimp/gimpressionist/Paper/burlap.pgm +share/gimp/gimpressionist/Paper/canvas2.pgm +share/gimp/gimpressionist/Paper/defaultpaper.pgm +share/gimp/gimpressionist/Paper/marble.pgm +share/gimp/gimpressionist/Paper/marble2.pgm +share/gimp/gimpressionist/Paper/stone.pgm +share/gimp/gimpressionist/Paper/struc.pgm +share/gimp/gimpressionist/Presets/ApplyCanvas +share/gimp/gimpressionist/Presets/Ballpark +share/gimp/gimpressionist/Presets/Canvas +share/gimp/gimpressionist/Presets/Crosshatch +share/gimp/gimpressionist/Presets/Cubism +share/gimp/gimpressionist/Presets/Dotify +share/gimp/gimpressionist/Presets/Embroidery +share/gimp/gimpressionist/Presets/Feathers +share/gimp/gimpressionist/Presets/Felt-marker +share/gimp/gimpressionist/Presets/Flowerbed +share/gimp/gimpressionist/Presets/Furry +share/gimp/gimpressionist/Presets/Line-art +share/gimp/gimpressionist/Presets/Line-art-2 +share/gimp/gimpressionist/Presets/Maggot-invasion +share/gimp/gimpressionist/Presets/MarbleMadness +share/gimp/gimpressionist/Presets/Mossy +share/gimp/gimpressionist/Presets/Painted_Rock +share/gimp/gimpressionist/Presets/Parquette +share/gimp/gimpressionist/Presets/Patchwork +share/gimp/gimpressionist/Presets/Ringworks +share/gimp/gimpressionist/Presets/Sample +share/gimp/gimpressionist/Presets/Smash +share/gimp/gimpressionist/Presets/Straws +share/gimp/gimpressionist/Presets/Weave +share/gimp/gimpressionist/Presets/Wormcan +share/gimp/gradients/Abstract_1.ggr +share/gimp/gradients/Abstract_2.ggr +share/gimp/gradients/Abstract_3.ggr +share/gimp/gradients/Aneurism.ggr +share/gimp/gradients/Blinds.ggr +share/gimp/gradients/Blue_Green.ggr +share/gimp/gradients/Browns.ggr +share/gimp/gradients/Brushed_Aluminium.ggr +share/gimp/gradients/Burning_Paper.ggr +share/gimp/gradients/Burning_Transparency.ggr +share/gimp/gradients/CD.ggr +share/gimp/gradients/CD_Half.ggr +share/gimp/gradients/Caribbean_Blues.ggr +share/gimp/gradients/Coffee.ggr +share/gimp/gradients/Cold_Steel.ggr +share/gimp/gradients/Cold_Steel_2.ggr +share/gimp/gradients/Crown_molding.ggr +share/gimp/gradients/Dark_1.ggr +share/gimp/gradients/Deep_Sea.ggr +share/gimp/gradients/Default.ggr +share/gimp/gradients/Flare_Glow_Angular_1.ggr +share/gimp/gradients/Flare_Glow_Radial_1.ggr +share/gimp/gradients/Flare_Glow_Radial_2.ggr +share/gimp/gradients/Flare_Glow_Radial_3.ggr +share/gimp/gradients/Flare_Glow_Radial_4.ggr +share/gimp/gradients/Flare_Radial_101.ggr +share/gimp/gradients/Flare_Radial_102.ggr +share/gimp/gradients/Flare_Radial_103.ggr +share/gimp/gradients/Flare_Rays_Radial_1.ggr +share/gimp/gradients/Flare_Rays_Radial_2.ggr +share/gimp/gradients/Flare_Rays_Size_1.ggr +share/gimp/gradients/Flare_Sizefac_101.ggr +share/gimp/gradients/Four_bars.ggr +share/gimp/gradients/French_flag.ggr +share/gimp/gradients/French_flag_smooth.ggr +share/gimp/gradients/Full_saturation_spectrum_CCW.ggr +share/gimp/gradients/Full_saturation_spectrum_CW.ggr +share/gimp/gradients/German_flag.ggr +share/gimp/gradients/German_flag_smooth.ggr +share/gimp/gradients/Golden.ggr +share/gimp/gradients/Greens.ggr +share/gimp/gradients/Horizon_1.ggr +share/gimp/gradients/Horizon_2.ggr +share/gimp/gradients/Incandescent.ggr +share/gimp/gradients/Land_1.ggr +share/gimp/gradients/Land_and_Sea.ggr +share/gimp/gradients/Metallic_Something.ggr +share/gimp/gradients/Mexican_flag.ggr +share/gimp/gradients/Mexican_flag_smooth.ggr +share/gimp/gradients/Nauseating_Headache.ggr +share/gimp/gradients/Neon_Cyan.ggr +share/gimp/gradients/Neon_Green.ggr +share/gimp/gradients/Neon_Yellow.ggr +share/gimp/gradients/Pastel_Rainbow.ggr +share/gimp/gradients/Pastels.ggr +share/gimp/gradients/Purples.ggr +share/gimp/gradients/Radial_Eyeball_Blue.ggr +share/gimp/gradients/Radial_Eyeball_Brown.ggr +share/gimp/gradients/Radial_Eyeball_Green.ggr +share/gimp/gradients/Radial_Glow_1.ggr +share/gimp/gradients/Radial_Rainbow_Hoop.ggr +share/gimp/gradients/Romanian_flag.ggr +share/gimp/gradients/Romanian_flag_smooth.ggr +share/gimp/gradients/Rounded_edge.ggr +share/gimp/gradients/Shadows_1.ggr +share/gimp/gradients/Shadows_2.ggr +share/gimp/gradients/Shadows_3.ggr +share/gimp/gradients/Skyline.ggr +share/gimp/gradients/Skyline_polluted.ggr +share/gimp/gradients/Square_Wood_Frame.ggr +share/gimp/gradients/Sunrise.ggr +share/gimp/gradients/Three_bars_sin.ggr +share/gimp/gradients/Tropical_Colors.ggr +share/gimp/gradients/Tube_Red.ggr +share/gimp/gradients/Wood_1.ggr +share/gimp/gradients/Wood_2.ggr +share/gimp/gradients/Yellow_Contrast.ggr +share/gimp/gradients/Yellow_Orange.ggr +share/gimp/images/gimp-logo.png +share/gimp/images/gimp-splash.png +share/gimp/images/wilber.png +share/gimp/menus/brush-editor-menu.xml +share/gimp/menus/brushes-menu.xml +share/gimp/menus/buffers-menu.xml +share/gimp/menus/channels-menu.xml +share/gimp/menus/colormap-menu.xml +share/gimp/menus/cursor-info-menu.xml +share/gimp/menus/dockable-menu.xml +share/gimp/menus/documents-menu.xml +share/gimp/menus/error-console-menu.xml +share/gimp/menus/fonts-menu.xml +share/gimp/menus/gradient-editor-menu.xml +share/gimp/menus/gradients-menu.xml +share/gimp/menus/image-menu.xml +share/gimp/menus/images-menu.xml +share/gimp/menus/layers-menu.xml +share/gimp/menus/palette-editor-menu.xml +share/gimp/menus/palettes-menu.xml +share/gimp/menus/patterns-menu.xml +share/gimp/menus/quick-mask-menu.xml +share/gimp/menus/sample-points-menu.xml +share/gimp/menus/selection-menu.xml +share/gimp/menus/templates-menu.xml +share/gimp/menus/text-editor-toolbar.xml +share/gimp/menus/tool-options-menu.xml +share/gimp/menus/tools-menu.xml +share/gimp/menus/undo-menu.xml +share/gimp/menus/vectors-menu.xml +share/gimp/palettes/Bears.gpl +share/gimp/palettes/Bgold.gpl +share/gimp/palettes/Blues.gpl +share/gimp/palettes/Borders.gpl +share/gimp/palettes/Browns_And_Yellows.gpl +share/gimp/palettes/Caramel.gpl +share/gimp/palettes/Cascade.gpl +share/gimp/palettes/China.gpl +share/gimp/palettes/Coldfire.gpl +share/gimp/palettes/Cool_Colors.gpl +share/gimp/palettes/Cranes.gpl +share/gimp/palettes/Dark_pastels.gpl +share/gimp/palettes/Default.gpl +share/gimp/palettes/Ega.gpl +share/gimp/palettes/Firecode.gpl +share/gimp/palettes/Gold.gpl +share/gimp/palettes/GrayViolet.gpl +share/gimp/palettes/Grayblue.gpl +share/gimp/palettes/Grays.gpl +share/gimp/palettes/Greens.gpl +share/gimp/palettes/Hilite.gpl +share/gimp/palettes/Khaki.gpl +share/gimp/palettes/Lights.gpl +share/gimp/palettes/Muted.gpl +share/gimp/palettes/Named_Colors.gpl +share/gimp/palettes/News3.gpl +share/gimp/palettes/Op2.gpl +share/gimp/palettes/Paintjet.gpl +share/gimp/palettes/Pastels.gpl +share/gimp/palettes/Plasma.gpl +share/gimp/palettes/Reds.gpl +share/gimp/palettes/Reds_And_Purples.gpl +share/gimp/palettes/Royal.gpl +share/gimp/palettes/Tango.gpl +share/gimp/palettes/Topographic.gpl +share/gimp/palettes/Visibone.gpl +share/gimp/palettes/Visibone_2.gpl +share/gimp/palettes/Volcano.gpl +share/gimp/palettes/Warm_Colors.gpl +share/gimp/palettes/Web.gpl +share/gimp/patterns/3dgreen.pat +share/gimp/patterns/Craters.pat +share/gimp/patterns/Moonfoot.pat +share/gimp/patterns/Stripes1px.pat +share/gimp/patterns/Stripes2px.pat +share/gimp/patterns/amethyst.pat +share/gimp/patterns/bark.pat +share/gimp/patterns/blue.pat +share/gimp/patterns/bluegrid.pat +share/gimp/patterns/bluesquares.pat +share/gimp/patterns/blueweb.pat +share/gimp/patterns/brick.pat +share/gimp/patterns/burlap.pat +share/gimp/patterns/burlwood.pat +share/gimp/patterns/choc_swirl.pat +share/gimp/patterns/corkboard.pat +share/gimp/patterns/cracked.pat +share/gimp/patterns/crinklepaper.pat +share/gimp/patterns/electric.pat +share/gimp/patterns/fibers.pat +share/gimp/patterns/granite1.pat +share/gimp/patterns/ground1.pat +share/gimp/patterns/ice.pat +share/gimp/patterns/java.pat +share/gimp/patterns/leather.pat +share/gimp/patterns/leaves.pat +share/gimp/patterns/leopard.pat +share/gimp/patterns/lightning.pat +share/gimp/patterns/marble1.pat +share/gimp/patterns/marble2.pat +share/gimp/patterns/marble3.pat +share/gimp/patterns/nops.pat +share/gimp/patterns/paper.pat +share/gimp/patterns/parque1.pat +share/gimp/patterns/parque2.pat +share/gimp/patterns/parque3.pat +share/gimp/patterns/pastel.pat +share/gimp/patterns/pine.pat +share/gimp/patterns/pink_marble.pat +share/gimp/patterns/pool.pat +share/gimp/patterns/qube1.pat +share/gimp/patterns/rain.pat +share/gimp/patterns/recessed.pat +share/gimp/patterns/redcube.pat +share/gimp/patterns/rock.pat +share/gimp/patterns/sky.pat +share/gimp/patterns/slate.pat +share/gimp/patterns/sm_squares.pat +share/gimp/patterns/starfield.pat +share/gimp/patterns/stone33.pat +share/gimp/patterns/terra.pat +share/gimp/patterns/walnut.pat +share/gimp/patterns/warning.pat +share/gimp/patterns/wood1.pat +share/gimp/patterns/wood2.pat +share/gimp/patterns/wood3.pat +share/gimp/patterns/wood4.pat +share/gimp/patterns/wood5.pat +share/gimp/scripts/3d-outline.scm +share/gimp/scripts/3dTruchet.scm +share/gimp/scripts/add-bevel.scm +share/gimp/scripts/addborder.scm +share/gimp/scripts/alien-glow-arrow.scm +share/gimp/scripts/alien-glow-bar.scm +share/gimp/scripts/alien-glow-bullet.scm +share/gimp/scripts/alien-glow-button.scm +share/gimp/scripts/alien-glow-logo.scm +share/gimp/scripts/alien-neon-logo.scm +share/gimp/scripts/basic1-logo.scm +share/gimp/scripts/basic2-logo.scm +share/gimp/scripts/beveled-button.scm +share/gimp/scripts/beveled-pattern-arrow.scm +share/gimp/scripts/beveled-pattern-bullet.scm +share/gimp/scripts/beveled-pattern-button.scm +share/gimp/scripts/beveled-pattern-heading.scm +share/gimp/scripts/beveled-pattern-hrule.scm +share/gimp/scripts/blend-anim.scm +share/gimp/scripts/blended-logo.scm +share/gimp/scripts/bovinated-logo.scm +share/gimp/scripts/burn-in-anim.scm +share/gimp/scripts/camo.scm +share/gimp/scripts/carve-it.scm +share/gimp/scripts/carved-logo.scm +share/gimp/scripts/chalk.scm +share/gimp/scripts/chip-away.scm +share/gimp/scripts/chrome-it.scm +share/gimp/scripts/chrome-logo.scm +share/gimp/scripts/circuit.scm +share/gimp/scripts/clothify.scm +share/gimp/scripts/coffee.scm +share/gimp/scripts/comic-logo.scm +share/gimp/scripts/coolmetal-logo.scm +share/gimp/scripts/copy-visible.scm +share/gimp/scripts/crystal-logo.scm +share/gimp/scripts/difference-clouds.scm +share/gimp/scripts/distress-selection.scm +share/gimp/scripts/drop-shadow.scm +share/gimp/scripts/erase-rows.scm +share/gimp/scripts/flatland.scm +share/gimp/scripts/font-map.scm +share/gimp/scripts/frosty-logo.scm +share/gimp/scripts/fuzzyborder.scm +share/gimp/scripts/gimp-headers.scm +share/gimp/scripts/gimp-labels.scm +share/gimp/scripts/glossy.scm +share/gimp/scripts/glowing-logo.scm +share/gimp/scripts/gradient-bevel-logo.scm +share/gimp/scripts/gradient-example.scm +share/gimp/scripts/grid-system.scm +share/gimp/scripts/guides-from-selection.scm +share/gimp/scripts/guides-new-percent.scm +share/gimp/scripts/guides-new.scm +share/gimp/scripts/guides-remove-all.scm +share/gimp/scripts/i26-gunya2.scm +share/gimp/scripts/images/beavis.jpg +share/gimp/scripts/images/texture.jpg +share/gimp/scripts/images/texture1.jpg +share/gimp/scripts/images/texture2.jpg +share/gimp/scripts/images/texture3.jpg +share/gimp/scripts/land.scm +share/gimp/scripts/lava.scm +share/gimp/scripts/line-nova.scm +share/gimp/scripts/mkbrush.scm +share/gimp/scripts/neon-logo.scm +share/gimp/scripts/news-text.scm +share/gimp/scripts/old-photo.scm +share/gimp/scripts/paste-as-brush.scm +share/gimp/scripts/paste-as-pattern.scm +share/gimp/scripts/perspective-shadow.scm +share/gimp/scripts/plug-in-compat.init +share/gimp/scripts/predator.scm +share/gimp/scripts/pupi-button.scm +share/gimp/scripts/rendermap.scm +share/gimp/scripts/reverse-layers.scm +share/gimp/scripts/ripply-anim.scm +share/gimp/scripts/round-corners.scm +share/gimp/scripts/script-fu-compat.init +share/gimp/scripts/script-fu-set-cmap.scm +share/gimp/scripts/script-fu-util.scm +share/gimp/scripts/script-fu.init +share/gimp/scripts/select-to-brush.scm +share/gimp/scripts/select-to-image.scm +share/gimp/scripts/select-to-pattern.scm +share/gimp/scripts/selection-round.scm +share/gimp/scripts/slide.scm +share/gimp/scripts/sota-chrome-logo.scm +share/gimp/scripts/speed-text.scm +share/gimp/scripts/spinning-globe.scm +share/gimp/scripts/spyrogimp.scm +share/gimp/scripts/starscape-logo.scm +share/gimp/scripts/swirltile.scm +share/gimp/scripts/swirly-pattern.scm +share/gimp/scripts/t-o-p-logo.scm +share/gimp/scripts/text-circle.scm +share/gimp/scripts/textured-logo.scm +share/gimp/scripts/tileblur.scm +share/gimp/scripts/title-header.scm +share/gimp/scripts/truchet.scm +share/gimp/scripts/unsharp-mask.scm +share/gimp/scripts/waves-anim.scm +share/gimp/scripts/weave.scm +share/gimp/scripts/web-browser.scm +share/gimp/scripts/xach-effect.scm +share/gimp/themes/Default/gtkrc +share/gimp/themes/Default/images/preferences/color-management-22.png +share/gimp/themes/Default/images/preferences/color-management.png +share/gimp/themes/Default/images/preferences/controllers-22.png +share/gimp/themes/Default/images/preferences/controllers.png +share/gimp/themes/Default/images/preferences/default-comment.png +share/gimp/themes/Default/images/preferences/default-grid-22.png +share/gimp/themes/Default/images/preferences/default-grid.png +share/gimp/themes/Default/images/preferences/display-22.png +share/gimp/themes/Default/images/preferences/display.png +share/gimp/themes/Default/images/preferences/environment-22.png +share/gimp/themes/Default/images/preferences/environment.png +share/gimp/themes/Default/images/preferences/folders-22.png +share/gimp/themes/Default/images/preferences/folders-brushes-22.png +share/gimp/themes/Default/images/preferences/folders-brushes.png +share/gimp/themes/Default/images/preferences/folders-environ-22.png +share/gimp/themes/Default/images/preferences/folders-environ.png +share/gimp/themes/Default/images/preferences/folders-fonts-22.png +share/gimp/themes/Default/images/preferences/folders-fonts.png +share/gimp/themes/Default/images/preferences/folders-gradients-22.png +share/gimp/themes/Default/images/preferences/folders-gradients.png +share/gimp/themes/Default/images/preferences/folders-interp-22.png +share/gimp/themes/Default/images/preferences/folders-interp.png +share/gimp/themes/Default/images/preferences/folders-modules-22.png +share/gimp/themes/Default/images/preferences/folders-modules.png +share/gimp/themes/Default/images/preferences/folders-palettes-22.png +share/gimp/themes/Default/images/preferences/folders-palettes.png +share/gimp/themes/Default/images/preferences/folders-patterns-22.png +share/gimp/themes/Default/images/preferences/folders-patterns.png +share/gimp/themes/Default/images/preferences/folders-plug-ins-22.png +share/gimp/themes/Default/images/preferences/folders-plug-ins.png +share/gimp/themes/Default/images/preferences/folders-scripts-22.png +share/gimp/themes/Default/images/preferences/folders-scripts.png +share/gimp/themes/Default/images/preferences/folders-themes-22.png +share/gimp/themes/Default/images/preferences/folders-themes.png +share/gimp/themes/Default/images/preferences/folders-tool-plug-ins-22.png +share/gimp/themes/Default/images/preferences/folders-tool-plug-ins.png +share/gimp/themes/Default/images/preferences/folders-tools-22.png +share/gimp/themes/Default/images/preferences/folders.png +share/gimp/themes/Default/images/preferences/help-system-22.png +share/gimp/themes/Default/images/preferences/help-system.png +share/gimp/themes/Default/images/preferences/image-title-22.png +share/gimp/themes/Default/images/preferences/image-title.png +share/gimp/themes/Default/images/preferences/image-windows-22.png +share/gimp/themes/Default/images/preferences/image-windows.png +share/gimp/themes/Default/images/preferences/input-devices-22.png +share/gimp/themes/Default/images/preferences/input-devices.png +share/gimp/themes/Default/images/preferences/interface-22.png +share/gimp/themes/Default/images/preferences/interface.png +share/gimp/themes/Default/images/preferences/new-image-22.png +share/gimp/themes/Default/images/preferences/new-image.png +share/gimp/themes/Default/images/preferences/session-22.png +share/gimp/themes/Default/images/preferences/session.png +share/gimp/themes/Default/images/preferences/theme-22.png +share/gimp/themes/Default/images/preferences/theme.png +share/gimp/themes/Default/images/preferences/tool-options-22.png +share/gimp/themes/Default/images/preferences/tool-options.png +share/gimp/themes/Default/images/preferences/toolbox-22.png +share/gimp/themes/Default/images/preferences/toolbox.png +share/gimp/themes/Default/images/preferences/window-management-22.png +share/gimp/themes/Default/images/preferences/window-management.png +share/gimp/themes/Default/images/stock-error-64.png +share/gimp/themes/Default/images/stock-info-64.png +share/gimp/themes/Default/images/stock-question-64.png +share/gimp/themes/Default/images/stock-warning-64.png +share/gimp/themes/Small/gtkrc +share/gimp/tips/gimp-tips.xml +share/icons/hicolor/16x16/apps/gimp.png +share/icons/hicolor/22x22/apps/gimp.png +share/icons/hicolor/24x24/apps/gimp.png +share/icons/hicolor/32x32/apps/gimp.png +share/icons/hicolor/48x48/apps/gimp.png +share/icons/hicolor/64x64/apps/gimp.png +share/icons/hicolor/scalable/apps/gimp.svg +share/locale/am/LC_MESSAGES/gimp20.mo +share/locale/ar/LC_MESSAGES/gimp20-libgimp.mo +share/locale/ar/LC_MESSAGES/gimp20-python.mo +share/locale/ar/LC_MESSAGES/gimp20-script-fu.mo +share/locale/ar/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/ar/LC_MESSAGES/gimp20-tips.mo +share/locale/ar/LC_MESSAGES/gimp20.mo +share/locale/az/LC_MESSAGES/gimp20-libgimp.mo +share/locale/az/LC_MESSAGES/gimp20-python.mo +share/locale/az/LC_MESSAGES/gimp20-script-fu.mo +share/locale/az/LC_MESSAGES/gimp20.mo +share/locale/be/LC_MESSAGES/gimp20-libgimp.mo +share/locale/be/LC_MESSAGES/gimp20-python.mo +share/locale/be/LC_MESSAGES/gimp20-script-fu.mo +share/locale/be/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/be/LC_MESSAGES/gimp20-tips.mo +share/locale/be/LC_MESSAGES/gimp20.mo +share/locale/bg/LC_MESSAGES/gimp20-libgimp.mo +share/locale/bg/LC_MESSAGES/gimp20-python.mo +share/locale/bg/LC_MESSAGES/gimp20-script-fu.mo +share/locale/bg/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/bg/LC_MESSAGES/gimp20-tips.mo +share/locale/bg/LC_MESSAGES/gimp20.mo +share/locale/ca/LC_MESSAGES/gimp20-libgimp.mo +share/locale/ca/LC_MESSAGES/gimp20-python.mo +share/locale/ca/LC_MESSAGES/gimp20-script-fu.mo +share/locale/ca/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/ca/LC_MESSAGES/gimp20-tips.mo +share/locale/ca/LC_MESSAGES/gimp20.mo +share/locale/ca@valencia/LC_MESSAGES/gimp20-libgimp.mo +share/locale/ca@valencia/LC_MESSAGES/gimp20-python.mo +share/locale/ca@valencia/LC_MESSAGES/gimp20-script-fu.mo +share/locale/ca@valencia/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/ca@valencia/LC_MESSAGES/gimp20-tips.mo +share/locale/ca@valencia/LC_MESSAGES/gimp20.mo +share/locale/cs/LC_MESSAGES/gimp20-libgimp.mo +share/locale/cs/LC_MESSAGES/gimp20-python.mo +share/locale/cs/LC_MESSAGES/gimp20-script-fu.mo +share/locale/cs/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/cs/LC_MESSAGES/gimp20-tips.mo +share/locale/cs/LC_MESSAGES/gimp20.mo +share/locale/da/LC_MESSAGES/gimp20-libgimp.mo +share/locale/da/LC_MESSAGES/gimp20-python.mo +share/locale/da/LC_MESSAGES/gimp20-script-fu.mo +share/locale/da/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/da/LC_MESSAGES/gimp20-tips.mo +share/locale/da/LC_MESSAGES/gimp20.mo +share/locale/de/LC_MESSAGES/gimp20-libgimp.mo +share/locale/de/LC_MESSAGES/gimp20-python.mo +share/locale/de/LC_MESSAGES/gimp20-script-fu.mo +share/locale/de/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/de/LC_MESSAGES/gimp20-tips.mo +share/locale/de/LC_MESSAGES/gimp20.mo +share/locale/dz/LC_MESSAGES/gimp20-libgimp.mo +share/locale/dz/LC_MESSAGES/gimp20-python.mo +share/locale/dz/LC_MESSAGES/gimp20-script-fu.mo +share/locale/dz/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/dz/LC_MESSAGES/gimp20-tips.mo +share/locale/dz/LC_MESSAGES/gimp20.mo +share/locale/el/LC_MESSAGES/gimp20-libgimp.mo +share/locale/el/LC_MESSAGES/gimp20-python.mo +share/locale/el/LC_MESSAGES/gimp20-script-fu.mo +share/locale/el/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/el/LC_MESSAGES/gimp20.mo +share/locale/en_CA/LC_MESSAGES/gimp20-libgimp.mo +share/locale/en_CA/LC_MESSAGES/gimp20-python.mo +share/locale/en_CA/LC_MESSAGES/gimp20-script-fu.mo +share/locale/en_CA/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/en_CA/LC_MESSAGES/gimp20-tips.mo +share/locale/en_CA/LC_MESSAGES/gimp20.mo +share/locale/en_GB/LC_MESSAGES/gimp20-libgimp.mo +share/locale/en_GB/LC_MESSAGES/gimp20-python.mo +share/locale/en_GB/LC_MESSAGES/gimp20-script-fu.mo +share/locale/en_GB/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/en_GB/LC_MESSAGES/gimp20-tips.mo +share/locale/en_GB/LC_MESSAGES/gimp20.mo +share/locale/eo/LC_MESSAGES/gimp20-libgimp.mo +share/locale/eo/LC_MESSAGES/gimp20-python.mo +share/locale/eo/LC_MESSAGES/gimp20-script-fu.mo +share/locale/eo/LC_MESSAGES/gimp20-tips.mo +share/locale/eo/LC_MESSAGES/gimp20.mo +share/locale/es/LC_MESSAGES/gimp20-libgimp.mo +share/locale/es/LC_MESSAGES/gimp20-python.mo +share/locale/es/LC_MESSAGES/gimp20-script-fu.mo +share/locale/es/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/es/LC_MESSAGES/gimp20-tips.mo +share/locale/es/LC_MESSAGES/gimp20.mo +share/locale/et/LC_MESSAGES/gimp20-libgimp.mo +share/locale/et/LC_MESSAGES/gimp20-python.mo +share/locale/et/LC_MESSAGES/gimp20-script-fu.mo +share/locale/et/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/et/LC_MESSAGES/gimp20-tips.mo +share/locale/et/LC_MESSAGES/gimp20.mo +share/locale/eu/LC_MESSAGES/gimp20-libgimp.mo +share/locale/eu/LC_MESSAGES/gimp20-python.mo +share/locale/eu/LC_MESSAGES/gimp20-script-fu.mo +share/locale/eu/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/eu/LC_MESSAGES/gimp20-tips.mo +share/locale/eu/LC_MESSAGES/gimp20.mo +share/locale/fa/LC_MESSAGES/gimp20-libgimp.mo +share/locale/fa/LC_MESSAGES/gimp20-python.mo +share/locale/fa/LC_MESSAGES/gimp20-script-fu.mo +share/locale/fa/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/fa/LC_MESSAGES/gimp20-tips.mo +share/locale/fa/LC_MESSAGES/gimp20.mo +share/locale/fi/LC_MESSAGES/gimp20-libgimp.mo +share/locale/fi/LC_MESSAGES/gimp20-python.mo +share/locale/fi/LC_MESSAGES/gimp20-script-fu.mo +share/locale/fi/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/fi/LC_MESSAGES/gimp20-tips.mo +share/locale/fi/LC_MESSAGES/gimp20.mo +share/locale/fr/LC_MESSAGES/gimp20-libgimp.mo +share/locale/fr/LC_MESSAGES/gimp20-python.mo +share/locale/fr/LC_MESSAGES/gimp20-script-fu.mo +share/locale/fr/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/fr/LC_MESSAGES/gimp20-tips.mo +share/locale/fr/LC_MESSAGES/gimp20.mo +share/locale/ga/LC_MESSAGES/gimp20-libgimp.mo +share/locale/ga/LC_MESSAGES/gimp20-python.mo +share/locale/ga/LC_MESSAGES/gimp20-script-fu.mo +share/locale/ga/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/ga/LC_MESSAGES/gimp20.mo +share/locale/gl/LC_MESSAGES/gimp20-libgimp.mo +share/locale/gl/LC_MESSAGES/gimp20-python.mo +share/locale/gl/LC_MESSAGES/gimp20-script-fu.mo +share/locale/gl/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/gl/LC_MESSAGES/gimp20-tips.mo +share/locale/gl/LC_MESSAGES/gimp20.mo +share/locale/gu/LC_MESSAGES/gimp20-libgimp.mo +share/locale/gu/LC_MESSAGES/gimp20-python.mo +share/locale/gu/LC_MESSAGES/gimp20-script-fu.mo +share/locale/gu/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/gu/LC_MESSAGES/gimp20-tips.mo +share/locale/gu/LC_MESSAGES/gimp20.mo +share/locale/he/LC_MESSAGES/gimp20-libgimp.mo +share/locale/he/LC_MESSAGES/gimp20-script-fu.mo +share/locale/he/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/he/LC_MESSAGES/gimp20-tips.mo +share/locale/he/LC_MESSAGES/gimp20.mo +share/locale/hi/LC_MESSAGES/gimp20.mo +share/locale/hr/LC_MESSAGES/gimp20-libgimp.mo +share/locale/hr/LC_MESSAGES/gimp20-python.mo +share/locale/hr/LC_MESSAGES/gimp20-script-fu.mo +share/locale/hr/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/hr/LC_MESSAGES/gimp20-tips.mo +share/locale/hr/LC_MESSAGES/gimp20.mo +share/locale/hu/LC_MESSAGES/gimp20-libgimp.mo +share/locale/hu/LC_MESSAGES/gimp20-python.mo +share/locale/hu/LC_MESSAGES/gimp20-script-fu.mo +share/locale/hu/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/hu/LC_MESSAGES/gimp20-tips.mo +share/locale/hu/LC_MESSAGES/gimp20.mo +share/locale/id/LC_MESSAGES/gimp20-libgimp.mo +share/locale/id/LC_MESSAGES/gimp20-script-fu.mo +share/locale/id/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/id/LC_MESSAGES/gimp20.mo +share/locale/is/LC_MESSAGES/gimp20-libgimp.mo +share/locale/is/LC_MESSAGES/gimp20-python.mo +share/locale/is/LC_MESSAGES/gimp20-script-fu.mo +share/locale/is/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/is/LC_MESSAGES/gimp20-tips.mo +share/locale/is/LC_MESSAGES/gimp20.mo +share/locale/it/LC_MESSAGES/gimp20-libgimp.mo +share/locale/it/LC_MESSAGES/gimp20-python.mo +share/locale/it/LC_MESSAGES/gimp20-script-fu.mo +share/locale/it/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/it/LC_MESSAGES/gimp20-tips.mo +share/locale/it/LC_MESSAGES/gimp20.mo +share/locale/ja/LC_MESSAGES/gimp20-libgimp.mo +share/locale/ja/LC_MESSAGES/gimp20-python.mo +share/locale/ja/LC_MESSAGES/gimp20-script-fu.mo +share/locale/ja/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/ja/LC_MESSAGES/gimp20-tips.mo +share/locale/ja/LC_MESSAGES/gimp20.mo +share/locale/ka/LC_MESSAGES/gimp20.mo +share/locale/km/LC_MESSAGES/gimp20-libgimp.mo +share/locale/km/LC_MESSAGES/gimp20-python.mo +share/locale/km/LC_MESSAGES/gimp20-script-fu.mo +share/locale/km/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/km/LC_MESSAGES/gimp20-tips.mo +share/locale/km/LC_MESSAGES/gimp20.mo +share/locale/ko/LC_MESSAGES/gimp20-libgimp.mo +share/locale/ko/LC_MESSAGES/gimp20-python.mo +share/locale/ko/LC_MESSAGES/gimp20-script-fu.mo +share/locale/ko/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/ko/LC_MESSAGES/gimp20-tips.mo +share/locale/ko/LC_MESSAGES/gimp20.mo +share/locale/lt/LC_MESSAGES/gimp20-libgimp.mo +share/locale/lt/LC_MESSAGES/gimp20-python.mo +share/locale/lt/LC_MESSAGES/gimp20-script-fu.mo +share/locale/lt/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/lt/LC_MESSAGES/gimp20-tips.mo +share/locale/lt/LC_MESSAGES/gimp20.mo +share/locale/lv/LC_MESSAGES/gimp20-libgimp.mo +share/locale/lv/LC_MESSAGES/gimp20.mo +share/locale/mk/LC_MESSAGES/gimp20-libgimp.mo +share/locale/mk/LC_MESSAGES/gimp20-python.mo +share/locale/mk/LC_MESSAGES/gimp20-script-fu.mo +share/locale/mk/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/mk/LC_MESSAGES/gimp20-tips.mo +share/locale/mk/LC_MESSAGES/gimp20.mo +share/locale/ml/LC_MESSAGES/gimp20.mo +share/locale/ms/LC_MESSAGES/gimp20-libgimp.mo +share/locale/ms/LC_MESSAGES/gimp20-python.mo +share/locale/ms/LC_MESSAGES/gimp20-script-fu.mo +share/locale/ms/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/ms/LC_MESSAGES/gimp20-tips.mo +share/locale/ms/LC_MESSAGES/gimp20.mo +share/locale/nb/LC_MESSAGES/gimp20-libgimp.mo +share/locale/nb/LC_MESSAGES/gimp20-python.mo +share/locale/nb/LC_MESSAGES/gimp20-script-fu.mo +share/locale/nb/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/nb/LC_MESSAGES/gimp20-tips.mo +share/locale/nb/LC_MESSAGES/gimp20.mo +share/locale/ne/LC_MESSAGES/gimp20-libgimp.mo +share/locale/ne/LC_MESSAGES/gimp20-python.mo +share/locale/ne/LC_MESSAGES/gimp20-script-fu.mo +share/locale/ne/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/ne/LC_MESSAGES/gimp20-tips.mo +share/locale/ne/LC_MESSAGES/gimp20.mo +share/locale/nl/LC_MESSAGES/gimp20-libgimp.mo +share/locale/nl/LC_MESSAGES/gimp20-python.mo +share/locale/nl/LC_MESSAGES/gimp20-script-fu.mo +share/locale/nl/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/nl/LC_MESSAGES/gimp20-tips.mo +share/locale/nl/LC_MESSAGES/gimp20.mo +share/locale/nn/LC_MESSAGES/gimp20-libgimp.mo +share/locale/nn/LC_MESSAGES/gimp20-python.mo +share/locale/nn/LC_MESSAGES/gimp20-script-fu.mo +share/locale/nn/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/nn/LC_MESSAGES/gimp20-tips.mo +share/locale/nn/LC_MESSAGES/gimp20.mo +share/locale/oc/LC_MESSAGES/gimp20-libgimp.mo +share/locale/oc/LC_MESSAGES/gimp20-python.mo +share/locale/oc/LC_MESSAGES/gimp20-script-fu.mo +share/locale/oc/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/oc/LC_MESSAGES/gimp20.mo +share/locale/pa/LC_MESSAGES/gimp20-libgimp.mo +share/locale/pa/LC_MESSAGES/gimp20-python.mo +share/locale/pa/LC_MESSAGES/gimp20-script-fu.mo +share/locale/pa/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/pa/LC_MESSAGES/gimp20-tips.mo +share/locale/pa/LC_MESSAGES/gimp20.mo +share/locale/pl/LC_MESSAGES/gimp20-libgimp.mo +share/locale/pl/LC_MESSAGES/gimp20-python.mo +share/locale/pl/LC_MESSAGES/gimp20-script-fu.mo +share/locale/pl/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/pl/LC_MESSAGES/gimp20-tips.mo +share/locale/pl/LC_MESSAGES/gimp20.mo +share/locale/pt/LC_MESSAGES/gimp20-libgimp.mo +share/locale/pt/LC_MESSAGES/gimp20-python.mo +share/locale/pt/LC_MESSAGES/gimp20-script-fu.mo +share/locale/pt/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/pt/LC_MESSAGES/gimp20-tips.mo +share/locale/pt/LC_MESSAGES/gimp20.mo +share/locale/pt_BR/LC_MESSAGES/gimp20-libgimp.mo +share/locale/pt_BR/LC_MESSAGES/gimp20-python.mo +share/locale/pt_BR/LC_MESSAGES/gimp20-script-fu.mo +share/locale/pt_BR/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/pt_BR/LC_MESSAGES/gimp20-tips.mo +share/locale/pt_BR/LC_MESSAGES/gimp20.mo +share/locale/ro/LC_MESSAGES/gimp20-libgimp.mo +share/locale/ro/LC_MESSAGES/gimp20-python.mo +share/locale/ro/LC_MESSAGES/gimp20-script-fu.mo +share/locale/ro/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/ro/LC_MESSAGES/gimp20-tips.mo +share/locale/ro/LC_MESSAGES/gimp20.mo +share/locale/ru/LC_MESSAGES/gimp20-libgimp.mo +share/locale/ru/LC_MESSAGES/gimp20-python.mo +share/locale/ru/LC_MESSAGES/gimp20-script-fu.mo +share/locale/ru/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/ru/LC_MESSAGES/gimp20-tips.mo +share/locale/ru/LC_MESSAGES/gimp20.mo +share/locale/rw/LC_MESSAGES/gimp20-libgimp.mo +share/locale/rw/LC_MESSAGES/gimp20-python.mo +share/locale/rw/LC_MESSAGES/gimp20-script-fu.mo +share/locale/rw/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/rw/LC_MESSAGES/gimp20-tips.mo +share/locale/rw/LC_MESSAGES/gimp20.mo +share/locale/sk/LC_MESSAGES/gimp20-libgimp.mo +share/locale/sk/LC_MESSAGES/gimp20-python.mo +share/locale/sk/LC_MESSAGES/gimp20-script-fu.mo +share/locale/sk/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/sk/LC_MESSAGES/gimp20-tips.mo +share/locale/sk/LC_MESSAGES/gimp20.mo +share/locale/sl/LC_MESSAGES/gimp20-libgimp.mo +share/locale/sl/LC_MESSAGES/gimp20-python.mo +share/locale/sl/LC_MESSAGES/gimp20-script-fu.mo +share/locale/sl/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/sl/LC_MESSAGES/gimp20-tips.mo +share/locale/sl/LC_MESSAGES/gimp20.mo +share/locale/sr/LC_MESSAGES/gimp20-libgimp.mo +share/locale/sr/LC_MESSAGES/gimp20-python.mo +share/locale/sr/LC_MESSAGES/gimp20-script-fu.mo +share/locale/sr/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/sr/LC_MESSAGES/gimp20-tips.mo +share/locale/sr/LC_MESSAGES/gimp20.mo +share/locale/sr@latin/LC_MESSAGES/gimp20-libgimp.mo +share/locale/sr@latin/LC_MESSAGES/gimp20-python.mo +share/locale/sr@latin/LC_MESSAGES/gimp20-script-fu.mo +share/locale/sr@latin/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/sr@latin/LC_MESSAGES/gimp20-tips.mo +share/locale/sr@latin/LC_MESSAGES/gimp20.mo +share/locale/sv/LC_MESSAGES/gimp20-libgimp.mo +share/locale/sv/LC_MESSAGES/gimp20-python.mo +share/locale/sv/LC_MESSAGES/gimp20-script-fu.mo +share/locale/sv/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/sv/LC_MESSAGES/gimp20-tips.mo +share/locale/sv/LC_MESSAGES/gimp20.mo +share/locale/ta/LC_MESSAGES/gimp20.mo +share/locale/th/LC_MESSAGES/gimp20.mo +share/locale/tr/LC_MESSAGES/gimp20-libgimp.mo +share/locale/tr/LC_MESSAGES/gimp20-python.mo +share/locale/tr/LC_MESSAGES/gimp20-script-fu.mo +share/locale/tr/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/tr/LC_MESSAGES/gimp20.mo +share/locale/tt/LC_MESSAGES/gimp20.mo +share/locale/uk/LC_MESSAGES/gimp20-libgimp.mo +share/locale/uk/LC_MESSAGES/gimp20-python.mo +share/locale/uk/LC_MESSAGES/gimp20-script-fu.mo +share/locale/uk/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/uk/LC_MESSAGES/gimp20-tips.mo +share/locale/uk/LC_MESSAGES/gimp20.mo +share/locale/vi/LC_MESSAGES/gimp20-libgimp.mo +share/locale/vi/LC_MESSAGES/gimp20-python.mo +share/locale/vi/LC_MESSAGES/gimp20-script-fu.mo +share/locale/vi/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/vi/LC_MESSAGES/gimp20-tips.mo +share/locale/vi/LC_MESSAGES/gimp20.mo +share/locale/xh/LC_MESSAGES/gimp20-libgimp.mo +share/locale/xh/LC_MESSAGES/gimp20-python.mo +share/locale/xh/LC_MESSAGES/gimp20-script-fu.mo +share/locale/xh/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/xh/LC_MESSAGES/gimp20.mo +share/locale/yi/LC_MESSAGES/gimp20-libgimp.mo +share/locale/yi/LC_MESSAGES/gimp20-script-fu.mo +share/locale/yi/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/yi/LC_MESSAGES/gimp20.mo +share/locale/zh_CN/LC_MESSAGES/gimp20-libgimp.mo +share/locale/zh_CN/LC_MESSAGES/gimp20-python.mo +share/locale/zh_CN/LC_MESSAGES/gimp20-script-fu.mo +share/locale/zh_CN/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/zh_CN/LC_MESSAGES/gimp20-tips.mo +share/locale/zh_CN/LC_MESSAGES/gimp20.mo +share/locale/zh_HK/LC_MESSAGES/gimp20.mo +share/locale/zh_TW/LC_MESSAGES/gimp20-libgimp.mo +share/locale/zh_TW/LC_MESSAGES/gimp20-python.mo +share/locale/zh_TW/LC_MESSAGES/gimp20-script-fu.mo +share/locale/zh_TW/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/zh_TW/LC_MESSAGES/gimp20-tips.mo +share/locale/zh_TW/LC_MESSAGES/gimp20.mo +@dirrm share/gimp/tips +@dirrm share/gimp/themes/Small +@dirrm share/gimp/themes/Default/images/preferences +@dirrm share/gimp/themes/Default/images +@dirrm share/gimp/themes/Default +@dirrm share/gimp/themes +@dirrm share/gimp/scripts/images +@dirrm share/gimp/scripts +@dirrm share/gimp/patterns +@dirrm share/gimp/palettes +@dirrm share/gimp/menus +@dirrm share/gimp/images +@dirrm share/gimp/gradients +@dirrm share/gimp/gimpressionist/Presets +@dirrm share/gimp/gimpressionist/Paper +@dirrm share/gimp/gimpressionist/Brushes +@dirrm share/gimp/gimpressionist +@dirrm share/gimp/gflare +@dirrm share/gimp/gfig +@dirrm share/gimp/fractalexplorer +@dirrm share/gimp/fonts +@dirrm share/gimp/brushes +@dirrm share/gimp +@dirrm share/doc/gimp/libgimpwidgets +@dirrm share/doc/gimp/libgimpthumb +@dirrm share/doc/gimp/libgimpmodule +@dirrm share/doc/gimp/libgimpmath +@dirrm share/doc/gimp/libgimpconfig +@dirrm share/doc/gimp/libgimpcolor +@dirrm share/doc/gimp/libgimpbase +@dirrm share/doc/gimp/libgimp +@dirrm share/doc/gimp +@dirrmtry share/applications +@dirrm libexec/gimp/2.2/plug-ins +@dirrm libexec/gimp/2.2/modules +@dirrm libexec/gimp/2.2/interpreters +@dirrm libexec/gimp/2.2/environ +@dirrm libexec/gimp/2.2 +@dirrm libexec/gimp +@dirrm include/gimp-2.0/libgimpwidgets +@dirrm include/gimp-2.0/libgimpthumb +@dirrm include/gimp-2.0/libgimpmodule +@dirrm include/gimp-2.0/libgimpmath +@dirrm include/gimp-2.0/libgimpconfig +@dirrm include/gimp-2.0/libgimpcolor +@dirrm include/gimp-2.0/libgimpbase +@dirrm include/gimp-2.0/libgimp +@dirrm include/gimp-2.0 +@dirrm etc/gimp/2.2 +@dirrm etc/gimp +@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true +@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/yi/LC_MESSAGES +@dirrmtry share/locale/yi +@dirrmtry share/locale/xh/LC_MESSAGES +@dirrmtry share/locale/xh +@dirrmtry share/locale/tt/LC_MESSAGES +@dirrmtry share/locale/tt +@dirrmtry share/locale/sr@latin/LC_MESSAGES +@dirrmtry share/locale/sr@latin +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/oc/LC_MESSAGES +@dirrmtry share/locale/oc +@dirrmtry share/locale/km/LC_MESSAGES +@dirrmtry share/locale/km +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz +@dirrmtry share/locale/ca@valencia/LC_MESSAGES +@dirrmtry share/locale/ca@valencia diff --git a/graphics/inkscape/Makefile b/graphics/inkscape/Makefile new file mode 100644 index 000000000..b9753f1c6 --- /dev/null +++ b/graphics/inkscape/Makefile @@ -0,0 +1,73 @@ +# New ports collection makefile for: inkscape +# Date created: 17 Nov 2003 +# Whom: Alexander Nedotsukov <bland@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= inkscape +PORTVERSION= 0.46 +PORTREVISION= 5 +CATEGORIES= graphics gnome +MASTER_SITES= SF + +MAINTAINER= gnome@FreeBSD.org +COMMENT= A program seeks to become a full featured open source SVG editor + +BUILD_DEPENDS= ${LOCALBASE}/include/boost/concept_check.hpp:${PORTSDIR}/devel/boost +LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \ + gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 \ + gc.1:${PORTSDIR}/devel/boehm-gc \ + gtkspell.0:${PORTSDIR}/textproc/gtkspell \ + lcms.1:${PORTSDIR}/graphics/lcms \ + Magick++.2:${PORTSDIR}/graphics/ImageMagick +RUN_DEPENDS= ${SITE_PERL}/XML/XQL.pm:${PORTSDIR}/textproc/p5-XML-XQL + +USE_BZIP2= yes +USE_GMAKE= yes +WANT_GNOME= yes +USE_GNOME= gnomehack desktopfileutils intlhack libxslt +USE_GETTEXT= yes +GNU_CONFIGURE= yes +USE_PERL5= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ + LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" + +MAN1= inkscape.1 +MAN1_EN= inkview.1 +MANLANG= "" fr + +OPTIONS= POPPLER "Enable libpoppler-cairo for rendering PDF preview" off + +.include <bsd.port.pre.mk> + +.if ${HAVE_GNOME:Mgnomevfs2} != "" +USE_GNOME+= gnomevfs2 +CONFIGURE_ARGS+= --with-gnome-vfs +.else +CONFIGURE_ARGS+= --without-gnome-vfs +.endif + +.if defined(WITH_POPPLER) +LIB_DEPENDS+= poppler-glib.4:${PORTSDIR}/graphics/poppler-gtk +CONFIGURE_ARGS+= --enable-poppler-cairo +.else +CONFIGURE_ARGS+= --disable-poppler-cairo +.endif + +post-patch: + @${REINPLACE_CMD} -e 's|ieefp.h|ieeefp.h|' \ + ${WRKSRC}/src/2geom/bezier-utils.cpp + @${REINPLACE_CMD} -e 's|libpng >= 1.2|libpng12 >= 1.2|g' \ + ${WRKSRC}/configure + @${FIND} ${WRKSRC} -name "*.h" -o -name "*.cpp" | ${XARGS} \ + ${REINPLACE_CMD} -e 's|glib/gmessages.h|glib/gtestutils.h|g' +.if !defined(WITH_POPPLER) + @${REINPLACE_CMD} -e 's|poppler|pdisable|g' \ + ${WRKSRC}/configure +.endif + +post-install: + @-update-desktop-database + +.include <bsd.port.post.mk> diff --git a/graphics/inkscape/distinfo b/graphics/inkscape/distinfo new file mode 100644 index 000000000..8c4a0083c --- /dev/null +++ b/graphics/inkscape/distinfo @@ -0,0 +1,3 @@ +MD5 (inkscape-0.46.tar.bz2) = 59997096c3640b2601c2b4afba8a3d75 +SHA256 (inkscape-0.46.tar.bz2) = f2ea624b98544b9d780bae1b5f042eae97bbd2779c7779ba21390b7bf6a9ca8e +SIZE (inkscape-0.46.tar.bz2) = 13368645 diff --git a/graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp b/graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp new file mode 100644 index 000000000..ff6662782 --- /dev/null +++ b/graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp @@ -0,0 +1,10 @@ +--- src/libnr/nr-matrix.cpp.org 2008-04-02 22:01:32.000000000 +0200 ++++ src/libnr/nr-matrix.cpp 2008-04-02 22:01:54.000000000 +0200 +@@ -11,6 +11,7 @@ + * This code is in public domain + */ + ++#include <cstdio> + #include <cstdlib> + #include "nr-matrix.h" + diff --git a/graphics/inkscape/files/patch-src::livarot::Path.cpp b/graphics/inkscape/files/patch-src::livarot::Path.cpp new file mode 100644 index 000000000..587ec22c4 --- /dev/null +++ b/graphics/inkscape/files/patch-src::livarot::Path.cpp @@ -0,0 +1,10 @@ +--- src/livarot/Path.cpp.orig Sat Apr 10 03:53:47 2004 ++++ src/livarot/Path.cpp Sat Apr 10 03:53:52 2004 +@@ -7,6 +7,7 @@ + */ + + #include <glib.h> ++#include <cstdio> + #include "Path.h" + #include <libnr/nr-point.h> + #include <libnr/nr-point-ops.h> diff --git a/graphics/inkscape/files/patch-src::remove-last.h b/graphics/inkscape/files/patch-src::remove-last.h new file mode 100644 index 000000000..059f14ac7 --- /dev/null +++ b/graphics/inkscape/files/patch-src::remove-last.h @@ -0,0 +1,19 @@ +--- src/remove-last.h.orig Mon Apr 12 09:56:06 2004 ++++ src/remove-last.h Mon Apr 12 09:56:47 2004 +@@ -2,6 +2,7 @@ + #define __REMOVE_LAST_H__ + + #include <vector> ++#include <algorithm> + #include <glib.h> + + template<class T> +@@ -9,7 +10,7 @@ + { + using std::vector; + +- typename vector<T>::reverse_iterator i(find(seq.rbegin(), seq.rend(), elem)); ++ typename vector<T>::reverse_iterator i(std::find(seq.rbegin(), seq.rend(), elem)); + g_assert( i != seq.rend() ); + typename vector<T>::iterator ii(&*i); + seq.erase(ii); diff --git a/graphics/inkscape/files/patch-src_extension_internal_pdfinput_pdf-parser.cpp b/graphics/inkscape/files/patch-src_extension_internal_pdfinput_pdf-parser.cpp new file mode 100644 index 000000000..c23c83ed5 --- /dev/null +++ b/graphics/inkscape/files/patch-src_extension_internal_pdfinput_pdf-parser.cpp @@ -0,0 +1,164 @@ +--- src/extension/internal/pdfinput/pdf-parser.cpp 2008/03/29 09:49:50 18077 ++++ src/extension/internal/pdfinput/pdf-parser.cpp 2008/06/12 18:14:25 18894 +@@ -2191,6 +2191,151 @@ + } + } + ++ ++#if 1 ++ ++/** ++ * This is for the change to GfxFont's getNextChar() call. ++ * Thanks to tsdgeos for the fix. ++ * Miklos, does this look ok? ++ */ ++ ++void PdfParser::doShowText(GooString *s) { ++ GfxFont *font; ++ int wMode; ++ double riseX, riseY; ++ CharCode code; ++ Unicode *u = NULL; ++ double x, y, dx, dy, dx2, dy2, curX, curY, tdx, tdy, lineX, lineY; ++ double originX, originY, tOriginX, tOriginY; ++ double oldCTM[6], newCTM[6]; ++ double *mat; ++ Object charProc; ++ Dict *resDict; ++ Parser *oldParser; ++ char *p; ++ int len, n, uLen, nChars, nSpaces, i; ++ ++ font = state->getFont(); ++ wMode = font->getWMode(); ++ ++ builder->beginString(state, s); ++ ++ // handle a Type 3 char ++ if (font->getType() == fontType3 && 0) {//out->interpretType3Chars()) { ++ mat = state->getCTM(); ++ for (i = 0; i < 6; ++i) { ++ oldCTM[i] = mat[i]; ++ } ++ mat = state->getTextMat(); ++ newCTM[0] = mat[0] * oldCTM[0] + mat[1] * oldCTM[2]; ++ newCTM[1] = mat[0] * oldCTM[1] + mat[1] * oldCTM[3]; ++ newCTM[2] = mat[2] * oldCTM[0] + mat[3] * oldCTM[2]; ++ newCTM[3] = mat[2] * oldCTM[1] + mat[3] * oldCTM[3]; ++ mat = font->getFontMatrix(); ++ newCTM[0] = mat[0] * newCTM[0] + mat[1] * newCTM[2]; ++ newCTM[1] = mat[0] * newCTM[1] + mat[1] * newCTM[3]; ++ newCTM[2] = mat[2] * newCTM[0] + mat[3] * newCTM[2]; ++ newCTM[3] = mat[2] * newCTM[1] + mat[3] * newCTM[3]; ++ newCTM[0] *= state->getFontSize(); ++ newCTM[1] *= state->getFontSize(); ++ newCTM[2] *= state->getFontSize(); ++ newCTM[3] *= state->getFontSize(); ++ newCTM[0] *= state->getHorizScaling(); ++ newCTM[2] *= state->getHorizScaling(); ++ state->textTransformDelta(0, state->getRise(), &riseX, &riseY); ++ curX = state->getCurX(); ++ curY = state->getCurY(); ++ lineX = state->getLineX(); ++ lineY = state->getLineY(); ++ oldParser = parser; ++ p = s->getCString(); ++ len = s->getLength(); ++ while (len > 0) { ++ n = font->getNextChar(p, len, &code, ++ &u, &uLen, ++ &dx, &dy, &originX, &originY); ++ dx = dx * state->getFontSize() + state->getCharSpace(); ++ if (n == 1 && *p == ' ') { ++ dx += state->getWordSpace(); ++ } ++ dx *= state->getHorizScaling(); ++ dy *= state->getFontSize(); ++ state->textTransformDelta(dx, dy, &tdx, &tdy); ++ state->transform(curX + riseX, curY + riseY, &x, &y); ++ saveState(); ++ state->setCTM(newCTM[0], newCTM[1], newCTM[2], newCTM[3], x, y); ++ //~ the CTM concat values here are wrong (but never used) ++ //out->updateCTM(state, 1, 0, 0, 1, 0, 0); ++ if (0){ /*!out->beginType3Char(state, curX + riseX, curY + riseY, tdx, tdy, ++ code, u, uLen)) {*/ ++ ((Gfx8BitFont *)font)->getCharProc(code, &charProc); ++ if ((resDict = ((Gfx8BitFont *)font)->getResources())) { ++ pushResources(resDict); ++ } ++ if (charProc.isStream()) { ++ //parse(&charProc, gFalse); // TODO: parse into SVG font ++ } else { ++ error(getPos(), "Missing or bad Type3 CharProc entry"); ++ } ++ //out->endType3Char(state); ++ if (resDict) { ++ popResources(); ++ } ++ charProc.free(); ++ } ++ restoreState(); ++ // GfxState::restore() does *not* restore the current position, ++ // so we deal with it here using (curX, curY) and (lineX, lineY) ++ curX += tdx; ++ curY += tdy; ++ state->moveTo(curX, curY); ++ state->textSetPos(lineX, lineY); ++ p += n; ++ len -= n; ++ } ++ parser = oldParser; ++ ++ } else { ++ state->textTransformDelta(0, state->getRise(), &riseX, &riseY); ++ p = s->getCString(); ++ len = s->getLength(); ++ while (len > 0) { ++ n = font->getNextChar(p, len, &code, ++ &u, &uLen, ++ &dx, &dy, &originX, &originY); ++ ++ if (wMode) { ++ dx *= state->getFontSize(); ++ dy = dy * state->getFontSize() + state->getCharSpace(); ++ if (n == 1 && *p == ' ') { ++ dy += state->getWordSpace(); ++ } ++ } else { ++ dx = dx * state->getFontSize() + state->getCharSpace(); ++ if (n == 1 && *p == ' ') { ++ dx += state->getWordSpace(); ++ } ++ dx *= state->getHorizScaling(); ++ dy *= state->getFontSize(); ++ } ++ state->textTransformDelta(dx, dy, &tdx, &tdy); ++ originX *= state->getFontSize(); ++ originY *= state->getFontSize(); ++ state->textTransformDelta(originX, originY, &tOriginX, &tOriginY); ++ builder->addChar(state, state->getCurX() + riseX, state->getCurY() + riseY, ++ dx, dy, tOriginX, tOriginY, code, n, u, uLen); ++ state->shift(tdx, tdy); ++ p += n; ++ len -= n; ++ } ++ } ++ ++ builder->endString(state); ++} ++ ++#else /* !POPPLER_NEW_GFXFONT */ ++ + void PdfParser::doShowText(GooString *s) { + GfxFont *font; + int wMode; +@@ -2325,6 +2470,9 @@ + builder->endString(state); + } + ++#endif /* POPPLER_NEW_GFXFONT */ ++ ++ + //------------------------------------------------------------------------ + // XObject operators + //------------------------------------------------------------------------ diff --git a/graphics/inkscape/files/patch-src_trace_potrace_inkscape-potrace.cpp b/graphics/inkscape/files/patch-src_trace_potrace_inkscape-potrace.cpp new file mode 100644 index 000000000..832ff9757 --- /dev/null +++ b/graphics/inkscape/files/patch-src_trace_potrace_inkscape-potrace.cpp @@ -0,0 +1,124 @@ +--- src/trace/potrace/inkscape-potrace.cpp.orig Sat Jun 24 22:46:26 2006 ++++ src/trace/potrace/inkscape-potrace.cpp Sun Jun 25 01:29:20 2006 +@@ -54,6 +54,121 @@ static void potraceStatusCallback(double + // (Inkscape::Trace::Potrace::PotraceTracingEngine *)userData; + } + ++#ifndef log2 ++static const double ++ln2 = 0.6931471805599452862268, ++two54 = 1.80143985094819840000e+16, /* 43500000 00000000 */ ++Lg1 = 6.666666666666735130e-01, /* 3FE55555 55555593 */ ++Lg2 = 3.999999999940941908e-01, /* 3FD99999 9997FA04 */ ++Lg3 = 2.857142874366239149e-01, /* 3FD24924 94229359 */ ++Lg4 = 2.222219843214978396e-01, /* 3FCC71C5 1D8E78AF */ ++Lg5 = 1.818357216161805012e-01, /* 3FC74664 96CB03DE */ ++Lg6 = 1.531383769920937332e-01, /* 3FC39A09 D078C69F */ ++Lg7 = 1.479819860511658591e-01; /* 3FC2F112 DF3E5244 */ ++ ++static const double zero = 0.0; ++ ++#if BYTE_ORDER == BIG_ENDIAN ++ ++typedef union ++{ ++ double value; ++ struct ++ { ++ u_int32_t msw; ++ u_int32_t lsw; ++ } parts; ++} ieee_double_shape_type; ++ ++#endif ++ ++#if BYTE_ORDER == LITTLE_ENDIAN ++ ++typedef union ++{ ++ double value; ++ struct ++ { ++ u_int32_t lsw; ++ u_int32_t msw; ++ } parts; ++} ieee_double_shape_type; ++ ++#endif ++ ++#define EXTRACT_WORDS(ix0,ix1,d) \ ++ do { \ ++ ieee_double_shape_type ew_u; \ ++ ew_u.value = (d); \ ++ (ix0) = ew_u.parts.msw; \ ++ (ix1) = ew_u.parts.lsw; \ ++ } while (0) ++ ++#define GET_HIGH_WORD(i,d) \ ++ do { \ ++ ieee_double_shape_type gh_u; \ ++ gh_u.value = (d); \ ++ (i) = gh_u.parts.msw; \ ++ } while (0) ++ ++#define SET_HIGH_WORD(d,v) \ ++ do { \ ++ ieee_double_shape_type sh_u; \ ++ sh_u.value = (d); \ ++ sh_u.parts.msw = (v); \ ++ (d) = sh_u.value; \ ++ } while (0) ++ ++static double ++_log2(double x) ++{ ++ double hfsq,f,s,z,R,w,t1,t2,dk; ++ int32_t k,hx,i,j; ++ u_int32_t lx; ++ ++ EXTRACT_WORDS(hx,lx,x); ++ ++ k=0; ++ if (hx < 0x00100000) { /* x < 2**-1022 */ ++ if (((hx&0x7fffffff)|lx)==0) ++ return -two54/zero; /* log(+-0)=-inf */ ++ if (hx<0) return (x-x)/zero; /* log(-#) = NaN */ ++ k -= 54; x *= two54; /* subnormal number, scale up x */ ++ GET_HIGH_WORD(hx,x); ++ } ++ if (hx >= 0x7ff00000) return x+x; ++ k += (hx>>20)-1023; ++ hx &= 0x000fffff; ++ i = (hx+0x95f64)&0x100000; ++ SET_HIGH_WORD(x,hx|(i^0x3ff00000)); /* normalize x or x/2 */ ++ k += (i>>20); ++ f = x-1.0; ++ dk = (double)k; ++ if((0x000fffff&(2+hx))<3) { /* |f| < 2**-20 */ ++ if (f==zero) ++ return (dk); ++ R = f*f*(0.5-0.33333333333333333*f); ++ return (dk-(R-f)/ln2); ++ } ++ s = f/(2.0+f); ++ z = s*s; ++ i = hx-0x6147a; ++ w = z*z; ++ j = 0x6b851-hx; ++ t1= w*(Lg2+w*(Lg4+w*Lg6)); ++ t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7))); ++ i |= j; ++ R = t2+t1; ++ if(i>0) { ++ hfsq=0.5*f*f; ++ return (dk-(hfsq-s*(hfsq+R)-f)/ln2); ++ } else ++ return (dk-((s*(f-R))-f)/ln2); ++} ++ ++#define log2(x) _log2(x) ++#endif ++ + + + diff --git a/graphics/inkscape/pkg-descr b/graphics/inkscape/pkg-descr new file mode 100644 index 000000000..fbd138147 --- /dev/null +++ b/graphics/inkscape/pkg-descr @@ -0,0 +1,9 @@ +Inkscape seeks to become a full featured open source SVG editor. +Derived from the highly popular Sodipodi codebase, Inkscape strives +to build full XML, SVG, and CSS2 compliance. + +Features include alpha blending, node editing, svg-to-png export, +and more. Project aims for capabilities similar to Illustrator, +CorelDraw, Visio, etc. + +WWW: http://www.inkscape.org diff --git a/graphics/inkscape/pkg-plist b/graphics/inkscape/pkg-plist new file mode 100644 index 000000000..c5f974c76 --- /dev/null +++ b/graphics/inkscape/pkg-plist @@ -0,0 +1,563 @@ +bin/inkscape +bin/inkview +share/applications/inkscape.desktop +%%DATADIR%%/clipart/README +%%DATADIR%%/clipart/draw-freely.ru.svg +%%DATADIR%%/clipart/draw-freely.svg +%%DATADIR%%/clipart/inkscape.logo.svg +%%DATADIR%%/clipart/orav.svg +%%DATADIR%%/clipart/tux.svg +%%DATADIR%%/examples/README +%%DATADIR%%/examples/animated-clock.svg +%%DATADIR%%/examples/art-nouveau-P3.svg +%%DATADIR%%/examples/blend_modes.svg +%%DATADIR%%/examples/car.svgz +%%DATADIR%%/examples/data_uri.svg +%%DATADIR%%/examples/eastern-motive-P4G.svg +%%DATADIR%%/examples/flow-go.svg +%%DATADIR%%/examples/flowsample.svg +%%DATADIR%%/examples/gallardo.svgz +%%DATADIR%%/examples/glass.svg +%%DATADIR%%/examples/gradient-mesh-experimental.svgz +%%DATADIR%%/examples/gradient.svg +%%DATADIR%%/examples/i18n.svg +%%DATADIR%%/examples/istest.pov +%%DATADIR%%/examples/l-systems.svgz +%%DATADIR%%/examples/lighting_effects.svg +%%DATADIR%%/examples/live-path-effects-curvestitch.svg +%%DATADIR%%/examples/live-path-effects-gears.svg +%%DATADIR%%/examples/live-path-effects-pathalongpath.svg +%%DATADIR%%/examples/markers.svg +%%DATADIR%%/examples/rope-3D.svg +%%DATADIR%%/examples/stars.svgz +%%DATADIR%%/examples/tesselation-P3.svg +%%DATADIR%%/examples/text-on-path.svg +%%DATADIR%%/examples/tiger.svgz +%%DATADIR%%/examples/turbulence_effects.svg +%%DATADIR%%/extensions/Barcode/Base.py +%%DATADIR%%/extensions/Barcode/Code128.py +%%DATADIR%%/extensions/Barcode/Code39.py +%%DATADIR%%/extensions/Barcode/Code39Ext.py +%%DATADIR%%/extensions/Barcode/Code93.py +%%DATADIR%%/extensions/Barcode/EAN13.py +%%DATADIR%%/extensions/Barcode/EAN8.py +%%DATADIR%%/extensions/Barcode/RM4CC.py +%%DATADIR%%/extensions/Barcode/UPCA.py +%%DATADIR%%/extensions/Barcode/UPCE.py +%%DATADIR%%/extensions/Barcode/__init__.py +%%DATADIR%%/extensions/SpSVG.pm +%%DATADIR%%/extensions/addnodes.inx +%%DATADIR%%/extensions/addnodes.py +%%DATADIR%%/extensions/ai_input.inx +%%DATADIR%%/extensions/ai_output.inx +%%DATADIR%%/extensions/aisvg.inx +%%DATADIR%%/extensions/aisvg.xslt +%%DATADIR%%/extensions/bezmisc.py +%%DATADIR%%/extensions/cdr2svg.sh +%%DATADIR%%/extensions/cdr_input.inx +%%DATADIR%%/extensions/chardataeffect.py +%%DATADIR%%/extensions/color_brighter.inx +%%DATADIR%%/extensions/color_brighter.py +%%DATADIR%%/extensions/color_custom.inx +%%DATADIR%%/extensions/color_custom.py +%%DATADIR%%/extensions/color_darker.inx +%%DATADIR%%/extensions/color_darker.py +%%DATADIR%%/extensions/color_desaturate.inx +%%DATADIR%%/extensions/color_desaturate.py +%%DATADIR%%/extensions/color_grayscale.inx +%%DATADIR%%/extensions/color_grayscale.py +%%DATADIR%%/extensions/color_lesshue.inx +%%DATADIR%%/extensions/color_lesshue.py +%%DATADIR%%/extensions/color_lesslight.inx +%%DATADIR%%/extensions/color_lesslight.py +%%DATADIR%%/extensions/color_lesssaturation.inx +%%DATADIR%%/extensions/color_lesssaturation.py +%%DATADIR%%/extensions/color_morehue.inx +%%DATADIR%%/extensions/color_morehue.py +%%DATADIR%%/extensions/color_morelight.inx +%%DATADIR%%/extensions/color_morelight.py +%%DATADIR%%/extensions/color_moresaturation.inx +%%DATADIR%%/extensions/color_moresaturation.py +%%DATADIR%%/extensions/color_negative.inx +%%DATADIR%%/extensions/color_negative.py +%%DATADIR%%/extensions/color_randomize.inx +%%DATADIR%%/extensions/color_randomize.py +%%DATADIR%%/extensions/color_removeblue.inx +%%DATADIR%%/extensions/color_removeblue.py +%%DATADIR%%/extensions/color_removegreen.inx +%%DATADIR%%/extensions/color_removegreen.py +%%DATADIR%%/extensions/color_removered.inx +%%DATADIR%%/extensions/color_removered.py +%%DATADIR%%/extensions/color_replace.inx +%%DATADIR%%/extensions/color_replace.py +%%DATADIR%%/extensions/color_rgbbarrel.inx +%%DATADIR%%/extensions/color_rgbbarrel.py +%%DATADIR%%/extensions/coloreffect.py +%%DATADIR%%/extensions/colors.xml +%%DATADIR%%/extensions/cspsubdiv.py +%%DATADIR%%/extensions/cubicsuperpath.py +%%DATADIR%%/extensions/dia.inx +%%DATADIR%%/extensions/dia2svg.sh +%%DATADIR%%/extensions/dimension.inx +%%DATADIR%%/extensions/dimension.py +%%DATADIR%%/extensions/dots.inx +%%DATADIR%%/extensions/dots.py +%%DATADIR%%/extensions/dxf_input.inx +%%DATADIR%%/extensions/dxf_outlines.inx +%%DATADIR%%/extensions/dxf_outlines.py +%%DATADIR%%/extensions/dxf_output.inx +%%DATADIR%%/extensions/edge3d.inx +%%DATADIR%%/extensions/edge3d.py +%%DATADIR%%/extensions/embed_raster_in_svg.pl +%%DATADIR%%/extensions/embedimage.inx +%%DATADIR%%/extensions/embedimage.py +%%DATADIR%%/extensions/eps_input.inx +%%DATADIR%%/extensions/epsi_output.inx +%%DATADIR%%/extensions/eqtexsvg.inx +%%DATADIR%%/extensions/eqtexsvg.py +%%DATADIR%%/extensions/export_gimp_palette.inx +%%DATADIR%%/extensions/export_gimp_palette.py +%%DATADIR%%/extensions/extractimage.inx +%%DATADIR%%/extensions/extractimage.py +%%DATADIR%%/extensions/ffgeom.py +%%DATADIR%%/extensions/fig2svg.sh +%%DATADIR%%/extensions/fig_input.inx +%%DATADIR%%/extensions/flatten.inx +%%DATADIR%%/extensions/flatten.py +%%DATADIR%%/extensions/fractalize.inx +%%DATADIR%%/extensions/fractalize.py +%%DATADIR%%/extensions/funcplot.inx +%%DATADIR%%/extensions/funcplot.py +%%DATADIR%%/extensions/gears.inx +%%DATADIR%%/extensions/gears.py +%%DATADIR%%/extensions/gimp_xcf.inx +%%DATADIR%%/extensions/gimp_xcf.py +%%DATADIR%%/extensions/handles.inx +%%DATADIR%%/extensions/handles.py +%%DATADIR%%/extensions/ill2svg.pl +%%DATADIR%%/extensions/inkex.py +%%DATADIR%%/extensions/inkscape-shadow-white.sh +%%DATADIR%%/extensions/inkscape-shadow.sh +%%DATADIR%%/extensions/inkscape_help_askaquestion.inx +%%DATADIR%%/extensions/inkscape_help_commandline.inx +%%DATADIR%%/extensions/inkscape_help_faq.inx +%%DATADIR%%/extensions/inkscape_help_keys.inx +%%DATADIR%%/extensions/inkscape_help_manual.inx +%%DATADIR%%/extensions/inkscape_help_relnotes.inx +%%DATADIR%%/extensions/inkscape_help_reportabug.inx +%%DATADIR%%/extensions/inkscape_help_svgspec.inx +%%DATADIR%%/extensions/interp.inx +%%DATADIR%%/extensions/interp.py +%%DATADIR%%/extensions/lindenmayer.inx +%%DATADIR%%/extensions/lindenmayer.py +%%DATADIR%%/extensions/lorem_ipsum.inx +%%DATADIR%%/extensions/lorem_ipsum.py +%%DATADIR%%/extensions/markers_strokepaint.inx +%%DATADIR%%/extensions/markers_strokepaint.py +%%DATADIR%%/extensions/measure.inx +%%DATADIR%%/extensions/measure.py +%%DATADIR%%/extensions/motion.inx +%%DATADIR%%/extensions/motion.py +%%DATADIR%%/extensions/outline2svg.inx +%%DATADIR%%/extensions/outline2svg.pl +%%DATADIR%%/extensions/pathalongpath.inx +%%DATADIR%%/extensions/pathalongpath.py +%%DATADIR%%/extensions/pathmodifier.py +%%DATADIR%%/extensions/pdf_output.inx.txt +%%DATADIR%%/extensions/pdf_output_via_gs_on_win32.inx.txt +%%DATADIR%%/extensions/perfectboundcover.inx +%%DATADIR%%/extensions/perfectboundcover.py +%%DATADIR%%/extensions/perspective.inx +%%DATADIR%%/extensions/perspective.py +%%DATADIR%%/extensions/ps2dxf.sh +%%DATADIR%%/extensions/ps2epsi.sh +%%DATADIR%%/extensions/ps2pdf.cmd +%%DATADIR%%/extensions/ps2pdf.sh +%%DATADIR%%/extensions/ps_input.inx +%%DATADIR%%/extensions/pturtle.py +%%DATADIR%%/extensions/radiusrand.inx +%%DATADIR%%/extensions/radiusrand.py +%%DATADIR%%/extensions/randompnt.inx +%%DATADIR%%/extensions/randompos.inx +%%DATADIR%%/extensions/render_barcode.inx +%%DATADIR%%/extensions/render_barcode.py +%%DATADIR%%/extensions/rtree.inx +%%DATADIR%%/extensions/rtree.py +%%DATADIR%%/extensions/rubberstretch.inx +%%DATADIR%%/extensions/rubberstretch.py +%%DATADIR%%/extensions/simplepath.py +%%DATADIR%%/extensions/simplepath.rb +%%DATADIR%%/extensions/simplestyle.py +%%DATADIR%%/extensions/simpletransform.py +%%DATADIR%%/extensions/sk2svg.sh +%%DATADIR%%/extensions/sk_input.inx +%%DATADIR%%/extensions/spirograph.inx +%%DATADIR%%/extensions/spirograph.py +%%DATADIR%%/extensions/straightseg.inx +%%DATADIR%%/extensions/straightseg.py +%%DATADIR%%/extensions/summersnight.inx +%%DATADIR%%/extensions/summersnight.py +%%DATADIR%%/extensions/svg2xaml.inx +%%DATADIR%%/extensions/svg2xaml.xsl +%%DATADIR%%/extensions/svg_and_media_zip_output.inx +%%DATADIR%%/extensions/svg_and_media_zip_output.py +%%DATADIR%%/extensions/svgz_input.inx +%%DATADIR%%/extensions/svgz_output.inx +%%DATADIR%%/extensions/text_flipcase.inx +%%DATADIR%%/extensions/text_flipcase.py +%%DATADIR%%/extensions/text_lowercase.inx +%%DATADIR%%/extensions/text_lowercase.py +%%DATADIR%%/extensions/text_randomcase.inx +%%DATADIR%%/extensions/text_randomcase.py +%%DATADIR%%/extensions/text_replace.inx +%%DATADIR%%/extensions/text_replace.py +%%DATADIR%%/extensions/text_sentencecase.inx +%%DATADIR%%/extensions/text_sentencecase.py +%%DATADIR%%/extensions/text_titlecase.inx +%%DATADIR%%/extensions/text_titlecase.py +%%DATADIR%%/extensions/text_uppercase.inx +%%DATADIR%%/extensions/text_uppercase.py +%%DATADIR%%/extensions/txt2svg.inx +%%DATADIR%%/extensions/txt2svg.pl +%%DATADIR%%/extensions/webbrowser_askaquestion.py +%%DATADIR%%/extensions/webbrowser_commandline.py +%%DATADIR%%/extensions/webbrowser_faq.py +%%DATADIR%%/extensions/webbrowser_keys.py +%%DATADIR%%/extensions/webbrowser_manual.py +%%DATADIR%%/extensions/webbrowser_relnotes.py +%%DATADIR%%/extensions/webbrowser_reportabug.py +%%DATADIR%%/extensions/webbrowser_svgspec.py +%%DATADIR%%/extensions/whirl.inx +%%DATADIR%%/extensions/whirl.py +%%DATADIR%%/extensions/wmf_input.inx +%%DATADIR%%/extensions/xaml2svg.inx +%%DATADIR%%/extensions/xaml2svg.xsl +%%DATADIR%%/extensions/xaml2svg/Makefile.am +%%DATADIR%%/extensions/xaml2svg/animation.xsl +%%DATADIR%%/extensions/xaml2svg/brushes.xsl +%%DATADIR%%/extensions/xaml2svg/canvas.xsl +%%DATADIR%%/extensions/xaml2svg/geometry.xsl +%%DATADIR%%/extensions/xaml2svg/properties.xsl +%%DATADIR%%/extensions/xaml2svg/shapes.xsl +%%DATADIR%%/extensions/xaml2svg/transform.xsl +%%DATADIR%%/fonts/README +%%DATADIR%%/gradients/README +%%DATADIR%%/icons/README.icon_themes +%%DATADIR%%/icons/README.legacy_icons +%%DATADIR%%/icons/feBlend-icon.png +%%DATADIR%%/icons/feBlend-icon.svg +%%DATADIR%%/icons/feColorMatrix-icon.png +%%DATADIR%%/icons/feColorMatrix-icon.svg +%%DATADIR%%/icons/feComposite-icon.png +%%DATADIR%%/icons/feComposite-icon.svg +%%DATADIR%%/icons/feConvolveMatrix-icon.png +%%DATADIR%%/icons/feConvolveMatrix-icon.svg +%%DATADIR%%/icons/feDiffuseLighting-icon.png +%%DATADIR%%/icons/feDiffuseLighting-icon.svg +%%DATADIR%%/icons/feDisplacementMap-icon.png +%%DATADIR%%/icons/feDisplacementMap-icon.svg +%%DATADIR%%/icons/feFlood-icon.png +%%DATADIR%%/icons/feFlood-icon.svg +%%DATADIR%%/icons/feGaussianBlur-icon.png +%%DATADIR%%/icons/feGaussianBlur-icon.svg +%%DATADIR%%/icons/feImage-icon.png +%%DATADIR%%/icons/feImage-icon.svg +%%DATADIR%%/icons/feMerge-icon.png +%%DATADIR%%/icons/feMerge-icon.svg +%%DATADIR%%/icons/feMorphology-icon.png +%%DATADIR%%/icons/feMorphology-icon.svg +%%DATADIR%%/icons/feOffset-icon.png +%%DATADIR%%/icons/feOffset-icon.svg +%%DATADIR%%/icons/feSpecularLighting-icon.png +%%DATADIR%%/icons/feSpecularLighting-icon.svg +%%DATADIR%%/icons/feTurbulence-icon.png +%%DATADIR%%/icons/feTurbulence-icon.svg +%%DATADIR%%/icons/icons.svg +%%DATADIR%%/icons/inkscape.file.png +%%DATADIR%%/icons/inkscape.file.svg +%%DATADIR%%/icons/inkscape.svg +%%DATADIR%%/icons/legacy_icons.svg +%%DATADIR%%/icons/tango_icons.svg +%%DATADIR%%/icons/ticotico.jpg +%%DATADIR%%/keys/acd-canvas.xml +%%DATADIR%%/keys/adobe-illustrator-cs2.xml +%%DATADIR%%/keys/corel-draw-x4.xml +%%DATADIR%%/keys/default.xml +%%DATADIR%%/keys/inkscape.xml +%%DATADIR%%/keys/macromedia-freehand-mx.xml +%%DATADIR%%/keys/right-handed-illustration.xml +%%DATADIR%%/keys/xara.xml +%%DATADIR%%/keys/zoner-draw.xml +%%DATADIR%%/markers/markers.svg +%%DATADIR%%/palettes/Blues.gpl +%%DATADIR%%/palettes/Gold.gpl +%%DATADIR%%/palettes/Gray.gpl +%%DATADIR%%/palettes/Greens.gpl +%%DATADIR%%/palettes/Hilite.gpl +%%DATADIR%%/palettes/Khaki.gpl +%%DATADIR%%/palettes/LaTeX-Beamer.gpl +%%DATADIR%%/palettes/README +%%DATADIR%%/palettes/Reds.gpl +%%DATADIR%%/palettes/Royal.gpl +%%DATADIR%%/palettes/Tango-Palette.gpl +%%DATADIR%%/palettes/Topographic.gpl +%%DATADIR%%/palettes/Ubuntu.gpl +%%DATADIR%%/palettes/inkscape.gpl +%%DATADIR%%/palettes/svg.gpl +%%DATADIR%%/palettes/webhex.gpl +%%DATADIR%%/palettes/websafe22.gpl +%%DATADIR%%/palettes/windowsXP.gpl +%%DATADIR%%/patterns/README +%%DATADIR%%/patterns/patterns.svg +%%DATADIR%%/screens/about.bg.svg +%%DATADIR%%/screens/about.br.svg +%%DATADIR%%/screens/about.gl.svg +%%DATADIR%%/screens/about.it.svg +%%DATADIR%%/screens/about.pt_BR.svg +%%DATADIR%%/screens/about.ru.svg +%%DATADIR%%/screens/about.sk.svg +%%DATADIR%%/screens/about.sl.svg +%%DATADIR%%/screens/about.sr.svg +%%DATADIR%%/screens/about.sr@latin.svg +%%DATADIR%%/screens/about.svg +%%DATADIR%%/templates/A4.svg +%%DATADIR%%/templates/A4_landscape.svg +%%DATADIR%%/templates/CD_cover_300dpi.svg +%%DATADIR%%/templates/DVD_cover_regular_300dpi.svg +%%DATADIR%%/templates/DVD_cover_slim_300dpi.svg +%%DATADIR%%/templates/DVD_cover_superslim_300dpi.svg +%%DATADIR%%/templates/DVD_cover_ultraslim_300dpi.svg +%%DATADIR%%/templates/LaTeX_Beamer.svg +%%DATADIR%%/templates/Letter.svg +%%DATADIR%%/templates/Letter_landscape.svg +%%DATADIR%%/templates/README +%%DATADIR%%/templates/black_opaque.svg +%%DATADIR%%/templates/business_card_85x54mm.svg +%%DATADIR%%/templates/business_card_90x50mm.svg +%%DATADIR%%/templates/default.ca.svg +%%DATADIR%%/templates/default.cs.svg +%%DATADIR%%/templates/default.de.svg +%%DATADIR%%/templates/default.eo.svg +%%DATADIR%%/templates/default.es.svg +%%DATADIR%%/templates/default.eu.svg +%%DATADIR%%/templates/default.fi.svg +%%DATADIR%%/templates/default.fr.svg +%%DATADIR%%/templates/default.hu.svg +%%DATADIR%%/templates/default.it.svg +%%DATADIR%%/templates/default.lt.svg +%%DATADIR%%/templates/default.pl.svg +%%DATADIR%%/templates/default.pt_BR.svg +%%DATADIR%%/templates/default.sk.svg +%%DATADIR%%/templates/default.svg +%%DATADIR%%/templates/default_mm.svg +%%DATADIR%%/templates/default_pt.svg +%%DATADIR%%/templates/desktop_1024x768.svg +%%DATADIR%%/templates/desktop_1600x1200.svg +%%DATADIR%%/templates/desktop_640x480.svg +%%DATADIR%%/templates/desktop_800x600.svg +%%DATADIR%%/templates/fontforge_glyph.svg +%%DATADIR%%/templates/icon_16x16.svg +%%DATADIR%%/templates/icon_32x32.svg +%%DATADIR%%/templates/icon_48x48.svg +%%DATADIR%%/templates/icon_64x64.svg +%%DATADIR%%/templates/no_borders.svg +%%DATADIR%%/templates/no_layers.svg +%%DATADIR%%/templates/video_HDTV_1920x1080.svg +%%DATADIR%%/templates/video_NTSC_720x486.svg +%%DATADIR%%/templates/video_PAL_720x576.svg +%%DATADIR%%/templates/web_banner_468x60.svg +%%DATADIR%%/templates/web_banner_728x90.svg +%%DATADIR%%/templates/white_opaque.svg +%%DATADIR%%/tutorials/README +%%DATADIR%%/tutorials/gpl-2.svg +%%DATADIR%%/tutorials/making_markers.svg +%%DATADIR%%/tutorials/oldguitar.jpg +%%DATADIR%%/tutorials/potrace-de.png +%%DATADIR%%/tutorials/potrace-fr.png +%%DATADIR%%/tutorials/potrace-ru.png +%%DATADIR%%/tutorials/potrace.png +%%DATADIR%%/tutorials/tutorial-advanced.ca.svg +%%DATADIR%%/tutorials/tutorial-advanced.cs.svg +%%DATADIR%%/tutorials/tutorial-advanced.de.svg +%%DATADIR%%/tutorials/tutorial-advanced.es.svg +%%DATADIR%%/tutorials/tutorial-advanced.fr.svg +%%DATADIR%%/tutorials/tutorial-advanced.it.svg +%%DATADIR%%/tutorials/tutorial-advanced.ja.svg +%%DATADIR%%/tutorials/tutorial-advanced.pt_BR.svg +%%DATADIR%%/tutorials/tutorial-advanced.ru.svg +%%DATADIR%%/tutorials/tutorial-advanced.sk.svg +%%DATADIR%%/tutorials/tutorial-advanced.sl.svg +%%DATADIR%%/tutorials/tutorial-advanced.svg +%%DATADIR%%/tutorials/tutorial-advanced.vi.svg +%%DATADIR%%/tutorials/tutorial-advanced.zh_CN.svg +%%DATADIR%%/tutorials/tutorial-basic.bg.svg +%%DATADIR%%/tutorials/tutorial-basic.ca.svg +%%DATADIR%%/tutorials/tutorial-basic.cs.svg +%%DATADIR%%/tutorials/tutorial-basic.da.svg +%%DATADIR%%/tutorials/tutorial-basic.de.svg +%%DATADIR%%/tutorials/tutorial-basic.es.svg +%%DATADIR%%/tutorials/tutorial-basic.fr.svg +%%DATADIR%%/tutorials/tutorial-basic.it.svg +%%DATADIR%%/tutorials/tutorial-basic.ja.svg +%%DATADIR%%/tutorials/tutorial-basic.nn.svg +%%DATADIR%%/tutorials/tutorial-basic.pt_BR.svg +%%DATADIR%%/tutorials/tutorial-basic.ru.svg +%%DATADIR%%/tutorials/tutorial-basic.sk.svg +%%DATADIR%%/tutorials/tutorial-basic.sl.svg +%%DATADIR%%/tutorials/tutorial-basic.svg +%%DATADIR%%/tutorials/tutorial-basic.tr.svg +%%DATADIR%%/tutorials/tutorial-basic.vi.svg +%%DATADIR%%/tutorials/tutorial-basic.zh_CN.svg +%%DATADIR%%/tutorials/tutorial-calligraphy.ca.svg +%%DATADIR%%/tutorials/tutorial-calligraphy.cs.svg +%%DATADIR%%/tutorials/tutorial-calligraphy.de.svg +%%DATADIR%%/tutorials/tutorial-calligraphy.es.svg +%%DATADIR%%/tutorials/tutorial-calligraphy.fr.svg +%%DATADIR%%/tutorials/tutorial-calligraphy.pt_BR.svg +%%DATADIR%%/tutorials/tutorial-calligraphy.ru.svg +%%DATADIR%%/tutorials/tutorial-calligraphy.sl.svg +%%DATADIR%%/tutorials/tutorial-calligraphy.svg +%%DATADIR%%/tutorials/tutorial-calligraphy.vi.svg +%%DATADIR%%/tutorials/tutorial-elements.ca.svg +%%DATADIR%%/tutorials/tutorial-elements.de.svg +%%DATADIR%%/tutorials/tutorial-elements.es.svg +%%DATADIR%%/tutorials/tutorial-elements.fr.svg +%%DATADIR%%/tutorials/tutorial-elements.pt_BR.svg +%%DATADIR%%/tutorials/tutorial-elements.ru.svg +%%DATADIR%%/tutorials/tutorial-elements.sl.svg +%%DATADIR%%/tutorials/tutorial-elements.svg +%%DATADIR%%/tutorials/tutorial-shapes.ca.svg +%%DATADIR%%/tutorials/tutorial-shapes.cs.svg +%%DATADIR%%/tutorials/tutorial-shapes.de.svg +%%DATADIR%%/tutorials/tutorial-shapes.es.svg +%%DATADIR%%/tutorials/tutorial-shapes.fr.svg +%%DATADIR%%/tutorials/tutorial-shapes.it.svg +%%DATADIR%%/tutorials/tutorial-shapes.ja.svg +%%DATADIR%%/tutorials/tutorial-shapes.pt_BR.svg +%%DATADIR%%/tutorials/tutorial-shapes.ru.svg +%%DATADIR%%/tutorials/tutorial-shapes.sk.svg +%%DATADIR%%/tutorials/tutorial-shapes.sl.svg +%%DATADIR%%/tutorials/tutorial-shapes.svg +%%DATADIR%%/tutorials/tutorial-shapes.vi.svg +%%DATADIR%%/tutorials/tutorial-shapes.zh_CN.svg +%%DATADIR%%/tutorials/tutorial-tips.ca.svg +%%DATADIR%%/tutorials/tutorial-tips.de.svg +%%DATADIR%%/tutorials/tutorial-tips.es.svg +%%DATADIR%%/tutorials/tutorial-tips.fr.svg +%%DATADIR%%/tutorials/tutorial-tips.it.svg +%%DATADIR%%/tutorials/tutorial-tips.pt_BR.svg +%%DATADIR%%/tutorials/tutorial-tips.ru.svg +%%DATADIR%%/tutorials/tutorial-tips.sk.svg +%%DATADIR%%/tutorials/tutorial-tips.sl.svg +%%DATADIR%%/tutorials/tutorial-tips.svg +%%DATADIR%%/tutorials/tutorial-tracing.ca.svg +%%DATADIR%%/tutorials/tutorial-tracing.de.svg +%%DATADIR%%/tutorials/tutorial-tracing.es.svg +%%DATADIR%%/tutorials/tutorial-tracing.fr.svg +%%DATADIR%%/tutorials/tutorial-tracing.pt_BR.svg +%%DATADIR%%/tutorials/tutorial-tracing.ru.svg +%%DATADIR%%/tutorials/tutorial-tracing.sl.svg +%%DATADIR%%/tutorials/tutorial-tracing.svg +%%DATADIR%%/tutorials/tutorial-tracing.vi.svg +%%DATADIR%%/tutorials/tux.png +%%DATADIR%%/ui/keybindings.rc +%%DATADIR%%/ui/menus-bars.xml +%%DATADIR%%/ui/toolbox.xml +%%DATADIR%%/ui/units.txt +%%DATADIR%%/ui/units.xml +share/locale/am/LC_MESSAGES/inkscape.mo +share/locale/ar/LC_MESSAGES/inkscape.mo +share/locale/az/LC_MESSAGES/inkscape.mo +share/locale/be/LC_MESSAGES/inkscape.mo +share/locale/bg/LC_MESSAGES/inkscape.mo +share/locale/bn/LC_MESSAGES/inkscape.mo +share/locale/br/LC_MESSAGES/inkscape.mo +share/locale/ca/LC_MESSAGES/inkscape.mo +share/locale/ca@valencia/LC_MESSAGES/inkscape.mo +share/locale/cs/LC_MESSAGES/inkscape.mo +share/locale/da/LC_MESSAGES/inkscape.mo +share/locale/de/LC_MESSAGES/inkscape.mo +share/locale/dz/LC_MESSAGES/inkscape.mo +share/locale/el/LC_MESSAGES/inkscape.mo +share/locale/en_AU/LC_MESSAGES/inkscape.mo +share/locale/en_CA/LC_MESSAGES/inkscape.mo +share/locale/en_GB/LC_MESSAGES/inkscape.mo +share/locale/en_US@piglatin/LC_MESSAGES/inkscape.mo +share/locale/eo/LC_MESSAGES/inkscape.mo +share/locale/es/LC_MESSAGES/inkscape.mo +share/locale/es_MX/LC_MESSAGES/inkscape.mo +share/locale/et/LC_MESSAGES/inkscape.mo +share/locale/eu/LC_MESSAGES/inkscape.mo +share/locale/fi/LC_MESSAGES/inkscape.mo +share/locale/fr/LC_MESSAGES/inkscape.mo +share/locale/ga/LC_MESSAGES/inkscape.mo +share/locale/gl/LC_MESSAGES/inkscape.mo +share/locale/he/LC_MESSAGES/inkscape.mo +share/locale/hr/LC_MESSAGES/inkscape.mo +share/locale/hu/LC_MESSAGES/inkscape.mo +share/locale/id/LC_MESSAGES/inkscape.mo +share/locale/it/LC_MESSAGES/inkscape.mo +share/locale/ja/LC_MESSAGES/inkscape.mo +share/locale/km/LC_MESSAGES/inkscape.mo +share/locale/ko/LC_MESSAGES/inkscape.mo +share/locale/lt/LC_MESSAGES/inkscape.mo +share/locale/mk/LC_MESSAGES/inkscape.mo +share/locale/mn/LC_MESSAGES/inkscape.mo +share/locale/nb/LC_MESSAGES/inkscape.mo +share/locale/ne/LC_MESSAGES/inkscape.mo +share/locale/nl/LC_MESSAGES/inkscape.mo +share/locale/nn/LC_MESSAGES/inkscape.mo +share/locale/pa/LC_MESSAGES/inkscape.mo +share/locale/pl/LC_MESSAGES/inkscape.mo +share/locale/pt/LC_MESSAGES/inkscape.mo +share/locale/pt_BR/LC_MESSAGES/inkscape.mo +share/locale/ro/LC_MESSAGES/inkscape.mo +share/locale/ru/LC_MESSAGES/inkscape.mo +share/locale/rw/LC_MESSAGES/inkscape.mo +share/locale/sk/LC_MESSAGES/inkscape.mo +share/locale/sl/LC_MESSAGES/inkscape.mo +share/locale/sq/LC_MESSAGES/inkscape.mo +share/locale/sr/LC_MESSAGES/inkscape.mo +share/locale/sr@latin/LC_MESSAGES/inkscape.mo +share/locale/sv/LC_MESSAGES/inkscape.mo +share/locale/th/LC_MESSAGES/inkscape.mo +share/locale/tr/LC_MESSAGES/inkscape.mo +share/locale/uk/LC_MESSAGES/inkscape.mo +share/locale/vi/LC_MESSAGES/inkscape.mo +share/locale/zh_CN/LC_MESSAGES/inkscape.mo +share/locale/zh_TW/LC_MESSAGES/inkscape.mo +share/pixmaps/inkscape.png +@dirrm %%DATADIR%%/ui +@dirrm %%DATADIR%%/tutorials +@dirrm %%DATADIR%%/templates +@dirrm %%DATADIR%%/screens +@dirrm %%DATADIR%%/patterns +@dirrm %%DATADIR%%/palettes +@dirrm %%DATADIR%%/markers +@dirrm %%DATADIR%%/keys +@dirrm %%DATADIR%%/icons +@dirrm %%DATADIR%%/gradients +@dirrm %%DATADIR%%/fonts +@dirrm %%DATADIR%%/extensions/xaml2svg +@dirrm %%DATADIR%%/extensions/Barcode +@dirrm %%DATADIR%%/extensions +@dirrm %%DATADIR%%/examples +@dirrm %%DATADIR%%/clipart +@dirrm %%DATADIR%% +@dirrmtry share/applications +@dirrmtry man/fr/man1 +@dirrmtry man/fr +@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true +@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true +@dirrmtry share/locale/sr@latin/LC_MESSAGES +@dirrmtry share/locale/sr@latin +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/km/LC_MESSAGES +@dirrmtry share/locale/km +@dirrmtry share/locale/en_US@piglatin/LC_MESSAGES +@dirrmtry share/locale/en_US@piglatin +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz +@dirrmtry share/locale/ca@valencia/LC_MESSAGES +@dirrmtry share/locale/ca@valencia diff --git a/graphics/osg-devel/Makefile b/graphics/osg-devel/Makefile new file mode 100644 index 000000000..5abdef3fc --- /dev/null +++ b/graphics/osg-devel/Makefile @@ -0,0 +1,218 @@ +# New ports collection makefile for: Open Scene Graph +# Date created: 26 Apr 2001 +# Whom: Randall Hopper <aa8vb@nc.rr.com> +# +# $FreeBSD$ +# + +PORTNAME= osg +PORTVERSION= 2.7.9 +PORTREVISION= 1 +CATEGORIES= graphics +MASTER_SITES= http://www.openscenegraph.org/downloads/developer_releases/ \ + http://mirror.amdmi3.ru/ +DISTNAME= OpenSceneGraph-${PORTVERSION} +PKGNAMESUFFIX= -devel + +MAINTAINER= amdmi3@FreeBSD.org +COMMENT= C++ OpenGL scene graph library for real-time rendering + +LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ + png.5:${PORTSDIR}/graphics/png \ + tiff.4:${PORTSDIR}/graphics/tiff + +USE_ZIP= yes +USE_CMAKE= yes +USE_GL= gl glu +USE_GNOME= pkgconfig +USE_XORG= x11 +USE_LDCONFIG= yes + +PLIST_SUB= OSG_VERSION=${PORTVERSION} \ + OSG_SHLIBVER=54 \ + OPENTHREADS_VERSION=2.3.1 \ + OPENTHREADS_SHLIBVER=11 + +PORTSCOUT= limitw:1,odd + +OPTIONS= CURL "Support for cURL" off \ + FREETYPE "Support for FreeType" on \ + GDAL "Support for GDAL" off \ + GIF "Support for libungif" on \ + INVENTOR "Support for SGI OpenInventor" off \ + JASPER "Support for JPEG2000" off \ + XINE "Support for Xine" off \ + ITK "Support for InsightToolkit" off \ + VNC "Support for LibVNCServer" off \ + OPENEXR "Support for OpenEXR" off \ + SVG "Support for SVG through librsvg2" off \ + PDF "Support for PDF through poppler" off \ + XRANDR "Use Xrandr" on + +# broken +# OPENVRML "Support for OpenVRML" off + +.include <bsd.port.pre.mk> + +# GUI toolkits are only needed for building examples, which are not even installed +FORCE_IGNORE= FLTK GLUT SDL FOX Qt3 Qt4 wxWidgets # only needed for examples +FORCE_IGNORE+= COLLADA Performer OurDCMTK XUL # not in ports (yet?) +FORCE_REQUIRE= Threads OpenGL X11 JPEG PNG TIFF ZLIB # common and lightweight +FORCE_PC_IGNORE= GTK GTKGL # only needed for examples +FORCE_PC_REQUIRE= + +# options that affect FIND_PACKAGE +.if defined(WITH_CURL) +FORCE_REQUIRE+= CURL +LIB_DEPENDS+= curl.5:${PORTSDIR}/ftp/curl +PLIST_SUB+= CURL="" +.else +FORCE_IGNORE+= CURL +PLIST_SUB+= CURL="@comment " +.endif + +.if !defined(WITHOUT_FREETYPE) +FORCE_REQUIRE+= FreeType +LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 +PLIST_SUB+= FREETYPE="" +.else +FORCE_IGNORE+= FreeType +PLIST_SUB+= FREETYPE="@comment " +.endif + +.if defined(WITH_GDAL) +FORCE_REQUIRE+= GDAL +LIB_DEPENDS+= gdal.13:${PORTSDIR}/graphics/gdal +PLIST_SUB+= GDAL="" +.else +FORCE_IGNORE+= GDAL +PLIST_SUB+= GDAL="@comment " +.endif + +.if defined(WITH_GIF) +FORCE_REQUIRE+= GIFLIB +LIB_DEPENDS+= ungif.5:${PORTSDIR}/graphics/libungif +PLIST_SUB+= GIF="" +.else +FORCE_IGNORE+= GIFLIB +PLIST_SUB+= GIF="@comment " +.endif + +.if defined(WITH_INVENTOR) +FORCE_REQUIRE+= Inventor +BUILD_DEPENDS+= ${LOCALBASE}/lib/libInventor.so:${PORTSDIR}/graphics/inventor +RUN_DEPENDS+= ${LOCALBASE}/lib/libInventor.so:${PORTSDIR}/graphics/inventor +PLIST_SUB+= INVENTOR="" +.else +FORCE_IGNORE+= Inventor +PLIST_SUB+= INVENTOR="@comment " +.endif + +.if defined(WITH_JASPER) +FORCE_REQUIRE+= Jasper +LIB_DEPENDS+= jasper.4:${PORTSDIR}/graphics/jasper +PLIST_SUB+= JASPER="" +.else +FORCE_IGNORE+= Jasper +PLIST_SUB+= JASPER="@comment " +.endif + +#.if defined(WITH_OPENVRML) +#FORCE_REQUIRE+= OpenVRML +#LIB_DEPENDS+= openvrml.8:${PORTSDIR}/www/openvrml +#PLIST_SUB+= OPENVRML="" +#.else +FORCE_IGNORE+= OpenVRML +PLIST_SUB+= OPENVRML="@comment " +#.endif + +.if defined(WITH_XINE) +FORCE_REQUIRE+= Xine +LIB_DEPENDS+= xine.1:${PORTSDIR}/multimedia/libxine +PLIST_SUB+= XINE="" +.else +FORCE_IGNORE+= Xine +PLIST_SUB+= XINE="@comment " +.endif + +.if defined(WITH_ITK) +FORCE_REQUIRE+= ITK +BUILD_DEPENDS+= ${LOCALBASE}/lib/InsightToolkit/UseITK.cmake:${PORTSDIR}/science/InsightToolkit +RUN_DEPENDS+= ${LOCALBASE}/lib/InsightToolkit/UseITK.cmake:${PORTSDIR}/science/InsightToolkit +PLIST_SUB+= ITK="" +.else +FORCE_IGNORE+= ITK +PLIST_SUB+= ITK="@comment " +.endif + +.if defined(WITH_VNC) +FORCE_REQUIRE+= LibVNCServer +LIB_DEPENDS+= vncserver.0:${PORTSDIR}/net/libvncserver +PLIST_SUB+= VNC="" +.else +FORCE_IGNORE+= LibVNCServer +PLIST_SUB+= VNC="@comment " +.endif + +.if defined(WITH_OPENEXR) +FORCE_REQUIRE+= OpenEXR +LIB_DEPENDS+= IlmImf.6:${PORTSDIR}/graphics/OpenEXR +PLIST_SUB+= OPENEXR="" +.else +FORCE_IGNORE+= OpenEXR +PLIST_SUB+= OPENEXR="@comment " +.endif + +# options that affect PKG_CHECK_MODULES +.if defined(WITH_SVG) +FORCE_PC_REQUIRE+=RSVG +LIB_DEPENDS+= rsvg-2:${PORTSDIR}/graphics/librsvg2 +PLIST_SUB+= SVG="" +.else +FORCE_PC_IGNORE+=RSVG +PLIST_SUB+= SVG="@comment " +.endif + +.if defined(WITH_PDF) +FORCE_PC_REQUIRE+=POPPLER +LIB_DEPENDS+= poppler-glib.4:${PORTSDIR}/graphics/poppler-gtk +PLIST_SUB+= PDF="" +.else +FORCE_PC_IGNORE+=POPPLER +PLIST_SUB+= PDF="@comment " +.endif + +.if defined(WITH_SVG) || defined(WITH_PDF) +FORCE_PC_REQUIRE+=CAIRO +LIB_DEPENDS+= cairo.2:${PORTSDIR}/graphics/cairo +.else +FORCE_PC_IGNORE+=CAIRO +.endif + +# other options +.if defined(WITHOUT_XRANDR) +CMAKE_ARGS+= -DOSGVIEWER_USE_XRANDR:BOOL=OFF +.else +CMAKE_ARGS+= -DOSGVIEWER_USE_XRANDR:BOOL=ON +USE_XORG+= xrandr +.endif + +post-patch: +.for p in ${FORCE_REQUIRE} + @${REINPLACE_CMD} -e '/FIND_PACKAGE.*${p}/ s|)$$| REQUIRED&|' \ + ${WRKSRC}/CMakeLists.txt +.endfor +.for p in ${FORCE_IGNORE} + @${REINPLACE_CMD} -e '/FIND_PACKAGE.*${p}/ s|^|#|' \ + ${WRKSRC}/CMakeLists.txt +.endfor +.for p in ${FORCE_PC_REQUIRE} + @${REINPLACE_CMD} -e 's|PKG_CHECK_MODULES.*${p}|& REQUIRED| ' \ + ${WRKSRC}/CMakeLists.txt +.endfor +.for p in ${FORCE_PC_IGNORE} + @${REINPLACE_CMD} -e '/PKG_CHECK_MODULES.*${p}/ s|^|#|' \ + ${WRKSRC}/CMakeLists.txt +.endfor + +.include <bsd.port.post.mk> diff --git a/graphics/osg-devel/distinfo b/graphics/osg-devel/distinfo new file mode 100644 index 000000000..acdf818b2 --- /dev/null +++ b/graphics/osg-devel/distinfo @@ -0,0 +1,3 @@ +MD5 (OpenSceneGraph-2.7.9.zip) = 14629ae17c6a5207630713608d7f3c56 +SHA256 (OpenSceneGraph-2.7.9.zip) = bb2248b65ea6ff1a7f865f28e8b421951ac3d1623dc0ab10ebf30665e10992fb +SIZE (OpenSceneGraph-2.7.9.zip) = 6702867 diff --git a/graphics/osg-devel/files/patch-CMakeLists.txt b/graphics/osg-devel/files/patch-CMakeLists.txt new file mode 100644 index 000000000..e7dc6a6dc --- /dev/null +++ b/graphics/osg-devel/files/patch-CMakeLists.txt @@ -0,0 +1,20 @@ +--- CMakeLists.txt.orig 2009-01-29 16:29:08.000000000 +0300 ++++ CMakeLists.txt 2009-02-05 17:45:24.000000000 +0300 +@@ -459,7 +459,7 @@ + + IF(UNIX AND NOT WIN32 AND NOT APPLE) + IF(CMAKE_SIZEOF_VOID_P MATCHES "8") +- SET(LIB_POSTFIX "64" CACHE STRING "suffix for 32/64 dir placement") ++ SET(LIB_POSTFIX "" CACHE STRING "suffix for 32/64 dir placement") + MARK_AS_ADVANCED(LIB_POSTFIX) + ENDIF(CMAKE_SIZEOF_VOID_P MATCHES "8") + ENDIF(UNIX AND NOT WIN32 AND NOT APPLE) +@@ -766,7 +766,7 @@ + @ONLY + ) + +-INSTALL(FILES ${PROJECT_BINARY_DIR}/packaging/pkgconfig/openscenegraph.pc DESTINATION lib${LIB_POSTFIX}/pkgconfig COMPONENT libopenscenegraph-dev) ++INSTALL(FILES ${PROJECT_BINARY_DIR}/packaging/pkgconfig/openscenegraph.pc DESTINATION libdata/pkgconfig COMPONENT libopenscenegraph-dev) + + # Run this as late as possible so users can easier spot the message + IF (${CMAKE_INSTALL_PREFIX} STREQUAL "/usr/local") diff --git a/graphics/osg-devel/files/patch-src-OpenThreads-CMakeLists.txt b/graphics/osg-devel/files/patch-src-OpenThreads-CMakeLists.txt new file mode 100644 index 000000000..675ef5a72 --- /dev/null +++ b/graphics/osg-devel/files/patch-src-OpenThreads-CMakeLists.txt @@ -0,0 +1,8 @@ +--- src/OpenThreads/CMakeLists.txt.orig 2009-01-27 18:34:57.000000000 +0300 ++++ src/OpenThreads/CMakeLists.txt 2009-02-05 17:54:57.000000000 +0300 +@@ -94,4 +94,4 @@ + @ONLY + ) + +-INSTALL(FILES ${PROJECT_BINARY_DIR}/packaging/pkgconfig/openthreads.pc DESTINATION lib${LIB_POSTFIX}/pkgconfig) ++INSTALL(FILES ${PROJECT_BINARY_DIR}/packaging/pkgconfig/openthreads.pc DESTINATION libdata/pkgconfig) diff --git a/graphics/osg-devel/files/patch-src-OpenThreads-pthreads-PThread.c++ b/graphics/osg-devel/files/patch-src-OpenThreads-pthreads-PThread.c++ new file mode 100644 index 000000000..d1997c322 --- /dev/null +++ b/graphics/osg-devel/files/patch-src-OpenThreads-pthreads-PThread.c++ @@ -0,0 +1,37 @@ +--- src/OpenThreads/pthreads/PThread.c++.orig 2008-11-05 13:27:49.000000000 +0300 ++++ src/OpenThreads/pthreads/PThread.c++ 2009-02-04 18:06:28.000000000 +0300 +@@ -21,6 +21,7 @@ + #include <sys/types.h> + #include <unistd.h> + #include <pthread.h> ++#include <pthread_np.h> + + #if defined __linux || defined __sun || defined __APPLE__ + #include <string.h> +@@ -125,7 +126,7 @@ + #if defined(__sgi) + pthread_setrunon_np( pd->cpunum ); + #elif defined(HAVE_PTHREAD_SETAFFINITY_NP) || defined(HAVE_THREE_PARAM_SCHED_SETAFFINITY) || defined(HAVE_TWO_PARAM_SCHED_SETAFFINITY) +- cpu_set_t cpumask; ++ cpuset_t cpumask; + CPU_ZERO( &cpumask ); + CPU_SET( pd->cpunum, &cpumask ); + +@@ -541,7 +542,7 @@ + + if (pd->isRunning && Thread::CurrentThread()==this) + { +- cpu_set_t cpumask; ++ cpuset_t cpumask; + CPU_ZERO( &cpumask ); + CPU_SET( pd->cpunum, &cpumask ); + #if defined(HAVE_PTHREAD_SETAFFINITY_NP) +@@ -975,7 +976,7 @@ + else + { + #if defined(HAVE_PTHREAD_SETAFFINITY_NP) || defined(HAVE_THREE_PARAM_SCHED_SETAFFINITY) || defined(HAVE_TWO_PARAM_SCHED_SETAFFINITY) +- cpu_set_t cpumask; ++ cpuset_t cpumask; + CPU_ZERO( &cpumask ); + CPU_SET( cpunum, &cpumask ); + diff --git a/graphics/osg-devel/files/patch-src-osgViewer-CMakeLists.txt b/graphics/osg-devel/files/patch-src-osgViewer-CMakeLists.txt new file mode 100644 index 000000000..6d00269d1 --- /dev/null +++ b/graphics/osg-devel/files/patch-src-osgViewer-CMakeLists.txt @@ -0,0 +1,11 @@ +--- src/osgViewer/CMakeLists.txt.orig 2009-01-26 16:48:50.000000000 +0300 ++++ src/osgViewer/CMakeLists.txt 2009-02-04 19:00:45.000000000 +0300 +@@ -117,7 +117,7 @@ + IF(OSGVIEWER_USE_XRANDR) + ADD_DEFINITIONS(-DOSGVIEWER_USE_XRANDR) + SET(LIB_PRIVATE_HEADERS ${LIB_PRIVATE_HEADERS} ${XRANDR_INCLUDE_DIRS} ) +- LINK_LIBRARIES(Xrandr) ++ LINK_LIBRARIES(${XRANDR_LDFLAGS}) + ENDIF(OSGVIEWER_USE_XRANDR) + + # X11 on Apple requires X11 library plus OpenGL linking hack on Leopard diff --git a/graphics/osg-devel/pkg-descr b/graphics/osg-devel/pkg-descr new file mode 100644 index 000000000..614609091 --- /dev/null +++ b/graphics/osg-devel/pkg-descr @@ -0,0 +1,6 @@ +The Open Scene Graph is a cross-platform C++ OpenGL library for the +real-time, photo-realistic rendering of large 3D models. Uses range from +visual simulation, to scientific modelling, to games, to whatever you can +think of! + +WWW: http://www.openscenegraph.org/ diff --git a/graphics/osg-devel/pkg-plist b/graphics/osg-devel/pkg-plist new file mode 100644 index 000000000..00d42c704 --- /dev/null +++ b/graphics/osg-devel/pkg-plist @@ -0,0 +1,605 @@ +bin/osgarchive +bin/osgconv +bin/osgfilecache +bin/osgversion +bin/osgviewer +include/OpenThreads/Atomic +include/OpenThreads/Barrier +include/OpenThreads/Block +include/OpenThreads/Condition +include/OpenThreads/Config +include/OpenThreads/Exports +include/OpenThreads/Mutex +include/OpenThreads/ReadWriteMutex +include/OpenThreads/ReentrantMutex +include/OpenThreads/ScopedLock +include/OpenThreads/Thread +include/OpenThreads/Version +include/osg/AlphaFunc +include/osg/AnimationPath +include/osg/ApplicationUsage +include/osg/ArgumentParser +include/osg/Array +include/osg/AutoTransform +include/osg/Billboard +include/osg/BlendColor +include/osg/BlendEquation +include/osg/BlendFunc +include/osg/BoundingBox +include/osg/BoundingSphere +include/osg/BoundsChecking +include/osg/BufferObject +include/osg/Camera +include/osg/CameraNode +include/osg/CameraView +include/osg/ClampColor +include/osg/ClearNode +include/osg/ClipNode +include/osg/ClipPlane +include/osg/ClusterCullingCallback +include/osg/CollectOccludersVisitor +include/osg/ColorMask +include/osg/ColorMatrix +include/osg/ComputeBoundsVisitor +include/osg/Config +include/osg/ConvexPlanarOccluder +include/osg/ConvexPlanarPolygon +include/osg/CoordinateSystemNode +include/osg/CopyOp +include/osg/CullFace +include/osg/CullSettings +include/osg/CullStack +include/osg/CullingSet +include/osg/DeleteHandler +include/osg/Depth +include/osg/DisplaySettings +include/osg/DrawPixels +include/osg/Drawable +include/osg/Endian +include/osg/Export +include/osg/Fog +include/osg/FragmentProgram +include/osg/FrameBufferObject +include/osg/FrameStamp +include/osg/FrontFace +include/osg/GL +include/osg/GL2Extensions +include/osg/GLExtensions +include/osg/GLObjects +include/osg/GLU +include/osg/Geode +include/osg/Geometry +include/osg/GraphicsContext +include/osg/GraphicsThread +include/osg/Group +include/osg/Hint +include/osg/Image +include/osg/ImageSequence +include/osg/ImageStream +include/osg/ImageUtils +include/osg/KdTree +include/osg/LOD +include/osg/Light +include/osg/LightModel +include/osg/LightSource +include/osg/LineSegment +include/osg/LineStipple +include/osg/LineWidth +include/osg/LogicOp +include/osg/Material +include/osg/Math +include/osg/Matrix +include/osg/MatrixTransform +include/osg/Matrixd +include/osg/Matrixf +include/osg/MixinVector +include/osg/Multisample +include/osg/Node +include/osg/NodeCallback +include/osg/NodeTrackerCallback +include/osg/NodeVisitor +include/osg/Notify +include/osg/Object +include/osg/OccluderNode +include/osg/OcclusionQueryNode +include/osg/OperationThread +include/osg/PagedLOD +include/osg/Plane +include/osg/Point +include/osg/PointSprite +include/osg/PolygonMode +include/osg/PolygonOffset +include/osg/PolygonStipple +include/osg/Polytope +include/osg/PositionAttitudeTransform +include/osg/PrimitiveSet +include/osg/Program +include/osg/Projection +include/osg/ProxyNode +include/osg/Quat +include/osg/Referenced +include/osg/RenderInfo +include/osg/Scissor +include/osg/Sequence +include/osg/ShadeModel +include/osg/Shader +include/osg/ShadowVolumeOccluder +include/osg/Shape +include/osg/ShapeDrawable +include/osg/State +include/osg/StateAttribute +include/osg/StateSet +include/osg/Stats +include/osg/Stencil +include/osg/StencilTwoSided +include/osg/Switch +include/osg/TemplatePrimitiveFunctor +include/osg/TexEnv +include/osg/TexEnvCombine +include/osg/TexEnvFilter +include/osg/TexGen +include/osg/TexGenNode +include/osg/TexMat +include/osg/Texture +include/osg/Texture1D +include/osg/Texture2D +include/osg/Texture2DArray +include/osg/Texture3D +include/osg/TextureCubeMap +include/osg/TextureRectangle +include/osg/Timer +include/osg/TransferFunction +include/osg/Transform +include/osg/TriangleFunctor +include/osg/TriangleIndexFunctor +include/osg/Uniform +include/osg/Vec2 +include/osg/Vec2b +include/osg/Vec2d +include/osg/Vec2f +include/osg/Vec2s +include/osg/Vec3 +include/osg/Vec3b +include/osg/Vec3d +include/osg/Vec3f +include/osg/Vec3s +include/osg/Vec4 +include/osg/Vec4b +include/osg/Vec4d +include/osg/Vec4f +include/osg/Vec4s +include/osg/Vec4ub +include/osg/Version +include/osg/VertexProgram +include/osg/View +include/osg/Viewport +include/osg/buffered_value +include/osg/fast_back_stack +include/osg/io_utils +include/osg/observer_ptr +include/osg/ref_ptr +include/osgAnimation/Animation +include/osgAnimation/AnimationManagerBase +include/osgAnimation/Assert +include/osgAnimation/BasicAnimationManager +include/osgAnimation/Bone +include/osgAnimation/Channel +include/osgAnimation/CubicBezier +include/osgAnimation/EaseMotion +include/osgAnimation/Export +include/osgAnimation/Interpolator +include/osgAnimation/Keyframe +include/osgAnimation/LinkVisitor +include/osgAnimation/Sampler +include/osgAnimation/Skeleton +include/osgAnimation/Skinning +include/osgAnimation/Target +include/osgAnimation/Timeline +include/osgAnimation/TimelineAnimationManager +include/osgAnimation/UpdateCallback +include/osgAnimation/Vec3Packed +include/osgAnimation/VertexInfluence +include/osgDB/Archive +include/osgDB/AuthenticationMap +include/osgDB/ConvertUTF +include/osgDB/DatabasePager +include/osgDB/DotOsgWrapper +include/osgDB/DynamicLibrary +include/osgDB/Export +include/osgDB/Field +include/osgDB/FieldReader +include/osgDB/FieldReaderIterator +include/osgDB/FileCache +include/osgDB/FileNameUtils +include/osgDB/FileUtils +include/osgDB/ImageOptions +include/osgDB/ImagePager +include/osgDB/Input +include/osgDB/Output +include/osgDB/ParameterOutput +include/osgDB/PluginQuery +include/osgDB/ReadFile +include/osgDB/ReaderWriter +include/osgDB/Registry +include/osgDB/Serializer +include/osgDB/SharedStateManager +include/osgDB/Version +include/osgDB/WriteFile +include/osgDB/fstream +include/osgFX/AnisotropicLighting +include/osgFX/BumpMapping +include/osgFX/Cartoon +include/osgFX/Effect +include/osgFX/Export +include/osgFX/MultiTextureControl +include/osgFX/Registry +include/osgFX/Scribe +include/osgFX/SpecularHighlights +include/osgFX/Technique +include/osgFX/Validator +include/osgFX/Version +include/osgGA/AnimationPathManipulator +include/osgGA/CameraViewSwitchManipulator +include/osgGA/DriveManipulator +include/osgGA/EventQueue +include/osgGA/EventVisitor +include/osgGA/Export +include/osgGA/FlightManipulator +include/osgGA/GUIActionAdapter +include/osgGA/GUIEventAdapter +include/osgGA/GUIEventHandler +include/osgGA/KeySwitchMatrixManipulator +include/osgGA/MatrixManipulator +include/osgGA/NodeTrackerManipulator +include/osgGA/StateSetManipulator +include/osgGA/TerrainManipulator +include/osgGA/TrackballManipulator +include/osgGA/UFOManipulator +include/osgGA/Version +include/osgManipulator/AntiSquish +include/osgManipulator/Command +include/osgManipulator/CommandManager +include/osgManipulator/Constraint +include/osgManipulator/Dragger +include/osgManipulator/Export +include/osgManipulator/Projector +include/osgManipulator/RotateCylinderDragger +include/osgManipulator/RotateSphereDragger +include/osgManipulator/Scale1DDragger +include/osgManipulator/Scale2DDragger +include/osgManipulator/ScaleAxisDragger +include/osgManipulator/Selection +include/osgManipulator/TabBoxDragger +include/osgManipulator/TabPlaneDragger +include/osgManipulator/TabPlaneTrackballDragger +include/osgManipulator/TrackballDragger +include/osgManipulator/Translate1DDragger +include/osgManipulator/Translate2DDragger +include/osgManipulator/TranslateAxisDragger +include/osgManipulator/TranslatePlaneDragger +include/osgManipulator/Version +include/osgParticle/AccelOperator +include/osgParticle/AngularAccelOperator +include/osgParticle/BoxPlacer +include/osgParticle/CenteredPlacer +include/osgParticle/ConnectedParticleSystem +include/osgParticle/ConstantRateCounter +include/osgParticle/Counter +include/osgParticle/Emitter +include/osgParticle/ExplosionDebrisEffect +include/osgParticle/ExplosionEffect +include/osgParticle/Export +include/osgParticle/FireEffect +include/osgParticle/FluidFrictionOperator +include/osgParticle/FluidProgram +include/osgParticle/ForceOperator +include/osgParticle/Interpolator +include/osgParticle/LinearInterpolator +include/osgParticle/ModularEmitter +include/osgParticle/ModularProgram +include/osgParticle/MultiSegmentPlacer +include/osgParticle/Operator +include/osgParticle/Particle +include/osgParticle/ParticleEffect +include/osgParticle/ParticleProcessor +include/osgParticle/ParticleSystem +include/osgParticle/ParticleSystemUpdater +include/osgParticle/Placer +include/osgParticle/PointPlacer +include/osgParticle/PrecipitationEffect +include/osgParticle/Program +include/osgParticle/RadialShooter +include/osgParticle/RandomRateCounter +include/osgParticle/SectorPlacer +include/osgParticle/SegmentPlacer +include/osgParticle/Shooter +include/osgParticle/SmokeEffect +include/osgParticle/SmokeTrailEffect +include/osgParticle/VariableRateCounter +include/osgParticle/Version +include/osgParticle/range +include/osgShadow/ConvexPolyhedron +include/osgShadow/DebugShadowMap +include/osgShadow/Export +include/osgShadow/LightSpacePerspectiveShadowMap +include/osgShadow/MinimalCullBoundsShadowMap +include/osgShadow/MinimalDrawBoundsShadowMap +include/osgShadow/MinimalShadowMap +include/osgShadow/OccluderGeometry +include/osgShadow/ParallelSplitShadowMap +include/osgShadow/ProjectionShadowMap +include/osgShadow/ShadowMap +include/osgShadow/ShadowTechnique +include/osgShadow/ShadowTexture +include/osgShadow/ShadowVolume +include/osgShadow/ShadowedScene +include/osgShadow/SoftShadowMap +include/osgShadow/StandardShadowMap +include/osgShadow/Version +include/osgShadow/ViewDependentShadowTechnique +include/osgSim/BlinkSequence +include/osgSim/ColorRange +include/osgSim/DOFTransform +include/osgSim/ElevationSlice +include/osgSim/Export +include/osgSim/GeographicLocation +include/osgSim/HeightAboveTerrain +include/osgSim/Impostor +include/osgSim/ImpostorSprite +include/osgSim/InsertImpostorsVisitor +include/osgSim/LightPoint +include/osgSim/LightPointNode +include/osgSim/LightPointSystem +include/osgSim/LineOfSight +include/osgSim/MultiSwitch +include/osgSim/ObjectRecordData +include/osgSim/OverlayNode +include/osgSim/ScalarBar +include/osgSim/ScalarsToColors +include/osgSim/Sector +include/osgSim/ShapeAttribute +include/osgSim/SphereSegment +include/osgSim/Version +include/osgSim/VisibilityGroup +include/osgTerrain/Export +include/osgTerrain/GeometryTechnique +include/osgTerrain/Layer +include/osgTerrain/Locator +include/osgTerrain/Terrain +include/osgTerrain/TerrainTechnique +include/osgTerrain/TerrainTile +include/osgTerrain/ValidDataOperator +include/osgTerrain/Version +include/osgText/Export +include/osgText/FadeText +include/osgText/Font +include/osgText/Font3D +include/osgText/KerningType +include/osgText/String +include/osgText/Text +include/osgText/Text3D +include/osgText/TextBase +include/osgText/Version +include/osgUtil/ConvertVec +include/osgUtil/CubeMapGenerator +include/osgUtil/CullVisitor +include/osgUtil/DelaunayTriangulator +include/osgUtil/DisplayRequirementsVisitor +include/osgUtil/DrawElementTypeSimplifier +include/osgUtil/EdgeCollector +include/osgUtil/Export +include/osgUtil/GLObjectsVisitor +include/osgUtil/HalfWayMapGenerator +include/osgUtil/HighlightMapGenerator +include/osgUtil/IntersectVisitor +include/osgUtil/IntersectionVisitor +include/osgUtil/LineSegmentIntersector +include/osgUtil/OperationArrayFunctor +include/osgUtil/Optimizer +include/osgUtil/PlaneIntersector +include/osgUtil/PolytopeIntersector +include/osgUtil/PositionalStateContainer +include/osgUtil/ReflectionMapGenerator +include/osgUtil/RenderBin +include/osgUtil/RenderLeaf +include/osgUtil/RenderStage +include/osgUtil/ReversePrimitiveFunctor +include/osgUtil/SceneGraphBuilder +include/osgUtil/SceneView +include/osgUtil/Simplifier +include/osgUtil/SmoothingVisitor +include/osgUtil/StateGraph +include/osgUtil/Statistics +include/osgUtil/TangentSpaceGenerator +include/osgUtil/Tessellator +include/osgUtil/TransformAttributeFunctor +include/osgUtil/TransformCallback +include/osgUtil/TriStripVisitor +include/osgUtil/UpdateVisitor +include/osgUtil/Version +include/osgViewer/CompositeViewer +include/osgViewer/Export +include/osgViewer/GraphicsWindow +include/osgViewer/GraphicsWindowX11 +include/osgViewer/PixelBufferX11 +include/osgViewer/Renderer +include/osgViewer/Scene +include/osgViewer/Version +include/osgViewer/View +include/osgViewer/Viewer +include/osgViewer/ViewerBase +include/osgViewer/ViewerEventHandlers +include/osgViewer/api/X11/GraphicsWindowX11 +include/osgViewer/api/X11/PixelBufferX11 +include/osgVolume/Export +include/osgVolume/FixedFunctionTechnique +include/osgVolume/Layer +include/osgVolume/Locator +include/osgVolume/Property +include/osgVolume/RayTracedTechnique +include/osgVolume/Version +include/osgVolume/Volume +include/osgVolume/VolumeTechnique +include/osgVolume/VolumeTile +include/osgWidget/Box +include/osgWidget/Browser +include/osgWidget/Canvas +include/osgWidget/EventInterface +include/osgWidget/Export +include/osgWidget/Frame +include/osgWidget/Input +include/osgWidget/Label +include/osgWidget/Lua +include/osgWidget/PdfReader +include/osgWidget/Python +include/osgWidget/ScriptEngine +include/osgWidget/StyleInterface +include/osgWidget/StyleManager +include/osgWidget/Table +include/osgWidget/Types +include/osgWidget/UIObjectParent +include/osgWidget/Util +include/osgWidget/Version +include/osgWidget/ViewerEventHandlers +include/osgWidget/VncClient +include/osgWidget/Widget +include/osgWidget/Window +include/osgWidget/WindowManager +lib/libOpenThreads.so +lib/libOpenThreads.so.%%OPENTHREADS_VERSION%% +lib/libOpenThreads.so.%%OPENTHREADS_SHLIBVER%% +lib/libosg.so +lib/libosg.so.%%OSG_VERSION%% +lib/libosg.so.%%OSG_SHLIBVER%% +lib/libosgAnimation.so +lib/libosgAnimation.so.%%OSG_VERSION%% +lib/libosgAnimation.so.%%OSG_SHLIBVER%% +lib/libosgDB.so +lib/libosgDB.so.%%OSG_VERSION%% +lib/libosgDB.so.%%OSG_SHLIBVER%% +lib/libosgFX.so +lib/libosgFX.so.%%OSG_VERSION%% +lib/libosgFX.so.%%OSG_SHLIBVER%% +lib/libosgGA.so +lib/libosgGA.so.%%OSG_VERSION%% +lib/libosgGA.so.%%OSG_SHLIBVER%% +lib/libosgManipulator.so +lib/libosgManipulator.so.%%OSG_VERSION%% +lib/libosgManipulator.so.%%OSG_SHLIBVER%% +lib/libosgParticle.so +lib/libosgParticle.so.%%OSG_VERSION%% +lib/libosgParticle.so.%%OSG_SHLIBVER%% +lib/libosgShadow.so +lib/libosgShadow.so.%%OSG_VERSION%% +lib/libosgShadow.so.%%OSG_SHLIBVER%% +lib/libosgSim.so +lib/libosgSim.so.%%OSG_VERSION%% +lib/libosgSim.so.%%OSG_SHLIBVER%% +lib/libosgTerrain.so +lib/libosgTerrain.so.%%OSG_VERSION%% +lib/libosgTerrain.so.%%OSG_SHLIBVER%% +lib/libosgText.so +lib/libosgText.so.%%OSG_VERSION%% +lib/libosgText.so.%%OSG_SHLIBVER%% +lib/libosgUtil.so +lib/libosgUtil.so.%%OSG_VERSION%% +lib/libosgUtil.so.%%OSG_SHLIBVER%% +lib/libosgViewer.so +lib/libosgViewer.so.%%OSG_VERSION%% +lib/libosgViewer.so.%%OSG_SHLIBVER%% +lib/libosgVolume.so +lib/libosgVolume.so.%%OSG_VERSION%% +lib/libosgVolume.so.%%OSG_SHLIBVER%% +lib/libosgWidget.so +lib/libosgWidget.so.%%OSG_VERSION%% +lib/libosgWidget.so.%%OSG_SHLIBVER%% +lib/osgPlugins-%%OSG_VERSION%%/osgdb_3dc.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_3ds.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_ac.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_bmp.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_bsp.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_bvh.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_cfg.so +%%CURL%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_curl.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_dds.so +%%ITK%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_dicom.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_dot.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_dw.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_dxf.so +%%OPENEXR%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_exr.so +%%FREETYPE%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_freetype.so +%%GDAL%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_gdal.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_geo.so +%%GIF%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_gif.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_glsl.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_gz.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_hdr.so +%%INVENTOR%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_iv.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_ive.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_jpeg.so +%%JASPER%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_jp2.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_logo.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_lwo.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_lws.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_md2.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_mdl.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_normals.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_obj.so +%%GDAL%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_ogr.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_openflight.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_osg.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_osga.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_osganimation.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgfx.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgparticle.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgshadow.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgsim.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgterrain.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgtext.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgtgz.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgviewer.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgvolume.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgwidget.so +%%PDF%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_pdf.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_pic.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_png.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_pnm.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_rgb.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_rot.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_scale.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_shp.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_stl.so +%%SVG%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_svg.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_tga.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_tgz.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_tiff.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_trans.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_txf.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_txp.so +%%VNC%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_vnc.so +%%OPENVRML%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_vrml.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_vtf.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_x.so +%%XINE%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_xine.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_zip.so +libdata/pkgconfig/openscenegraph.pc +libdata/pkgconfig/openthreads.pc +@dirrm lib/osgPlugins-%%OSG_VERSION%% +@dirrm include/osgWidget +@dirrm include/osgVolume +@dirrm include/osgViewer/api/X11 +@dirrm include/osgViewer/api +@dirrm include/osgViewer +@dirrm include/osgUtil +@dirrm include/osgText +@dirrm include/osgTerrain +@dirrm include/osgSim +@dirrm include/osgShadow +@dirrm include/osgParticle +@dirrm include/osgManipulator +@dirrm include/osgGA +@dirrm include/osgFX +@dirrm include/osgDB +@dirrm include/osgAnimation +@dirrm include/osg +@dirrm include/OpenThreads |