Upgrade to 1.1.10

PR:		ports/14294
Submitted by:	Brian Handy <handy@physics.montana.edu>
This commit is contained in:
Vanilla I. Shu 1999-10-23 07:59:42 +00:00
parent 7bc7ccdea5
commit 2923a6b6be
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=22592
60 changed files with 3438 additions and 1758 deletions

View file

@ -1,16 +1,16 @@
# New ports collection makefile for: Gimp
# Version required: 1.1.5
# Version required: 1.1.10
# Date created: Mon Nov 18 21:28:43 CST 1996
# Whom: erich@FreeBSD.org
#
# $FreeBSD$
#
DISTNAME= gimp-1.1.5
DISTNAME= gimp-1.1.10
CATEGORIES= graphics
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.5/ \
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.5/ \
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.5/
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.10/ \
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.10/ \
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.10/
MAINTAINER= erich@FreeBSD.org
@ -25,6 +25,7 @@ LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_GMAKE= yes
USE_LIBTOOL= yes

View file

@ -1 +1 @@
MD5 (gimp-1.1.5.tar.gz) = 048e20d9c639e9017292dd5b971d477b
MD5 (gimp-1.1.10.tar.bz2) = a5bf11f5bd1050d9d0ed1fc941f4302c

View file

@ -1,14 +1,15 @@
--- app/main.c.orig Mon Sep 21 17:15:18 1998
+++ app/main.c Tue Sep 29 22:24:17 1998
@@ -16,6 +16,7 @@
--- app/main.c.orig Wed Oct 6 13:55:38 1999
+++ app/main.c Tue Oct 12 13:23:44 1999
@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "config.h"
-
+#include <floatingpoint.h>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
@@ -94,6 +95,9 @@
@@ -117,6 +117,9 @@
/* Initialize variables */
prog_name = argv[0];
@ -16,5 +17,5 @@
+ /* Ignore floating point exceptions */
+ fpsetmask(0);
/* Initialize Gtk toolkit */
gtk_set_locale ();
/* Initialize i18n support */

View file

@ -1,5 +1,5 @@
--- plug-ins/url/url.c.orig Sat May 30 15:32:36 1998
+++ plug-ins/url/url.c Sun Jun 7 10:09:34 1998
--- plug-ins/common/url.c.orig Sat May 30 15:32:36 1998
+++ plug-ins/common/url.c Sun Jun 7 10:09:34 1998
@@ -146,8 +146,8 @@
}
else if (pid == 0)

View file

@ -1,242 +0,0 @@
--- plug-ins/gpc/Makefile.am.orig Wed Nov 18 06:14:51 1998
+++ plug-ins/gpc/Makefile.am Sat Feb 20 17:31:16 1999
@@ -1,11 +1,14 @@
## Process this file with automake to produce Makefile.in
pluginlibdir = $(libdir)
+gimpincludedir = $(includedir)
pluginlib_LIBRARIES = libgpc.a
libgpc_a_SOURCES = \
- gpc.c \
+ gpc.c
+
+gimpinclude_HEADERS = \
gpc.h
INCLUDES = \
--- plug-ins/gpc/Makefile.in.orig Tue Mar 9 02:58:46 1999
+++ plug-ins/gpc/Makefile.in Mon May 10 10:17:48 1999
@@ -162,10 +162,14 @@
prefix = @prefix@
pluginlibdir = $(libdir)
+gimpincludedir = $(includedir)
pluginlib_LIBRARIES = libgpc.a
-libgpc_a_SOURCES = gpc.c gpc.h
+libgpc_a_SOURCES = gpc.c
+
+
+gimpinclude_HEADERS = gpc.h
INCLUDES = -I$(top_srcdir) $(GTK_CFLAGS) -I$(includedir)
@@ -201,6 +205,8 @@
MANS = $(man_MANS)
NROFF = nroff
+HEADERS = $(gimpinclude_HEADERS)
+
DIST_COMMON = Makefile.am Makefile.in
@@ -208,6 +214,7 @@
TAR = tar
GZIP_ENV = --best
+DEP_FILES = .deps/gpc.P
SOURCES = $(libgpc_a_SOURCES)
OBJECTS = $(libgpc_a_OBJECTS)
@@ -215,9 +222,9 @@
.SUFFIXES:
.SUFFIXES: .S .c .lo .o .s
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
- cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps plug-ins/gpc/Makefile
+ cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gpc/Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
@@ -254,9 +261,6 @@
rm -f $(DESTDIR)$(pluginlibdir)/$$p; \
done
-.c.o:
- $(COMPILE) -c $<
-
.s.o:
$(COMPILE) -c $<
@@ -273,9 +277,6 @@
maintainer-clean-compile:
-.c.lo:
- $(LIBTOOL) --mode=compile $(COMPILE) -c $<
-
.s.lo:
$(LIBTOOL) --mode=compile $(COMPILE) -c $<
@@ -336,6 +337,21 @@
@$(NORMAL_UNINSTALL)
$(MAKE) $(AM_MAKEFLAGS) uninstall-man3
+install-gimpincludeHEADERS: $(gimpinclude_HEADERS)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(gimpincludedir)
+ @list='$(gimpinclude_HEADERS)'; for p in $$list; do \
+ if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
+ echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(gimpincludedir)/$$p"; \
+ $(INSTALL_DATA) $$d$$p $(DESTDIR)$(gimpincludedir)/$$p; \
+ done
+
+uninstall-gimpincludeHEADERS:
+ @$(NORMAL_UNINSTALL)
+ list='$(gimpinclude_HEADERS)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(gimpincludedir)/$$p; \
+ done
+
tags: TAGS
ID: $(HEADERS) $(SOURCES) $(LISP)
@@ -370,6 +386,11 @@
subdir = plug-ins/gpc
distdir: $(DISTFILES)
+ here=`cd $(top_builddir) && pwd`; \
+ top_distdir=`cd $(top_distdir) && pwd`; \
+ distdir=`cd $(distdir) && pwd`; \
+ cd $(top_srcdir) \
+ && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu plug-ins/gpc/Makefile
@for file in $(DISTFILES); do \
d=$(srcdir); \
if test -d $$d/$$file; then \
@@ -381,6 +402,37 @@
fi; \
done
+DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
+
+-include $(DEP_FILES)
+
+mostlyclean-depend:
+
+clean-depend:
+
+distclean-depend:
+ -rm -rf .deps
+
+maintainer-clean-depend:
+
+%.o: %.c
+ @echo '$(COMPILE) -c $<'; \
+ $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
+ @-cp .deps/$(*F).pp .deps/$(*F).P; \
+ tr ' ' '\012' < .deps/$(*F).pp \
+ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
+ >> .deps/$(*F).P; \
+ rm .deps/$(*F).pp
+
+%.lo: %.c
+ @echo '$(LTCOMPILE) -c $<'; \
+ $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
+ @-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
+ < .deps/$(*F).pp > .deps/$(*F).P; \
+ tr ' ' '\012' < .deps/$(*F).pp \
+ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
+ >> .deps/$(*F).P; \
+ rm -f .deps/$(*F).pp
info-am:
info: info-am
dvi-am:
@@ -392,20 +444,23 @@
install-exec-am:
install-exec: install-exec-am
-install-data-am: install-pluginlibLIBRARIES install-man
+install-data-am: install-pluginlibLIBRARIES install-man \
+ install-gimpincludeHEADERS
install-data: install-data-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
install: install-am
-uninstall-am: uninstall-pluginlibLIBRARIES uninstall-man
+uninstall-am: uninstall-pluginlibLIBRARIES uninstall-man \
+ uninstall-gimpincludeHEADERS
uninstall: uninstall-am
-all-am: Makefile $(LIBRARIES) $(MANS)
+all-am: Makefile $(LIBRARIES) $(MANS) $(HEADERS)
all-redirect: all-am
install-strip:
$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
installdirs:
- $(mkinstalldirs) $(DESTDIR)$(pluginlibdir) $(DESTDIR)$(mandir)/man3
+ $(mkinstalldirs) $(DESTDIR)$(pluginlibdir) $(DESTDIR)$(mandir)/man3 \
+ $(DESTDIR)$(gimpincludedir)
mostlyclean-generic:
@@ -418,27 +473,27 @@
maintainer-clean-generic:
mostlyclean-am: mostlyclean-pluginlibLIBRARIES mostlyclean-compile \
- mostlyclean-libtool mostlyclean-tags \
+ mostlyclean-libtool mostlyclean-tags mostlyclean-depend \
mostlyclean-generic
mostlyclean: mostlyclean-am
clean-am: clean-pluginlibLIBRARIES clean-compile clean-libtool \
- clean-tags clean-generic mostlyclean-am
+ clean-tags clean-depend clean-generic mostlyclean-am
clean: clean-am
distclean-am: distclean-pluginlibLIBRARIES distclean-compile \
- distclean-libtool distclean-tags distclean-generic \
- clean-am
+ distclean-libtool distclean-tags distclean-depend \
+ distclean-generic clean-am
-rm -f libtool
distclean: distclean-am
maintainer-clean-am: maintainer-clean-pluginlibLIBRARIES \
maintainer-clean-compile maintainer-clean-libtool \
- maintainer-clean-tags maintainer-clean-generic \
- distclean-am
+ maintainer-clean-tags maintainer-clean-depend \
+ maintainer-clean-generic distclean-am
@echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild."
@@ -450,13 +505,15 @@
mostlyclean-compile distclean-compile clean-compile \
maintainer-clean-compile mostlyclean-libtool distclean-libtool \
clean-libtool maintainer-clean-libtool install-man3 uninstall-man3 \
-install-man uninstall-man tags mostlyclean-tags distclean-tags \
-clean-tags maintainer-clean-tags distdir info-am info dvi-am dvi check \
-check-am installcheck-am installcheck install-exec-am install-exec \
-install-data-am install-data install-am install uninstall-am uninstall \
-all-redirect all-am all installdirs mostlyclean-generic \
-distclean-generic clean-generic maintainer-clean-generic clean \
-mostlyclean distclean maintainer-clean
+install-man uninstall-man uninstall-gimpincludeHEADERS \
+install-gimpincludeHEADERS tags mostlyclean-tags distclean-tags \
+clean-tags maintainer-clean-tags distdir mostlyclean-depend \
+distclean-depend clean-depend maintainer-clean-depend info-am info \
+dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
+install-exec install-data-am install-data install-am install \
+uninstall-am uninstall all-redirect all-am all installdirs \
+mostlyclean-generic distclean-generic clean-generic \
+maintainer-clean-generic clean mostlyclean distclean maintainer-clean
.PHONY: files

View file

@ -1,5 +1,5 @@
--- plug-ins/plugindetails/plugindetails.c.orig Sat Mar 27 07:53:38 1999
+++ plug-ins/plugindetails/plugindetails.c Sat May 22 21:24:31 1999
--- plug-ins/common/plugindetails.c.orig Sat Mar 27 07:53:38 1999
+++ plug-ins/common/plugindetails.c Sat May 22 21:24:31 1999
@@ -25,6 +25,7 @@
#include <stdio.h>
#include <string.h>

View file

@ -1,20 +1,16 @@
--- gimptool.in.orig Sat Feb 20 19:48:58 1999
+++ gimptool.in Sat Feb 20 19:49:37 1999
@@ -198,7 +198,7 @@
| --install-script | --install-admin-script)
--- gimptool.in.orig Wed Aug 25 18:49:22 1999
+++ gimptool.in Tue Oct 12 13:31:37 1999
@@ -209,11 +209,11 @@
| --uninstall-script | --uninstall-admin-script )
case $1 in
--install-bin)
--*install-bin)
- install_cmd="@INSTALL_PROGRAM@"
+ install_cmd="@INSTALL_SCRIPT@"
install_dir="$HOME/@gimpdir@/plug-ins"
;;
--install-bin-strip)
@@ -206,7 +206,7 @@
- install_cmd="@INSTALL_PROGRAM@ -s"
+ install_cmd="@INSTALL_SCRIPT@ -s"
install_dir="$HOME/@gimpdir@/plug-ins"
;;
--install-admin-bin)
- install_cmd="@INSTALL_PROGRAM@"
+ install_cmd="@INSTALL_SCRIPT@"
install_dir="$plug_in_dir/plug-ins"
;;
--install-admin-bin-strip)
--*install-admin-bin)

View file

@ -1,6 +1,6 @@
--- configure.orig Tue May 4 06:06:39 1999
+++ configure Sat May 22 21:39:37 1999
@@ -3538,7 +3538,10 @@
--- configure.orig Wed Oct 6 14:00:22 1999
+++ configure Tue Oct 12 13:37:31 1999
@@ -3471,7 +3471,11 @@
cat conftest.$ac_ext >&5
rm -rf conftest*
CATOBJEXT=.mo
@ -9,10 +9,11 @@
+ INTLDEPS='-lintl'
+ INTLLIBS=$INTLDEPS
+ LIBS=`echo $LIBS | sed -e 's/-lintl//'`
+
fi
rm -f conftest*
INSTOBJEXT=.mo
@@ -7165,7 +7168,7 @@
@@ -7108,7 +7112,7 @@
fi
gimpdatadir=$datadir/gimp
@ -21,14 +22,14 @@
localedir='${prefix}/${DATADIRNAME}/locale'
brushdata=`ls -1 $srcdir/data/brushes | grep -v Makefile`
@@ -8746,10 +8749,6 @@
*) # Relative path.
ac_sub_cache_file="$ac_dots$cache_file" ;;
esac
- case "$ac_given_INSTALL" in
- [/$]*) INSTALL="$ac_given_INSTALL" ;;
- *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
- esac
@@ -8513,10 +8517,6 @@
top_srcdir="$ac_dots$ac_given_srcdir" ;;
esac
echo "running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir"
# The eval makes quoting arguments work.
- case "$ac_given_INSTALL" in
- [/$]*) INSTALL="$ac_given_INSTALL" ;;
- *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
- esac
echo creating "$ac_file"
rm -f "$ac_file"

View file

@ -9,16 +9,19 @@ include/gck/gckmath.h
include/gck/gcktypes.h
include/gck/gckui.h
include/gck/gckvector.h
include/gpc.h
include/libgimp/color_display.h
include/libgimp/color_selector.h
include/libgimp/gimp.h
include/libgimp/gimpchainbutton.h
include/libgimp/gimpenums.h
include/libgimp/gimpenv.h
include/libgimp/gimpexport.h
include/libgimp/gimpfeatures.h
include/libgimp/gimpfileselection.h
include/libgimp/gimpintl.h
include/libgimp/gimplimits.h
include/libgimp/gimpmatrix.h
include/libgimp/gimpmath.h
include/libgimp/gimpmenu.h
include/libgimp/gimpmodule.h
include/libgimp/gimppatheditor.h
@ -30,23 +33,26 @@ include/libgimp/gserialize.h
include/libgimp/parasite.h
include/libgimp/parasiteF.h
include/libgimp/parasiteP.h
include/megawidget.h
include/libgimp/parasiteio.h
lib/libgck.a
lib/libgck.so
lib/libgck.so.5
lib/libgck.so.10
lib/libgimp.a
lib/libgimp.so
lib/libgimp.so.5
lib/libgimp.so.10
lib/libgimpui.a
lib/libgimpui.so
lib/libgimpui.so.5
lib/libgimpui.so.10
lib/libgpc.a
lib/libmegawidget.a
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
libexec/gimp/1.1/modules/libcdisplay_gamma.so
libexec/gimp/1.1/modules/libcolorsel_gtk.so
libexec/gimp/1.1/modules/libcolorsel_triangle.so
libexec/gimp/1.1/modules/libcolorsel_water.so
libexec/gimp/1.1/plug-ins/AlienMap
libexec/gimp/1.1/plug-ins/AlienMap2
libexec/gimp/1.1/plug-ins/CEL
libexec/gimp/1.1/plug-ins/CML_explorer
libexec/gimp/1.1/plug-ins/FractalExplorer
@ -68,9 +74,12 @@ libexec/gimp/1.1/plug-ins/bz2
libexec/gimp/1.1/plug-ins/c_astretch
libexec/gimp/1.1/plug-ins/checkerboard
libexec/gimp/1.1/plug-ins/colorify
libexec/gimp/1.1/plug-ins/color_enhance
libexec/gimp/1.1/plug-ins/compose
libexec/gimp/1.1/plug-ins/convmatrix
libexec/gimp/1.1/plug-ins/csource
libexec/gimp/1.1/plug-ins/cubism
libexec/gimp/1.1/plug-ins/curve_bend
libexec/gimp/1.1/plug-ins/dbbrowser
libexec/gimp/1.1/plug-ins/decompose
libexec/gimp/1.1/plug-ins/deinterlace
@ -98,11 +107,14 @@ libexec/gimp/1.1/plug-ins/gbr
libexec/gimp/1.1/plug-ins/gdyntext
libexec/gimp/1.1/plug-ins/gee
libexec/gimp/1.1/plug-ins/gfig
libexec/gimp/1.1/plug-ins/gflare
libexec/gimp/1.1/plug-ins/gfli
libexec/gimp/1.1/plug-ins/gicon
libexec/gimp/1.1/plug-ins/gif
libexec/gimp/1.1/plug-ins/gifload
libexec/gimp/1.1/plug-ins/gimpressionist
libexec/gimp/1.1/plug-ins/glasstile
libexec/gimp/1.1/plug-ins/gpb
libexec/gimp/1.1/plug-ins/gqbist
libexec/gimp/1.1/plug-ins/gradmap
libexec/gimp/1.1/plug-ins/grid
@ -114,6 +126,7 @@ libexec/gimp/1.1/plug-ins/hot
libexec/gimp/1.1/plug-ins/hrz
libexec/gimp/1.1/plug-ins/ifscompose
libexec/gimp/1.1/plug-ins/illusion
libexec/gimp/1.1/plug-ins/imagemap
libexec/gimp/1.1/plug-ins/iwarp
libexec/gimp/1.1/plug-ins/jigsaw
libexec/gimp/1.1/plug-ins/jpeg
@ -133,7 +146,6 @@ libexec/gimp/1.1/plug-ins/normalize
libexec/gimp/1.1/plug-ins/nova
libexec/gimp/1.1/plug-ins/oilify
libexec/gimp/1.1/plug-ins/pagecurl
libexec/gimp/1.1/plug-ins/palette
libexec/gimp/1.1/plug-ins/papertile
libexec/gimp/1.1/plug-ins/pat
libexec/gimp/1.1/plug-ins/pcx
@ -147,14 +159,18 @@ libexec/gimp/1.1/plug-ins/polar
libexec/gimp/1.1/plug-ins/print
libexec/gimp/1.1/plug-ins/ps
libexec/gimp/1.1/plug-ins/psd
libexec/gimp/1.1/plug-ins/psp
libexec/gimp/1.1/plug-ins/randomize
libexec/gimp/1.1/plug-ins/rcm
libexec/gimp/1.1/plug-ins/ripple
libexec/gimp/1.1/plug-ins/rotate
libexec/gimp/1.1/plug-ins/rotators
libexec/gimp/1.1/plug-ins/sample_colorize
libexec/gimp/1.1/plug-ins/scatter_hsv
libexec/gimp/1.1/plug-ins/screenshot
libexec/gimp/1.1/plug-ins/script-fu
libexec/gimp/1.1/plug-ins/sel2path
libexec/gimp/1.1/plug-ins/sel_gauss
libexec/gimp/1.1/plug-ins/semiflatten
libexec/gimp/1.1/plug-ins/sgi
libexec/gimp/1.1/plug-ins/sharpen
@ -164,6 +180,7 @@ libexec/gimp/1.1/plug-ins/smooth_palette
libexec/gimp/1.1/plug-ins/snoise
libexec/gimp/1.1/plug-ins/sobel
libexec/gimp/1.1/plug-ins/sparkle
libexec/gimp/1.1/plug-ins/spheredesigner
libexec/gimp/1.1/plug-ins/spread
libexec/gimp/1.1/plug-ins/struc
libexec/gimp/1.1/plug-ins/sunras
@ -173,11 +190,12 @@ libexec/gimp/1.1/plug-ins/tiff
libexec/gimp/1.1/plug-ins/tile
libexec/gimp/1.1/plug-ins/tileit
libexec/gimp/1.1/plug-ins/tiler
libexec/gimp/1.1/plug-ins/unsharp
libexec/gimp/1.1/plug-ins/url
libexec/gimp/1.1/plug-ins/video
libexec/gimp/1.1/plug-ins/vinvert
libexec/gimp/1.1/plug-ins/vpropagate
libexec/gimp/1.1/plug-ins/waterselect
libexec/gimp/1.1/plug-ins/warp
libexec/gimp/1.1/plug-ins/waves
libexec/gimp/1.1/plug-ins/webbrowser
libexec/gimp/1.1/plug-ins/whirlpinch
@ -226,9 +244,10 @@ share/gimp/brushes/dunes.gbr
share/gimp/brushes/galaxy.gbr
share/gimp/brushes/galaxy_big.gbr
share/gimp/brushes/galaxy_small.gbr
share/gimp/brushes/pepper.gpb
share/gimp/brushes/pixel.gbr
share/gimp/brushes/round1.vbr
share/gimp/brushes/thegimp.gbr
share/gimp/brushes/vine.gih
share/gimp/brushes/xcf.gbr
share/gimp/fractalexplorer/Asteroid_Field
share/gimp/fractalexplorer/Bar_Code_Label
@ -273,10 +292,107 @@ 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/Distant_Sun
share/gimp/gflare/Default
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/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/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/gimp1_1_splash.ppm
share/gimp/gimp_logo.ppm
share/gimp/gimp_splash.ppm
share/gimp/gimp_tips.txt
share/gimp/gimprc
share/gimp/gimprc_user
share/gimp/gradients/Abstract_1
@ -357,6 +473,370 @@ share/gimp/gradients/Wood_1
share/gimp/gradients/Wood_2
share/gimp/gradients/Yellow_Contrast
share/gimp/gradients/Yellow_Orange
share/gimp/help/C/dialogs/layers/add_mask.html
share/gimp/help/C/dialogs/layers/apply_mask.html
share/gimp/help/C/dialogs/layers/edit_layer_attributes.html
share/gimp/help/C/dialogs/layers/index.html
share/gimp/help/C/dialogs/layers/layers.html
share/gimp/help/C/dialogs/layers/merge_visible_layers.html
share/gimp/help/C/dialogs/layers/new_layer.html
share/gimp/help/C/dialogs/layers/resize_layer.html
share/gimp/help/C/dialogs/layers/scale_layer.html
share/gimp/help/C/dialogs/channels/channels.html
share/gimp/help/C/dialogs/channels/edit_channel_attributes.html
share/gimp/help/C/dialogs/channels/index.html
share/gimp/help/C/dialogs/channels/new_channel.html
share/gimp/help/C/dialogs/paths/export_path.html
share/gimp/help/C/dialogs/paths/import_path.html
share/gimp/help/C/dialogs/paths/index.html
share/gimp/help/C/dialogs/paths/paths.html
share/gimp/help/C/dialogs/paths/rename_path.html
share/gimp/help/C/dialogs/palette_editor/import_palette.html
share/gimp/help/C/dialogs/palette_editor/index.html
share/gimp/help/C/dialogs/palette_editor/merge_palette.html
share/gimp/help/C/dialogs/palette_editor/new_palette.html
share/gimp/help/C/dialogs/palette_editor/palette_editor.html
share/gimp/help/C/dialogs/gradient_editor/copy_gradient.html
share/gimp/help/C/dialogs/gradient_editor/delete_gradient.html
share/gimp/help/C/dialogs/gradient_editor/gradient_editor.html
share/gimp/help/C/dialogs/gradient_editor/index.html
share/gimp/help/C/dialogs/gradient_editor/new_gradient.html
share/gimp/help/C/dialogs/gradient_editor/rename_gradient.html
share/gimp/help/C/dialogs/gradient_editor/replicate_segment.html
share/gimp/help/C/dialogs/gradient_editor/save_as_pov_ray.html
share/gimp/help/C/dialogs/gradient_editor/split_segments_uniformly.html
share/gimp/help/C/dialogs/display_filters/display_filters.html
share/gimp/help/C/dialogs/display_filters/gamma.html
share/gimp/help/C/dialogs/display_filters/index.html
share/gimp/help/C/dialogs/color_selectors/built_in.html
share/gimp/help/C/dialogs/color_selectors/gtk.html
share/gimp/help/C/dialogs/color_selectors/index.html
share/gimp/help/C/dialogs/color_selectors/triangle.html
share/gimp/help/C/dialogs/color_selectors/watercolor.html
share/gimp/help/C/dialogs/preferences/directories.html
share/gimp/help/C/dialogs/preferences/display.html
share/gimp/help/C/dialogs/preferences/environment.html
share/gimp/help/C/dialogs/preferences/index.html
share/gimp/help/C/dialogs/preferences/interface.html
share/gimp/help/C/dialogs/preferences/monitor.html
share/gimp/help/C/dialogs/preferences/new_file.html
share/gimp/help/C/dialogs/preferences/preferences.html
share/gimp/help/C/dialogs/preferences/session.html
share/gimp/help/C/dialogs/about.html
share/gimp/help/C/dialogs/border_selection.html
share/gimp/help/C/dialogs/brush_editor.html
share/gimp/help/C/dialogs/brush_selection.html
share/gimp/help/C/dialogs/convert_to_indexed.html
share/gimp/help/C/dialogs/copy_named.html
share/gimp/help/C/dialogs/cut_named.html
share/gimp/help/C/dialogs/device_status.html
share/gimp/help/C/dialogs/document_index.html
share/gimp/help/C/dialogs/edit_qmask_attributes.html
share/gimp/help/C/dialogs/error_console.html
share/gimp/help/C/dialogs/feather_selection.html
share/gimp/help/C/dialogs/file_new.html
share/gimp/help/C/dialogs/file_open.html
share/gimp/help/C/dialogs/file_save.html
share/gimp/help/C/dialogs/gradient_selection.html
share/gimp/help/C/dialogs/grow_selection.html
share/gimp/help/C/dialogs/help.html
share/gimp/help/C/dialogs/index.html
share/gimp/help/C/dialogs/indexed_palette.html
share/gimp/help/C/dialogs/info_window.html
share/gimp/help/C/dialogs/input_devices.html
share/gimp/help/C/dialogs/layers_and_channels.html
share/gimp/help/C/dialogs/module_browser.html
share/gimp/help/C/dialogs/navigation_window.html
share/gimp/help/C/dialogs/offset.html
share/gimp/help/C/dialogs/palette_selection.html
share/gimp/help/C/dialogs/paste_named.html
share/gimp/help/C/dialogs/pattern_selection.html
share/gimp/help/C/dialogs/really_close.html
share/gimp/help/C/dialogs/really_quit.html
share/gimp/help/C/dialogs/resize_image.html
share/gimp/help/C/dialogs/scale_image.html
share/gimp/help/C/dialogs/shrink_selection.html
share/gimp/help/C/dialogs/tip_of_the_day.html
share/gimp/help/C/dialogs/tool_options.html
share/gimp/help/C/dialogs/undo_history.html
share/gimp/help/C/tools/airbrush.html
share/gimp/help/C/tools/bezier_select.html
share/gimp/help/C/tools/blend.html
share/gimp/help/C/tools/brightness_contrast.html
share/gimp/help/C/tools/bucket_fill.html
share/gimp/help/C/tools/by_color_select.html
share/gimp/help/C/tools/clone.html
share/gimp/help/C/tools/color_balance.html
share/gimp/help/C/tools/color_picker.html
share/gimp/help/C/tools/convolve.html
share/gimp/help/C/tools/crop.html
share/gimp/help/C/tools/curves.html
share/gimp/help/C/tools/dodgeburn.html
share/gimp/help/C/tools/ellipse_select.html
share/gimp/help/C/tools/eraser.html
share/gimp/help/C/tools/flip.html
share/gimp/help/C/tools/free_select.html
share/gimp/help/C/tools/fuzzy_select.html
share/gimp/help/C/tools/histogram.html
share/gimp/help/C/tools/hue_saturation.html
share/gimp/help/C/tools/index.html
share/gimp/help/C/tools/ink.html
share/gimp/help/C/tools/intelligent_scissors.html
share/gimp/help/C/tools/levels.html
share/gimp/help/C/tools/magnify.html
share/gimp/help/C/tools/measure.html
share/gimp/help/C/tools/move.html
share/gimp/help/C/tools/paintbrush.html
share/gimp/help/C/tools/path.html
share/gimp/help/C/tools/pencil.html
share/gimp/help/C/tools/posterize.html
share/gimp/help/C/tools/rect_select.html
share/gimp/help/C/tools/smudge.html
share/gimp/help/C/tools/text.html
share/gimp/help/C/tools/threshold.html
share/gimp/help/C/tools/transform.html
share/gimp/help/C/tools/transform_perspective.html
share/gimp/help/C/tools/transform_rotate.html
share/gimp/help/C/tools/transform_scale.html
share/gimp/help/C/tools/transform_shear.html
share/gimp/help/C/tools/xinput_airbrush.html
share/gimp/help/C/layers/stack/index.html
share/gimp/help/C/layers/stack/stack.html
share/gimp/help/C/layers/add_alpha_channel.html
share/gimp/help/C/layers/alpha_to_selection.html
share/gimp/help/C/layers/anchor_layer.html
share/gimp/help/C/layers/delete_layer.html
share/gimp/help/C/layers/duplicate_layer.html
share/gimp/help/C/layers/flatten_image.html
share/gimp/help/C/layers/index.html
share/gimp/help/C/layers/mask_to_selection.html
share/gimp/help/C/layers/merge_down.html
share/gimp/help/C/channels/channel_to_selection.html
share/gimp/help/C/channels/channels.html
share/gimp/help/C/channels/delete_channel.html
share/gimp/help/C/channels/duplicate_channel.html
share/gimp/help/C/channels/index.html
share/gimp/help/C/channels/lower_channel.html
share/gimp/help/C/channels/raise_channel.html
share/gimp/help/C/paths/copy_path.html
share/gimp/help/C/paths/delete_path.html
share/gimp/help/C/paths/duplicate_path.html
share/gimp/help/C/paths/index.html
share/gimp/help/C/paths/new_path.html
share/gimp/help/C/paths/paste_path.html
share/gimp/help/C/paths/path_to_selection.html
share/gimp/help/C/paths/stroke_path.html
share/gimp/help/C/toolbox/index.html
share/gimp/help/C/toolbox/toolbox.html
share/gimp/help/C/image/edit/clear.html
share/gimp/help/C/image/edit/copy.html
share/gimp/help/C/image/edit/cut.html
share/gimp/help/C/image/edit/fill.html
share/gimp/help/C/image/edit/index.html
share/gimp/help/C/image/edit/paste.html
share/gimp/help/C/image/edit/paste_as_new.html
share/gimp/help/C/image/edit/paste_into.html
share/gimp/help/C/image/edit/redo.html
share/gimp/help/C/image/edit/stroke.html
share/gimp/help/C/image/edit/undo.html
share/gimp/help/C/image/select/all.html
share/gimp/help/C/image/select/float.html
share/gimp/help/C/image/select/index.html
share/gimp/help/C/image/select/invert.html
share/gimp/help/C/image/select/none.html
share/gimp/help/C/image/select/save_to_channel.html
share/gimp/help/C/image/select/sharpen.html
share/gimp/help/C/image/view/dot_for_dot.html
share/gimp/help/C/image/view/index.html
share/gimp/help/C/image/view/new_view.html
share/gimp/help/C/image/view/shrink_wrap.html
share/gimp/help/C/image/view/snap_to_guides.html
share/gimp/help/C/image/view/toggle_guides.html
share/gimp/help/C/image/view/toggle_rulers.html
share/gimp/help/C/image/view/toggle_selection.html
share/gimp/help/C/image/view/toggle_statusbar.html
share/gimp/help/C/image/view/zoom.html
share/gimp/help/C/image/image/transforms/index.html
share/gimp/help/C/image/image/colors/desaturate.html
share/gimp/help/C/image/image/colors/equalize.html
share/gimp/help/C/image/image/colors/index.html
share/gimp/help/C/image/image/colors/invert.html
share/gimp/help/C/image/image/convert_to_grayscale.html
share/gimp/help/C/image/image/convert_to_rgb.html
share/gimp/help/C/image/image/duplicate.html
share/gimp/help/C/image/image/index.html
share/gimp/help/C/image/image_window.html
share/gimp/help/C/image/index.html
share/gimp/help/C/open/index.html
share/gimp/help/C/open/open_by_extension.html
share/gimp/help/C/save/index.html
share/gimp/help/C/save/save_by_extension.html
share/gimp/help/C/filters/alienmap.html
share/gimp/help/C/filters/alienmap2.html
share/gimp/help/C/filters/align_layers.html
share/gimp/help/C/filters/animationplay.html
share/gimp/help/C/filters/animoptimize.html
share/gimp/help/C/filters/apply_lens.html
share/gimp/help/C/filters/autocrop.html
share/gimp/help/C/filters/autostretch_hsv.html
share/gimp/help/C/filters/blinds.html
share/gimp/help/C/filters/blur.html
share/gimp/help/C/filters/bmp.html
share/gimp/help/C/filters/borderaverage.html
share/gimp/help/C/filters/bumpmap.html
share/gimp/help/C/filters/bz2.html
share/gimp/help/C/filters/c_astretch.html
share/gimp/help/C/filters/cel.html
share/gimp/help/C/filters/checkerboard.html
share/gimp/help/C/filters/cml_explorer.html
share/gimp/help/C/filters/color_enhance.html
share/gimp/help/C/filters/fp.html
share/gimp/help/C/filters/colorify.html
share/gimp/help/C/filters/compose.html
share/gimp/help/C/filters/convmatrix.html
share/gimp/help/C/filters/csource.html
share/gimp/help/C/filters/cubism.html
share/gimp/help/C/filters/curve_bend.html
share/gimp/help/C/filters/dbbrowser.html
share/gimp/help/C/filters/decompose.html
share/gimp/help/C/filters/deinterlace.html
share/gimp/help/C/filters/depthmerge.html
share/gimp/help/C/filters/despeckle.html
share/gimp/help/C/filters/destripe.html
share/gimp/help/C/filters/diffraction.html
share/gimp/help/C/filters/displace.html
share/gimp/help/C/filters/edge.html
share/gimp/help/C/filters/emboss.html
share/gimp/help/C/filters/engrave.html
share/gimp/help/C/filters/exchange.html
share/gimp/help/C/filters/faxg3.html
share/gimp/help/C/filters/film.html
share/gimp/help/C/filters/fits.html
share/gimp/help/C/filters/flame.html
share/gimp/help/C/filters/flarefx.html
share/gimp/help/C/filters/fractalexplorer.html
share/gimp/help/C/filters/fractaltrace.html
share/gimp/help/C/filters/gap_filter.html
share/gimp/help/C/filters/gap_plugins.html
share/gimp/help/C/filters/gauss_iir.html
share/gimp/help/C/filters/gauss_rle.html
share/gimp/help/C/filters/gbr.html
share/gimp/help/C/filters/gdyntext.html
share/gimp/help/C/filters/gee.html
share/gimp/help/C/filters/gfig.html
share/gimp/help/C/filters/gflare.html
share/gimp/help/C/filters/gfli.html
share/gimp/help/C/filters/gicon.html
share/gimp/help/C/filters/gif.html
share/gimp/help/C/filters/gifload.html
share/gimp/help/C/filters/gimpressionist.html
share/gimp/help/C/filters/glasstile.html
share/gimp/help/C/filters/gpb.html
share/gimp/help/C/filters/gqbist.html
share/gimp/help/C/filters/gradmap.html
share/gimp/help/C/filters/grid.html
share/gimp/help/C/filters/gtm.html
share/gimp/help/C/filters/guillotine.html
share/gimp/help/C/filters/gz.html
share/gimp/help/C/filters/header.html
share/gimp/help/C/filters/hot.html
share/gimp/help/C/filters/hrz.html
share/gimp/help/C/filters/ifscompose.html
share/gimp/help/C/filters/illusion.html
share/gimp/help/C/filters/imagemap.html
share/gimp/help/C/filters/index.html
share/gimp/help/C/filters/iwarp.html
share/gimp/help/C/filters/jigsaw.html
share/gimp/help/C/filters/jpeg.html
share/gimp/help/C/filters/laplace.html
share/gimp/help/C/filters/lic.html
share/gimp/help/C/filters/lighting.html
share/gimp/help/C/filters/mail.html
share/gimp/help/C/filters/mapcolor.html
share/gimp/help/C/filters/mapobject.html
share/gimp/help/C/filters/max_rgb.html
share/gimp/help/C/filters/maze.html
share/gimp/help/C/filters/mblur.html
share/gimp/help/C/filters/mosaic.html
share/gimp/help/C/filters/nlfilt.html
share/gimp/help/C/filters/newsprint.html
share/gimp/help/C/filters/noisify.html
share/gimp/help/C/filters/normalize.html
share/gimp/help/C/filters/nova.html
share/gimp/help/C/filters/oilify.html
share/gimp/help/C/filters/pagecurl.html
share/gimp/help/C/filters/papertile.html
share/gimp/help/C/filters/pat.html
share/gimp/help/C/filters/pcx.html
share/gimp/help/C/filters/pix.html
share/gimp/help/C/filters/pixelize.html
share/gimp/help/C/filters/plasma.html
share/gimp/help/C/filters/plugindetails.html
share/gimp/help/C/filters/png.html
share/gimp/help/C/filters/pnm.html
share/gimp/help/C/filters/polar.html
share/gimp/help/C/filters/print.html
share/gimp/help/C/filters/ps.html
share/gimp/help/C/filters/psd.html
share/gimp/help/C/filters/psp.html
share/gimp/help/C/filters/randomize.html
share/gimp/help/C/filters/rcm.html
share/gimp/help/C/filters/repeat_last.html
share/gimp/help/C/filters/reshow_last.html
share/gimp/help/C/filters/ripple.html
share/gimp/help/C/filters/rotate.html
share/gimp/help/C/filters/rotators.html
share/gimp/help/C/filters/sample_colorize.html
share/gimp/help/C/filters/scatter_hsv.html
share/gimp/help/C/filters/screenshot.html
share/gimp/help/C/filters/script-fu.html
share/gimp/help/C/filters/sel2path.html
share/gimp/help/C/filters/sel_gauss.html
share/gimp/help/C/filters/semiflatten.html
share/gimp/help/C/filters/sgi.html
share/gimp/help/C/filters/sharpen.html
share/gimp/help/C/filters/shift.html
share/gimp/help/C/filters/sinus.html
share/gimp/help/C/filters/smooth_palette.html
share/gimp/help/C/filters/snoise.html
share/gimp/help/C/filters/sobel.html
share/gimp/help/C/filters/sparkle.html
share/gimp/help/C/filters/spheredesigner.html
share/gimp/help/C/filters/spread.html
share/gimp/help/C/filters/struc.html
share/gimp/help/C/filters/sunras.html
share/gimp/help/C/filters/tga.html
share/gimp/help/C/filters/threshold_alpha.html
share/gimp/help/C/filters/tiff.html
share/gimp/help/C/filters/tile.html
share/gimp/help/C/filters/tileit.html
share/gimp/help/C/filters/tiler.html
share/gimp/help/C/filters/unsharp.html
share/gimp/help/C/filters/url.html
share/gimp/help/C/filters/video.html
share/gimp/help/C/filters/vinvert.html
share/gimp/help/C/filters/vpropagate.html
share/gimp/help/C/filters/warp.html
share/gimp/help/C/filters/waves.html
share/gimp/help/C/filters/webbrowser.html
share/gimp/help/C/filters/whirlpinch.html
share/gimp/help/C/filters/wind.html
share/gimp/help/C/filters/wmf.html
share/gimp/help/C/filters/xbm.html
share/gimp/help/C/filters/xjt.html
share/gimp/help/C/filters/xpm.html
share/gimp/help/C/filters/xwd.html
share/gimp/help/C/filters/zealouscrop.html
share/gimp/help/C/file/close.html
share/gimp/help/C/file/index.html
share/gimp/help/C/file/last_opened.html
share/gimp/help/C/file/quit.html
share/gimp/help/C/file/revert.html
share/gimp/help/C/contents.html
share/gimp/help/C/index.html
share/gimp/help/C/welcome.html
share/gimp/help/images/eek.png
share/gimp/help/images/wilber.png
share/gimp/gtkrc
share/gimp/gtkrc.forest2
share/gimp/palettes/Bears
@ -393,6 +873,8 @@ share/gimp/palettes/Reds
share/gimp/palettes/Reds_And_Purples
share/gimp/palettes/Royal
share/gimp/palettes/Topographic
share/gimp/palettes/Visibone
share/gimp/palettes/Visibone2
share/gimp/palettes/Volcano
share/gimp/palettes/Warm_Colors
share/gimp/palettes/Web
@ -551,6 +1033,12 @@ 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/tips/gimp_tips.txt
share/gimp/tips/gimp_tips.de.txt
share/gimp/tips/gimp_tips.ja.txt
share/gimp/tips/gimp_tips.it.txt
share/gimp/tips/gimp_conseils.fr.txt
share/gimp/tips/gimp_tips.ru.txt
share/gimp/unitrc
share/gimp/user_install
share/locale/de/LC_MESSAGES/gimp.mo
@ -564,6 +1052,41 @@ share/locale/nl/LC_MESSAGES/gimp.mo
share/locale/pl/LC_MESSAGES/gimp.mo
share/locale/ru/LC_MESSAGES/gimp.mo
share/locale/sv/LC_MESSAGES/gimp.mo
@dirrm share/gimp/gflare
@dirrm share/gimp/gimpressionist/Brushes
@dirrm share/gimp/gimpressionist/Paper
@dirrm share/gimp/gimpressionist/Presets
@dirrm share/gimp/gimpressionist
@dirrm share/gimp/tips
@dirrm share/gimp/help/C/dialogs/layers
@dirrm share/gimp/help/C/dialogs/channels
@dirrm share/gimp/help/C/dialogs/paths
@dirrm share/gimp/help/C/dialogs/palette_editor
@dirrm share/gimp/help/C/dialogs/gradient_editor
@dirrm share/gimp/help/C/dialogs/display_filters
@dirrm share/gimp/help/C/dialogs/color_selectors
@dirrm share/gimp/help/C/dialogs/preferences
@dirrm share/gimp/help/C/dialogs
@dirrm share/gimp/help/C/tools
@dirrm share/gimp/help/C/layers/stack
@dirrm share/gimp/help/C/layers
@dirrm share/gimp/help/C/channels
@dirrm share/gimp/help/C/paths
@dirrm share/gimp/help/C/toolbox
@dirrm share/gimp/help/C/image/edit
@dirrm share/gimp/help/C/image/select
@dirrm share/gimp/help/C/image/view
@dirrm share/gimp/help/C/image/image/transforms
@dirrm share/gimp/help/C/image/image/colors
@dirrm share/gimp/help/C/image/image
@dirrm share/gimp/help/C/image
@dirrm share/gimp/help/C/open
@dirrm share/gimp/help/C/save
@dirrm share/gimp/help/C/filters
@dirrm share/gimp/help/C/file
@dirrm share/gimp/help/images
@dirrm share/gimp/help/C
@dirrm share/gimp/help
@dirrm share/gimp/scripts
@dirrm share/gimp/patterns
@dirrm share/gimp/palettes

View file

@ -1,16 +1,16 @@
# New ports collection makefile for: Gimp
# Version required: 1.1.5
# Version required: 1.1.10
# Date created: Mon Nov 18 21:28:43 CST 1996
# Whom: erich@FreeBSD.org
#
# $FreeBSD$
#
DISTNAME= gimp-1.1.5
DISTNAME= gimp-1.1.10
CATEGORIES= graphics
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.5/ \
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.5/ \
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.5/
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.10/ \
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.10/ \
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.10/
MAINTAINER= erich@FreeBSD.org
@ -25,6 +25,7 @@ LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_GMAKE= yes
USE_LIBTOOL= yes

View file

@ -1 +1 @@
MD5 (gimp-1.1.5.tar.gz) = 048e20d9c639e9017292dd5b971d477b
MD5 (gimp-1.1.10.tar.bz2) = a5bf11f5bd1050d9d0ed1fc941f4302c

View file

@ -1,14 +1,15 @@
--- app/main.c.orig Mon Sep 21 17:15:18 1998
+++ app/main.c Tue Sep 29 22:24:17 1998
@@ -16,6 +16,7 @@
--- app/main.c.orig Wed Oct 6 13:55:38 1999
+++ app/main.c Tue Oct 12 13:23:44 1999
@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "config.h"
-
+#include <floatingpoint.h>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
@@ -94,6 +95,9 @@
@@ -117,6 +117,9 @@
/* Initialize variables */
prog_name = argv[0];
@ -16,5 +17,5 @@
+ /* Ignore floating point exceptions */
+ fpsetmask(0);
/* Initialize Gtk toolkit */
gtk_set_locale ();
/* Initialize i18n support */

View file

@ -1,5 +1,5 @@
--- plug-ins/url/url.c.orig Sat May 30 15:32:36 1998
+++ plug-ins/url/url.c Sun Jun 7 10:09:34 1998
--- plug-ins/common/url.c.orig Sat May 30 15:32:36 1998
+++ plug-ins/common/url.c Sun Jun 7 10:09:34 1998
@@ -146,8 +146,8 @@
}
else if (pid == 0)

View file

@ -1,242 +0,0 @@
--- plug-ins/gpc/Makefile.am.orig Wed Nov 18 06:14:51 1998
+++ plug-ins/gpc/Makefile.am Sat Feb 20 17:31:16 1999
@@ -1,11 +1,14 @@
## Process this file with automake to produce Makefile.in
pluginlibdir = $(libdir)
+gimpincludedir = $(includedir)
pluginlib_LIBRARIES = libgpc.a
libgpc_a_SOURCES = \
- gpc.c \
+ gpc.c
+
+gimpinclude_HEADERS = \
gpc.h
INCLUDES = \
--- plug-ins/gpc/Makefile.in.orig Tue Mar 9 02:58:46 1999
+++ plug-ins/gpc/Makefile.in Mon May 10 10:17:48 1999
@@ -162,10 +162,14 @@
prefix = @prefix@
pluginlibdir = $(libdir)
+gimpincludedir = $(includedir)
pluginlib_LIBRARIES = libgpc.a
-libgpc_a_SOURCES = gpc.c gpc.h
+libgpc_a_SOURCES = gpc.c
+
+
+gimpinclude_HEADERS = gpc.h
INCLUDES = -I$(top_srcdir) $(GTK_CFLAGS) -I$(includedir)
@@ -201,6 +205,8 @@
MANS = $(man_MANS)
NROFF = nroff
+HEADERS = $(gimpinclude_HEADERS)
+
DIST_COMMON = Makefile.am Makefile.in
@@ -208,6 +214,7 @@
TAR = tar
GZIP_ENV = --best
+DEP_FILES = .deps/gpc.P
SOURCES = $(libgpc_a_SOURCES)
OBJECTS = $(libgpc_a_OBJECTS)
@@ -215,9 +222,9 @@
.SUFFIXES:
.SUFFIXES: .S .c .lo .o .s
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
- cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps plug-ins/gpc/Makefile
+ cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gpc/Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
@@ -254,9 +261,6 @@
rm -f $(DESTDIR)$(pluginlibdir)/$$p; \
done
-.c.o:
- $(COMPILE) -c $<
-
.s.o:
$(COMPILE) -c $<
@@ -273,9 +277,6 @@
maintainer-clean-compile:
-.c.lo:
- $(LIBTOOL) --mode=compile $(COMPILE) -c $<
-
.s.lo:
$(LIBTOOL) --mode=compile $(COMPILE) -c $<
@@ -336,6 +337,21 @@
@$(NORMAL_UNINSTALL)
$(MAKE) $(AM_MAKEFLAGS) uninstall-man3
+install-gimpincludeHEADERS: $(gimpinclude_HEADERS)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(gimpincludedir)
+ @list='$(gimpinclude_HEADERS)'; for p in $$list; do \
+ if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
+ echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(gimpincludedir)/$$p"; \
+ $(INSTALL_DATA) $$d$$p $(DESTDIR)$(gimpincludedir)/$$p; \
+ done
+
+uninstall-gimpincludeHEADERS:
+ @$(NORMAL_UNINSTALL)
+ list='$(gimpinclude_HEADERS)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(gimpincludedir)/$$p; \
+ done
+
tags: TAGS
ID: $(HEADERS) $(SOURCES) $(LISP)
@@ -370,6 +386,11 @@
subdir = plug-ins/gpc
distdir: $(DISTFILES)
+ here=`cd $(top_builddir) && pwd`; \
+ top_distdir=`cd $(top_distdir) && pwd`; \
+ distdir=`cd $(distdir) && pwd`; \
+ cd $(top_srcdir) \
+ && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu plug-ins/gpc/Makefile
@for file in $(DISTFILES); do \
d=$(srcdir); \
if test -d $$d/$$file; then \
@@ -381,6 +402,37 @@
fi; \
done
+DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
+
+-include $(DEP_FILES)
+
+mostlyclean-depend:
+
+clean-depend:
+
+distclean-depend:
+ -rm -rf .deps
+
+maintainer-clean-depend:
+
+%.o: %.c
+ @echo '$(COMPILE) -c $<'; \
+ $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
+ @-cp .deps/$(*F).pp .deps/$(*F).P; \
+ tr ' ' '\012' < .deps/$(*F).pp \
+ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
+ >> .deps/$(*F).P; \
+ rm .deps/$(*F).pp
+
+%.lo: %.c
+ @echo '$(LTCOMPILE) -c $<'; \
+ $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
+ @-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
+ < .deps/$(*F).pp > .deps/$(*F).P; \
+ tr ' ' '\012' < .deps/$(*F).pp \
+ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
+ >> .deps/$(*F).P; \
+ rm -f .deps/$(*F).pp
info-am:
info: info-am
dvi-am:
@@ -392,20 +444,23 @@
install-exec-am:
install-exec: install-exec-am
-install-data-am: install-pluginlibLIBRARIES install-man
+install-data-am: install-pluginlibLIBRARIES install-man \
+ install-gimpincludeHEADERS
install-data: install-data-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
install: install-am
-uninstall-am: uninstall-pluginlibLIBRARIES uninstall-man
+uninstall-am: uninstall-pluginlibLIBRARIES uninstall-man \
+ uninstall-gimpincludeHEADERS
uninstall: uninstall-am
-all-am: Makefile $(LIBRARIES) $(MANS)
+all-am: Makefile $(LIBRARIES) $(MANS) $(HEADERS)
all-redirect: all-am
install-strip:
$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
installdirs:
- $(mkinstalldirs) $(DESTDIR)$(pluginlibdir) $(DESTDIR)$(mandir)/man3
+ $(mkinstalldirs) $(DESTDIR)$(pluginlibdir) $(DESTDIR)$(mandir)/man3 \
+ $(DESTDIR)$(gimpincludedir)
mostlyclean-generic:
@@ -418,27 +473,27 @@
maintainer-clean-generic:
mostlyclean-am: mostlyclean-pluginlibLIBRARIES mostlyclean-compile \
- mostlyclean-libtool mostlyclean-tags \
+ mostlyclean-libtool mostlyclean-tags mostlyclean-depend \
mostlyclean-generic
mostlyclean: mostlyclean-am
clean-am: clean-pluginlibLIBRARIES clean-compile clean-libtool \
- clean-tags clean-generic mostlyclean-am
+ clean-tags clean-depend clean-generic mostlyclean-am
clean: clean-am
distclean-am: distclean-pluginlibLIBRARIES distclean-compile \
- distclean-libtool distclean-tags distclean-generic \
- clean-am
+ distclean-libtool distclean-tags distclean-depend \
+ distclean-generic clean-am
-rm -f libtool
distclean: distclean-am
maintainer-clean-am: maintainer-clean-pluginlibLIBRARIES \
maintainer-clean-compile maintainer-clean-libtool \
- maintainer-clean-tags maintainer-clean-generic \
- distclean-am
+ maintainer-clean-tags maintainer-clean-depend \
+ maintainer-clean-generic distclean-am
@echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild."
@@ -450,13 +505,15 @@
mostlyclean-compile distclean-compile clean-compile \
maintainer-clean-compile mostlyclean-libtool distclean-libtool \
clean-libtool maintainer-clean-libtool install-man3 uninstall-man3 \
-install-man uninstall-man tags mostlyclean-tags distclean-tags \
-clean-tags maintainer-clean-tags distdir info-am info dvi-am dvi check \
-check-am installcheck-am installcheck install-exec-am install-exec \
-install-data-am install-data install-am install uninstall-am uninstall \
-all-redirect all-am all installdirs mostlyclean-generic \
-distclean-generic clean-generic maintainer-clean-generic clean \
-mostlyclean distclean maintainer-clean
+install-man uninstall-man uninstall-gimpincludeHEADERS \
+install-gimpincludeHEADERS tags mostlyclean-tags distclean-tags \
+clean-tags maintainer-clean-tags distdir mostlyclean-depend \
+distclean-depend clean-depend maintainer-clean-depend info-am info \
+dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
+install-exec install-data-am install-data install-am install \
+uninstall-am uninstall all-redirect all-am all installdirs \
+mostlyclean-generic distclean-generic clean-generic \
+maintainer-clean-generic clean mostlyclean distclean maintainer-clean
.PHONY: files

View file

@ -1,5 +1,5 @@
--- plug-ins/plugindetails/plugindetails.c.orig Sat Mar 27 07:53:38 1999
+++ plug-ins/plugindetails/plugindetails.c Sat May 22 21:24:31 1999
--- plug-ins/common/plugindetails.c.orig Sat Mar 27 07:53:38 1999
+++ plug-ins/common/plugindetails.c Sat May 22 21:24:31 1999
@@ -25,6 +25,7 @@
#include <stdio.h>
#include <string.h>

View file

@ -1,20 +1,16 @@
--- gimptool.in.orig Sat Feb 20 19:48:58 1999
+++ gimptool.in Sat Feb 20 19:49:37 1999
@@ -198,7 +198,7 @@
| --install-script | --install-admin-script)
--- gimptool.in.orig Wed Aug 25 18:49:22 1999
+++ gimptool.in Tue Oct 12 13:31:37 1999
@@ -209,11 +209,11 @@
| --uninstall-script | --uninstall-admin-script )
case $1 in
--install-bin)
--*install-bin)
- install_cmd="@INSTALL_PROGRAM@"
+ install_cmd="@INSTALL_SCRIPT@"
install_dir="$HOME/@gimpdir@/plug-ins"
;;
--install-bin-strip)
@@ -206,7 +206,7 @@
- install_cmd="@INSTALL_PROGRAM@ -s"
+ install_cmd="@INSTALL_SCRIPT@ -s"
install_dir="$HOME/@gimpdir@/plug-ins"
;;
--install-admin-bin)
- install_cmd="@INSTALL_PROGRAM@"
+ install_cmd="@INSTALL_SCRIPT@"
install_dir="$plug_in_dir/plug-ins"
;;
--install-admin-bin-strip)
--*install-admin-bin)

View file

@ -1,6 +1,6 @@
--- configure.orig Tue May 4 06:06:39 1999
+++ configure Sat May 22 21:39:37 1999
@@ -3538,7 +3538,10 @@
--- configure.orig Wed Oct 6 14:00:22 1999
+++ configure Tue Oct 12 13:37:31 1999
@@ -3471,7 +3471,11 @@
cat conftest.$ac_ext >&5
rm -rf conftest*
CATOBJEXT=.mo
@ -9,10 +9,11 @@
+ INTLDEPS='-lintl'
+ INTLLIBS=$INTLDEPS
+ LIBS=`echo $LIBS | sed -e 's/-lintl//'`
+
fi
rm -f conftest*
INSTOBJEXT=.mo
@@ -7165,7 +7168,7 @@
@@ -7108,7 +7112,7 @@
fi
gimpdatadir=$datadir/gimp
@ -21,14 +22,14 @@
localedir='${prefix}/${DATADIRNAME}/locale'
brushdata=`ls -1 $srcdir/data/brushes | grep -v Makefile`
@@ -8746,10 +8749,6 @@
*) # Relative path.
ac_sub_cache_file="$ac_dots$cache_file" ;;
esac
- case "$ac_given_INSTALL" in
- [/$]*) INSTALL="$ac_given_INSTALL" ;;
- *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
- esac
@@ -8513,10 +8517,6 @@
top_srcdir="$ac_dots$ac_given_srcdir" ;;
esac
echo "running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir"
# The eval makes quoting arguments work.
- case "$ac_given_INSTALL" in
- [/$]*) INSTALL="$ac_given_INSTALL" ;;
- *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
- esac
echo creating "$ac_file"
rm -f "$ac_file"

View file

@ -9,16 +9,19 @@ include/gck/gckmath.h
include/gck/gcktypes.h
include/gck/gckui.h
include/gck/gckvector.h
include/gpc.h
include/libgimp/color_display.h
include/libgimp/color_selector.h
include/libgimp/gimp.h
include/libgimp/gimpchainbutton.h
include/libgimp/gimpenums.h
include/libgimp/gimpenv.h
include/libgimp/gimpexport.h
include/libgimp/gimpfeatures.h
include/libgimp/gimpfileselection.h
include/libgimp/gimpintl.h
include/libgimp/gimplimits.h
include/libgimp/gimpmatrix.h
include/libgimp/gimpmath.h
include/libgimp/gimpmenu.h
include/libgimp/gimpmodule.h
include/libgimp/gimppatheditor.h
@ -30,23 +33,26 @@ include/libgimp/gserialize.h
include/libgimp/parasite.h
include/libgimp/parasiteF.h
include/libgimp/parasiteP.h
include/megawidget.h
include/libgimp/parasiteio.h
lib/libgck.a
lib/libgck.so
lib/libgck.so.5
lib/libgck.so.10
lib/libgimp.a
lib/libgimp.so
lib/libgimp.so.5
lib/libgimp.so.10
lib/libgimpui.a
lib/libgimpui.so
lib/libgimpui.so.5
lib/libgimpui.so.10
lib/libgpc.a
lib/libmegawidget.a
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
libexec/gimp/1.1/modules/libcdisplay_gamma.so
libexec/gimp/1.1/modules/libcolorsel_gtk.so
libexec/gimp/1.1/modules/libcolorsel_triangle.so
libexec/gimp/1.1/modules/libcolorsel_water.so
libexec/gimp/1.1/plug-ins/AlienMap
libexec/gimp/1.1/plug-ins/AlienMap2
libexec/gimp/1.1/plug-ins/CEL
libexec/gimp/1.1/plug-ins/CML_explorer
libexec/gimp/1.1/plug-ins/FractalExplorer
@ -68,9 +74,12 @@ libexec/gimp/1.1/plug-ins/bz2
libexec/gimp/1.1/plug-ins/c_astretch
libexec/gimp/1.1/plug-ins/checkerboard
libexec/gimp/1.1/plug-ins/colorify
libexec/gimp/1.1/plug-ins/color_enhance
libexec/gimp/1.1/plug-ins/compose
libexec/gimp/1.1/plug-ins/convmatrix
libexec/gimp/1.1/plug-ins/csource
libexec/gimp/1.1/plug-ins/cubism
libexec/gimp/1.1/plug-ins/curve_bend
libexec/gimp/1.1/plug-ins/dbbrowser
libexec/gimp/1.1/plug-ins/decompose
libexec/gimp/1.1/plug-ins/deinterlace
@ -98,11 +107,14 @@ libexec/gimp/1.1/plug-ins/gbr
libexec/gimp/1.1/plug-ins/gdyntext
libexec/gimp/1.1/plug-ins/gee
libexec/gimp/1.1/plug-ins/gfig
libexec/gimp/1.1/plug-ins/gflare
libexec/gimp/1.1/plug-ins/gfli
libexec/gimp/1.1/plug-ins/gicon
libexec/gimp/1.1/plug-ins/gif
libexec/gimp/1.1/plug-ins/gifload
libexec/gimp/1.1/plug-ins/gimpressionist
libexec/gimp/1.1/plug-ins/glasstile
libexec/gimp/1.1/plug-ins/gpb
libexec/gimp/1.1/plug-ins/gqbist
libexec/gimp/1.1/plug-ins/gradmap
libexec/gimp/1.1/plug-ins/grid
@ -114,6 +126,7 @@ libexec/gimp/1.1/plug-ins/hot
libexec/gimp/1.1/plug-ins/hrz
libexec/gimp/1.1/plug-ins/ifscompose
libexec/gimp/1.1/plug-ins/illusion
libexec/gimp/1.1/plug-ins/imagemap
libexec/gimp/1.1/plug-ins/iwarp
libexec/gimp/1.1/plug-ins/jigsaw
libexec/gimp/1.1/plug-ins/jpeg
@ -133,7 +146,6 @@ libexec/gimp/1.1/plug-ins/normalize
libexec/gimp/1.1/plug-ins/nova
libexec/gimp/1.1/plug-ins/oilify
libexec/gimp/1.1/plug-ins/pagecurl
libexec/gimp/1.1/plug-ins/palette
libexec/gimp/1.1/plug-ins/papertile
libexec/gimp/1.1/plug-ins/pat
libexec/gimp/1.1/plug-ins/pcx
@ -147,14 +159,18 @@ libexec/gimp/1.1/plug-ins/polar
libexec/gimp/1.1/plug-ins/print
libexec/gimp/1.1/plug-ins/ps
libexec/gimp/1.1/plug-ins/psd
libexec/gimp/1.1/plug-ins/psp
libexec/gimp/1.1/plug-ins/randomize
libexec/gimp/1.1/plug-ins/rcm
libexec/gimp/1.1/plug-ins/ripple
libexec/gimp/1.1/plug-ins/rotate
libexec/gimp/1.1/plug-ins/rotators
libexec/gimp/1.1/plug-ins/sample_colorize
libexec/gimp/1.1/plug-ins/scatter_hsv
libexec/gimp/1.1/plug-ins/screenshot
libexec/gimp/1.1/plug-ins/script-fu
libexec/gimp/1.1/plug-ins/sel2path
libexec/gimp/1.1/plug-ins/sel_gauss
libexec/gimp/1.1/plug-ins/semiflatten
libexec/gimp/1.1/plug-ins/sgi
libexec/gimp/1.1/plug-ins/sharpen
@ -164,6 +180,7 @@ libexec/gimp/1.1/plug-ins/smooth_palette
libexec/gimp/1.1/plug-ins/snoise
libexec/gimp/1.1/plug-ins/sobel
libexec/gimp/1.1/plug-ins/sparkle
libexec/gimp/1.1/plug-ins/spheredesigner
libexec/gimp/1.1/plug-ins/spread
libexec/gimp/1.1/plug-ins/struc
libexec/gimp/1.1/plug-ins/sunras
@ -173,11 +190,12 @@ libexec/gimp/1.1/plug-ins/tiff
libexec/gimp/1.1/plug-ins/tile
libexec/gimp/1.1/plug-ins/tileit
libexec/gimp/1.1/plug-ins/tiler
libexec/gimp/1.1/plug-ins/unsharp
libexec/gimp/1.1/plug-ins/url
libexec/gimp/1.1/plug-ins/video
libexec/gimp/1.1/plug-ins/vinvert
libexec/gimp/1.1/plug-ins/vpropagate
libexec/gimp/1.1/plug-ins/waterselect
libexec/gimp/1.1/plug-ins/warp
libexec/gimp/1.1/plug-ins/waves
libexec/gimp/1.1/plug-ins/webbrowser
libexec/gimp/1.1/plug-ins/whirlpinch
@ -226,9 +244,10 @@ share/gimp/brushes/dunes.gbr
share/gimp/brushes/galaxy.gbr
share/gimp/brushes/galaxy_big.gbr
share/gimp/brushes/galaxy_small.gbr
share/gimp/brushes/pepper.gpb
share/gimp/brushes/pixel.gbr
share/gimp/brushes/round1.vbr
share/gimp/brushes/thegimp.gbr
share/gimp/brushes/vine.gih
share/gimp/brushes/xcf.gbr
share/gimp/fractalexplorer/Asteroid_Field
share/gimp/fractalexplorer/Bar_Code_Label
@ -273,10 +292,107 @@ 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/Distant_Sun
share/gimp/gflare/Default
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/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/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/gimp1_1_splash.ppm
share/gimp/gimp_logo.ppm
share/gimp/gimp_splash.ppm
share/gimp/gimp_tips.txt
share/gimp/gimprc
share/gimp/gimprc_user
share/gimp/gradients/Abstract_1
@ -357,6 +473,370 @@ share/gimp/gradients/Wood_1
share/gimp/gradients/Wood_2
share/gimp/gradients/Yellow_Contrast
share/gimp/gradients/Yellow_Orange
share/gimp/help/C/dialogs/layers/add_mask.html
share/gimp/help/C/dialogs/layers/apply_mask.html
share/gimp/help/C/dialogs/layers/edit_layer_attributes.html
share/gimp/help/C/dialogs/layers/index.html
share/gimp/help/C/dialogs/layers/layers.html
share/gimp/help/C/dialogs/layers/merge_visible_layers.html
share/gimp/help/C/dialogs/layers/new_layer.html
share/gimp/help/C/dialogs/layers/resize_layer.html
share/gimp/help/C/dialogs/layers/scale_layer.html
share/gimp/help/C/dialogs/channels/channels.html
share/gimp/help/C/dialogs/channels/edit_channel_attributes.html
share/gimp/help/C/dialogs/channels/index.html
share/gimp/help/C/dialogs/channels/new_channel.html
share/gimp/help/C/dialogs/paths/export_path.html
share/gimp/help/C/dialogs/paths/import_path.html
share/gimp/help/C/dialogs/paths/index.html
share/gimp/help/C/dialogs/paths/paths.html
share/gimp/help/C/dialogs/paths/rename_path.html
share/gimp/help/C/dialogs/palette_editor/import_palette.html
share/gimp/help/C/dialogs/palette_editor/index.html
share/gimp/help/C/dialogs/palette_editor/merge_palette.html
share/gimp/help/C/dialogs/palette_editor/new_palette.html
share/gimp/help/C/dialogs/palette_editor/palette_editor.html
share/gimp/help/C/dialogs/gradient_editor/copy_gradient.html
share/gimp/help/C/dialogs/gradient_editor/delete_gradient.html
share/gimp/help/C/dialogs/gradient_editor/gradient_editor.html
share/gimp/help/C/dialogs/gradient_editor/index.html
share/gimp/help/C/dialogs/gradient_editor/new_gradient.html
share/gimp/help/C/dialogs/gradient_editor/rename_gradient.html
share/gimp/help/C/dialogs/gradient_editor/replicate_segment.html
share/gimp/help/C/dialogs/gradient_editor/save_as_pov_ray.html
share/gimp/help/C/dialogs/gradient_editor/split_segments_uniformly.html
share/gimp/help/C/dialogs/display_filters/display_filters.html
share/gimp/help/C/dialogs/display_filters/gamma.html
share/gimp/help/C/dialogs/display_filters/index.html
share/gimp/help/C/dialogs/color_selectors/built_in.html
share/gimp/help/C/dialogs/color_selectors/gtk.html
share/gimp/help/C/dialogs/color_selectors/index.html
share/gimp/help/C/dialogs/color_selectors/triangle.html
share/gimp/help/C/dialogs/color_selectors/watercolor.html
share/gimp/help/C/dialogs/preferences/directories.html
share/gimp/help/C/dialogs/preferences/display.html
share/gimp/help/C/dialogs/preferences/environment.html
share/gimp/help/C/dialogs/preferences/index.html
share/gimp/help/C/dialogs/preferences/interface.html
share/gimp/help/C/dialogs/preferences/monitor.html
share/gimp/help/C/dialogs/preferences/new_file.html
share/gimp/help/C/dialogs/preferences/preferences.html
share/gimp/help/C/dialogs/preferences/session.html
share/gimp/help/C/dialogs/about.html
share/gimp/help/C/dialogs/border_selection.html
share/gimp/help/C/dialogs/brush_editor.html
share/gimp/help/C/dialogs/brush_selection.html
share/gimp/help/C/dialogs/convert_to_indexed.html
share/gimp/help/C/dialogs/copy_named.html
share/gimp/help/C/dialogs/cut_named.html
share/gimp/help/C/dialogs/device_status.html
share/gimp/help/C/dialogs/document_index.html
share/gimp/help/C/dialogs/edit_qmask_attributes.html
share/gimp/help/C/dialogs/error_console.html
share/gimp/help/C/dialogs/feather_selection.html
share/gimp/help/C/dialogs/file_new.html
share/gimp/help/C/dialogs/file_open.html
share/gimp/help/C/dialogs/file_save.html
share/gimp/help/C/dialogs/gradient_selection.html
share/gimp/help/C/dialogs/grow_selection.html
share/gimp/help/C/dialogs/help.html
share/gimp/help/C/dialogs/index.html
share/gimp/help/C/dialogs/indexed_palette.html
share/gimp/help/C/dialogs/info_window.html
share/gimp/help/C/dialogs/input_devices.html
share/gimp/help/C/dialogs/layers_and_channels.html
share/gimp/help/C/dialogs/module_browser.html
share/gimp/help/C/dialogs/navigation_window.html
share/gimp/help/C/dialogs/offset.html
share/gimp/help/C/dialogs/palette_selection.html
share/gimp/help/C/dialogs/paste_named.html
share/gimp/help/C/dialogs/pattern_selection.html
share/gimp/help/C/dialogs/really_close.html
share/gimp/help/C/dialogs/really_quit.html
share/gimp/help/C/dialogs/resize_image.html
share/gimp/help/C/dialogs/scale_image.html
share/gimp/help/C/dialogs/shrink_selection.html
share/gimp/help/C/dialogs/tip_of_the_day.html
share/gimp/help/C/dialogs/tool_options.html
share/gimp/help/C/dialogs/undo_history.html
share/gimp/help/C/tools/airbrush.html
share/gimp/help/C/tools/bezier_select.html
share/gimp/help/C/tools/blend.html
share/gimp/help/C/tools/brightness_contrast.html
share/gimp/help/C/tools/bucket_fill.html
share/gimp/help/C/tools/by_color_select.html
share/gimp/help/C/tools/clone.html
share/gimp/help/C/tools/color_balance.html
share/gimp/help/C/tools/color_picker.html
share/gimp/help/C/tools/convolve.html
share/gimp/help/C/tools/crop.html
share/gimp/help/C/tools/curves.html
share/gimp/help/C/tools/dodgeburn.html
share/gimp/help/C/tools/ellipse_select.html
share/gimp/help/C/tools/eraser.html
share/gimp/help/C/tools/flip.html
share/gimp/help/C/tools/free_select.html
share/gimp/help/C/tools/fuzzy_select.html
share/gimp/help/C/tools/histogram.html
share/gimp/help/C/tools/hue_saturation.html
share/gimp/help/C/tools/index.html
share/gimp/help/C/tools/ink.html
share/gimp/help/C/tools/intelligent_scissors.html
share/gimp/help/C/tools/levels.html
share/gimp/help/C/tools/magnify.html
share/gimp/help/C/tools/measure.html
share/gimp/help/C/tools/move.html
share/gimp/help/C/tools/paintbrush.html
share/gimp/help/C/tools/path.html
share/gimp/help/C/tools/pencil.html
share/gimp/help/C/tools/posterize.html
share/gimp/help/C/tools/rect_select.html
share/gimp/help/C/tools/smudge.html
share/gimp/help/C/tools/text.html
share/gimp/help/C/tools/threshold.html
share/gimp/help/C/tools/transform.html
share/gimp/help/C/tools/transform_perspective.html
share/gimp/help/C/tools/transform_rotate.html
share/gimp/help/C/tools/transform_scale.html
share/gimp/help/C/tools/transform_shear.html
share/gimp/help/C/tools/xinput_airbrush.html
share/gimp/help/C/layers/stack/index.html
share/gimp/help/C/layers/stack/stack.html
share/gimp/help/C/layers/add_alpha_channel.html
share/gimp/help/C/layers/alpha_to_selection.html
share/gimp/help/C/layers/anchor_layer.html
share/gimp/help/C/layers/delete_layer.html
share/gimp/help/C/layers/duplicate_layer.html
share/gimp/help/C/layers/flatten_image.html
share/gimp/help/C/layers/index.html
share/gimp/help/C/layers/mask_to_selection.html
share/gimp/help/C/layers/merge_down.html
share/gimp/help/C/channels/channel_to_selection.html
share/gimp/help/C/channels/channels.html
share/gimp/help/C/channels/delete_channel.html
share/gimp/help/C/channels/duplicate_channel.html
share/gimp/help/C/channels/index.html
share/gimp/help/C/channels/lower_channel.html
share/gimp/help/C/channels/raise_channel.html
share/gimp/help/C/paths/copy_path.html
share/gimp/help/C/paths/delete_path.html
share/gimp/help/C/paths/duplicate_path.html
share/gimp/help/C/paths/index.html
share/gimp/help/C/paths/new_path.html
share/gimp/help/C/paths/paste_path.html
share/gimp/help/C/paths/path_to_selection.html
share/gimp/help/C/paths/stroke_path.html
share/gimp/help/C/toolbox/index.html
share/gimp/help/C/toolbox/toolbox.html
share/gimp/help/C/image/edit/clear.html
share/gimp/help/C/image/edit/copy.html
share/gimp/help/C/image/edit/cut.html
share/gimp/help/C/image/edit/fill.html
share/gimp/help/C/image/edit/index.html
share/gimp/help/C/image/edit/paste.html
share/gimp/help/C/image/edit/paste_as_new.html
share/gimp/help/C/image/edit/paste_into.html
share/gimp/help/C/image/edit/redo.html
share/gimp/help/C/image/edit/stroke.html
share/gimp/help/C/image/edit/undo.html
share/gimp/help/C/image/select/all.html
share/gimp/help/C/image/select/float.html
share/gimp/help/C/image/select/index.html
share/gimp/help/C/image/select/invert.html
share/gimp/help/C/image/select/none.html
share/gimp/help/C/image/select/save_to_channel.html
share/gimp/help/C/image/select/sharpen.html
share/gimp/help/C/image/view/dot_for_dot.html
share/gimp/help/C/image/view/index.html
share/gimp/help/C/image/view/new_view.html
share/gimp/help/C/image/view/shrink_wrap.html
share/gimp/help/C/image/view/snap_to_guides.html
share/gimp/help/C/image/view/toggle_guides.html
share/gimp/help/C/image/view/toggle_rulers.html
share/gimp/help/C/image/view/toggle_selection.html
share/gimp/help/C/image/view/toggle_statusbar.html
share/gimp/help/C/image/view/zoom.html
share/gimp/help/C/image/image/transforms/index.html
share/gimp/help/C/image/image/colors/desaturate.html
share/gimp/help/C/image/image/colors/equalize.html
share/gimp/help/C/image/image/colors/index.html
share/gimp/help/C/image/image/colors/invert.html
share/gimp/help/C/image/image/convert_to_grayscale.html
share/gimp/help/C/image/image/convert_to_rgb.html
share/gimp/help/C/image/image/duplicate.html
share/gimp/help/C/image/image/index.html
share/gimp/help/C/image/image_window.html
share/gimp/help/C/image/index.html
share/gimp/help/C/open/index.html
share/gimp/help/C/open/open_by_extension.html
share/gimp/help/C/save/index.html
share/gimp/help/C/save/save_by_extension.html
share/gimp/help/C/filters/alienmap.html
share/gimp/help/C/filters/alienmap2.html
share/gimp/help/C/filters/align_layers.html
share/gimp/help/C/filters/animationplay.html
share/gimp/help/C/filters/animoptimize.html
share/gimp/help/C/filters/apply_lens.html
share/gimp/help/C/filters/autocrop.html
share/gimp/help/C/filters/autostretch_hsv.html
share/gimp/help/C/filters/blinds.html
share/gimp/help/C/filters/blur.html
share/gimp/help/C/filters/bmp.html
share/gimp/help/C/filters/borderaverage.html
share/gimp/help/C/filters/bumpmap.html
share/gimp/help/C/filters/bz2.html
share/gimp/help/C/filters/c_astretch.html
share/gimp/help/C/filters/cel.html
share/gimp/help/C/filters/checkerboard.html
share/gimp/help/C/filters/cml_explorer.html
share/gimp/help/C/filters/color_enhance.html
share/gimp/help/C/filters/fp.html
share/gimp/help/C/filters/colorify.html
share/gimp/help/C/filters/compose.html
share/gimp/help/C/filters/convmatrix.html
share/gimp/help/C/filters/csource.html
share/gimp/help/C/filters/cubism.html
share/gimp/help/C/filters/curve_bend.html
share/gimp/help/C/filters/dbbrowser.html
share/gimp/help/C/filters/decompose.html
share/gimp/help/C/filters/deinterlace.html
share/gimp/help/C/filters/depthmerge.html
share/gimp/help/C/filters/despeckle.html
share/gimp/help/C/filters/destripe.html
share/gimp/help/C/filters/diffraction.html
share/gimp/help/C/filters/displace.html
share/gimp/help/C/filters/edge.html
share/gimp/help/C/filters/emboss.html
share/gimp/help/C/filters/engrave.html
share/gimp/help/C/filters/exchange.html
share/gimp/help/C/filters/faxg3.html
share/gimp/help/C/filters/film.html
share/gimp/help/C/filters/fits.html
share/gimp/help/C/filters/flame.html
share/gimp/help/C/filters/flarefx.html
share/gimp/help/C/filters/fractalexplorer.html
share/gimp/help/C/filters/fractaltrace.html
share/gimp/help/C/filters/gap_filter.html
share/gimp/help/C/filters/gap_plugins.html
share/gimp/help/C/filters/gauss_iir.html
share/gimp/help/C/filters/gauss_rle.html
share/gimp/help/C/filters/gbr.html
share/gimp/help/C/filters/gdyntext.html
share/gimp/help/C/filters/gee.html
share/gimp/help/C/filters/gfig.html
share/gimp/help/C/filters/gflare.html
share/gimp/help/C/filters/gfli.html
share/gimp/help/C/filters/gicon.html
share/gimp/help/C/filters/gif.html
share/gimp/help/C/filters/gifload.html
share/gimp/help/C/filters/gimpressionist.html
share/gimp/help/C/filters/glasstile.html
share/gimp/help/C/filters/gpb.html
share/gimp/help/C/filters/gqbist.html
share/gimp/help/C/filters/gradmap.html
share/gimp/help/C/filters/grid.html
share/gimp/help/C/filters/gtm.html
share/gimp/help/C/filters/guillotine.html
share/gimp/help/C/filters/gz.html
share/gimp/help/C/filters/header.html
share/gimp/help/C/filters/hot.html
share/gimp/help/C/filters/hrz.html
share/gimp/help/C/filters/ifscompose.html
share/gimp/help/C/filters/illusion.html
share/gimp/help/C/filters/imagemap.html
share/gimp/help/C/filters/index.html
share/gimp/help/C/filters/iwarp.html
share/gimp/help/C/filters/jigsaw.html
share/gimp/help/C/filters/jpeg.html
share/gimp/help/C/filters/laplace.html
share/gimp/help/C/filters/lic.html
share/gimp/help/C/filters/lighting.html
share/gimp/help/C/filters/mail.html
share/gimp/help/C/filters/mapcolor.html
share/gimp/help/C/filters/mapobject.html
share/gimp/help/C/filters/max_rgb.html
share/gimp/help/C/filters/maze.html
share/gimp/help/C/filters/mblur.html
share/gimp/help/C/filters/mosaic.html
share/gimp/help/C/filters/nlfilt.html
share/gimp/help/C/filters/newsprint.html
share/gimp/help/C/filters/noisify.html
share/gimp/help/C/filters/normalize.html
share/gimp/help/C/filters/nova.html
share/gimp/help/C/filters/oilify.html
share/gimp/help/C/filters/pagecurl.html
share/gimp/help/C/filters/papertile.html
share/gimp/help/C/filters/pat.html
share/gimp/help/C/filters/pcx.html
share/gimp/help/C/filters/pix.html
share/gimp/help/C/filters/pixelize.html
share/gimp/help/C/filters/plasma.html
share/gimp/help/C/filters/plugindetails.html
share/gimp/help/C/filters/png.html
share/gimp/help/C/filters/pnm.html
share/gimp/help/C/filters/polar.html
share/gimp/help/C/filters/print.html
share/gimp/help/C/filters/ps.html
share/gimp/help/C/filters/psd.html
share/gimp/help/C/filters/psp.html
share/gimp/help/C/filters/randomize.html
share/gimp/help/C/filters/rcm.html
share/gimp/help/C/filters/repeat_last.html
share/gimp/help/C/filters/reshow_last.html
share/gimp/help/C/filters/ripple.html
share/gimp/help/C/filters/rotate.html
share/gimp/help/C/filters/rotators.html
share/gimp/help/C/filters/sample_colorize.html
share/gimp/help/C/filters/scatter_hsv.html
share/gimp/help/C/filters/screenshot.html
share/gimp/help/C/filters/script-fu.html
share/gimp/help/C/filters/sel2path.html
share/gimp/help/C/filters/sel_gauss.html
share/gimp/help/C/filters/semiflatten.html
share/gimp/help/C/filters/sgi.html
share/gimp/help/C/filters/sharpen.html
share/gimp/help/C/filters/shift.html
share/gimp/help/C/filters/sinus.html
share/gimp/help/C/filters/smooth_palette.html
share/gimp/help/C/filters/snoise.html
share/gimp/help/C/filters/sobel.html
share/gimp/help/C/filters/sparkle.html
share/gimp/help/C/filters/spheredesigner.html
share/gimp/help/C/filters/spread.html
share/gimp/help/C/filters/struc.html
share/gimp/help/C/filters/sunras.html
share/gimp/help/C/filters/tga.html
share/gimp/help/C/filters/threshold_alpha.html
share/gimp/help/C/filters/tiff.html
share/gimp/help/C/filters/tile.html
share/gimp/help/C/filters/tileit.html
share/gimp/help/C/filters/tiler.html
share/gimp/help/C/filters/unsharp.html
share/gimp/help/C/filters/url.html
share/gimp/help/C/filters/video.html
share/gimp/help/C/filters/vinvert.html
share/gimp/help/C/filters/vpropagate.html
share/gimp/help/C/filters/warp.html
share/gimp/help/C/filters/waves.html
share/gimp/help/C/filters/webbrowser.html
share/gimp/help/C/filters/whirlpinch.html
share/gimp/help/C/filters/wind.html
share/gimp/help/C/filters/wmf.html
share/gimp/help/C/filters/xbm.html
share/gimp/help/C/filters/xjt.html
share/gimp/help/C/filters/xpm.html
share/gimp/help/C/filters/xwd.html
share/gimp/help/C/filters/zealouscrop.html
share/gimp/help/C/file/close.html
share/gimp/help/C/file/index.html
share/gimp/help/C/file/last_opened.html
share/gimp/help/C/file/quit.html
share/gimp/help/C/file/revert.html
share/gimp/help/C/contents.html
share/gimp/help/C/index.html
share/gimp/help/C/welcome.html
share/gimp/help/images/eek.png
share/gimp/help/images/wilber.png
share/gimp/gtkrc
share/gimp/gtkrc.forest2
share/gimp/palettes/Bears
@ -393,6 +873,8 @@ share/gimp/palettes/Reds
share/gimp/palettes/Reds_And_Purples
share/gimp/palettes/Royal
share/gimp/palettes/Topographic
share/gimp/palettes/Visibone
share/gimp/palettes/Visibone2
share/gimp/palettes/Volcano
share/gimp/palettes/Warm_Colors
share/gimp/palettes/Web
@ -551,6 +1033,12 @@ 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/tips/gimp_tips.txt
share/gimp/tips/gimp_tips.de.txt
share/gimp/tips/gimp_tips.ja.txt
share/gimp/tips/gimp_tips.it.txt
share/gimp/tips/gimp_conseils.fr.txt
share/gimp/tips/gimp_tips.ru.txt
share/gimp/unitrc
share/gimp/user_install
share/locale/de/LC_MESSAGES/gimp.mo
@ -564,6 +1052,41 @@ share/locale/nl/LC_MESSAGES/gimp.mo
share/locale/pl/LC_MESSAGES/gimp.mo
share/locale/ru/LC_MESSAGES/gimp.mo
share/locale/sv/LC_MESSAGES/gimp.mo
@dirrm share/gimp/gflare
@dirrm share/gimp/gimpressionist/Brushes
@dirrm share/gimp/gimpressionist/Paper
@dirrm share/gimp/gimpressionist/Presets
@dirrm share/gimp/gimpressionist
@dirrm share/gimp/tips
@dirrm share/gimp/help/C/dialogs/layers
@dirrm share/gimp/help/C/dialogs/channels
@dirrm share/gimp/help/C/dialogs/paths
@dirrm share/gimp/help/C/dialogs/palette_editor
@dirrm share/gimp/help/C/dialogs/gradient_editor
@dirrm share/gimp/help/C/dialogs/display_filters
@dirrm share/gimp/help/C/dialogs/color_selectors
@dirrm share/gimp/help/C/dialogs/preferences
@dirrm share/gimp/help/C/dialogs
@dirrm share/gimp/help/C/tools
@dirrm share/gimp/help/C/layers/stack
@dirrm share/gimp/help/C/layers
@dirrm share/gimp/help/C/channels
@dirrm share/gimp/help/C/paths
@dirrm share/gimp/help/C/toolbox
@dirrm share/gimp/help/C/image/edit
@dirrm share/gimp/help/C/image/select
@dirrm share/gimp/help/C/image/view
@dirrm share/gimp/help/C/image/image/transforms
@dirrm share/gimp/help/C/image/image/colors
@dirrm share/gimp/help/C/image/image
@dirrm share/gimp/help/C/image
@dirrm share/gimp/help/C/open
@dirrm share/gimp/help/C/save
@dirrm share/gimp/help/C/filters
@dirrm share/gimp/help/C/file
@dirrm share/gimp/help/images
@dirrm share/gimp/help/C
@dirrm share/gimp/help
@dirrm share/gimp/scripts
@dirrm share/gimp/patterns
@dirrm share/gimp/palettes

View file

@ -1,16 +1,16 @@
# New ports collection makefile for: Gimp
# Version required: 1.1.5
# Version required: 1.1.10
# Date created: Mon Nov 18 21:28:43 CST 1996
# Whom: erich@FreeBSD.org
#
# $FreeBSD$
#
DISTNAME= gimp-1.1.5
DISTNAME= gimp-1.1.10
CATEGORIES= graphics
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.5/ \
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.5/ \
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.5/
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.10/ \
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.10/ \
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.10/
MAINTAINER= erich@FreeBSD.org
@ -25,6 +25,7 @@ LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_GMAKE= yes
USE_LIBTOOL= yes

View file

@ -1 +1 @@
MD5 (gimp-1.1.5.tar.gz) = 048e20d9c639e9017292dd5b971d477b
MD5 (gimp-1.1.10.tar.bz2) = a5bf11f5bd1050d9d0ed1fc941f4302c

View file

@ -1,14 +1,15 @@
--- app/main.c.orig Mon Sep 21 17:15:18 1998
+++ app/main.c Tue Sep 29 22:24:17 1998
@@ -16,6 +16,7 @@
--- app/main.c.orig Wed Oct 6 13:55:38 1999
+++ app/main.c Tue Oct 12 13:23:44 1999
@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "config.h"
-
+#include <floatingpoint.h>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
@@ -94,6 +95,9 @@
@@ -117,6 +117,9 @@
/* Initialize variables */
prog_name = argv[0];
@ -16,5 +17,5 @@
+ /* Ignore floating point exceptions */
+ fpsetmask(0);
/* Initialize Gtk toolkit */
gtk_set_locale ();
/* Initialize i18n support */

View file

@ -1,5 +1,5 @@
--- plug-ins/url/url.c.orig Sat May 30 15:32:36 1998
+++ plug-ins/url/url.c Sun Jun 7 10:09:34 1998
--- plug-ins/common/url.c.orig Sat May 30 15:32:36 1998
+++ plug-ins/common/url.c Sun Jun 7 10:09:34 1998
@@ -146,8 +146,8 @@
}
else if (pid == 0)

View file

@ -1,242 +0,0 @@
--- plug-ins/gpc/Makefile.am.orig Wed Nov 18 06:14:51 1998
+++ plug-ins/gpc/Makefile.am Sat Feb 20 17:31:16 1999
@@ -1,11 +1,14 @@
## Process this file with automake to produce Makefile.in
pluginlibdir = $(libdir)
+gimpincludedir = $(includedir)
pluginlib_LIBRARIES = libgpc.a
libgpc_a_SOURCES = \
- gpc.c \
+ gpc.c
+
+gimpinclude_HEADERS = \
gpc.h
INCLUDES = \
--- plug-ins/gpc/Makefile.in.orig Tue Mar 9 02:58:46 1999
+++ plug-ins/gpc/Makefile.in Mon May 10 10:17:48 1999
@@ -162,10 +162,14 @@
prefix = @prefix@
pluginlibdir = $(libdir)
+gimpincludedir = $(includedir)
pluginlib_LIBRARIES = libgpc.a
-libgpc_a_SOURCES = gpc.c gpc.h
+libgpc_a_SOURCES = gpc.c
+
+
+gimpinclude_HEADERS = gpc.h
INCLUDES = -I$(top_srcdir) $(GTK_CFLAGS) -I$(includedir)
@@ -201,6 +205,8 @@
MANS = $(man_MANS)
NROFF = nroff
+HEADERS = $(gimpinclude_HEADERS)
+
DIST_COMMON = Makefile.am Makefile.in
@@ -208,6 +214,7 @@
TAR = tar
GZIP_ENV = --best
+DEP_FILES = .deps/gpc.P
SOURCES = $(libgpc_a_SOURCES)
OBJECTS = $(libgpc_a_OBJECTS)
@@ -215,9 +222,9 @@
.SUFFIXES:
.SUFFIXES: .S .c .lo .o .s
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
- cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps plug-ins/gpc/Makefile
+ cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gpc/Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
@@ -254,9 +261,6 @@
rm -f $(DESTDIR)$(pluginlibdir)/$$p; \
done
-.c.o:
- $(COMPILE) -c $<
-
.s.o:
$(COMPILE) -c $<
@@ -273,9 +277,6 @@
maintainer-clean-compile:
-.c.lo:
- $(LIBTOOL) --mode=compile $(COMPILE) -c $<
-
.s.lo:
$(LIBTOOL) --mode=compile $(COMPILE) -c $<
@@ -336,6 +337,21 @@
@$(NORMAL_UNINSTALL)
$(MAKE) $(AM_MAKEFLAGS) uninstall-man3
+install-gimpincludeHEADERS: $(gimpinclude_HEADERS)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(gimpincludedir)
+ @list='$(gimpinclude_HEADERS)'; for p in $$list; do \
+ if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
+ echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(gimpincludedir)/$$p"; \
+ $(INSTALL_DATA) $$d$$p $(DESTDIR)$(gimpincludedir)/$$p; \
+ done
+
+uninstall-gimpincludeHEADERS:
+ @$(NORMAL_UNINSTALL)
+ list='$(gimpinclude_HEADERS)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(gimpincludedir)/$$p; \
+ done
+
tags: TAGS
ID: $(HEADERS) $(SOURCES) $(LISP)
@@ -370,6 +386,11 @@
subdir = plug-ins/gpc
distdir: $(DISTFILES)
+ here=`cd $(top_builddir) && pwd`; \
+ top_distdir=`cd $(top_distdir) && pwd`; \
+ distdir=`cd $(distdir) && pwd`; \
+ cd $(top_srcdir) \
+ && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu plug-ins/gpc/Makefile
@for file in $(DISTFILES); do \
d=$(srcdir); \
if test -d $$d/$$file; then \
@@ -381,6 +402,37 @@
fi; \
done
+DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
+
+-include $(DEP_FILES)
+
+mostlyclean-depend:
+
+clean-depend:
+
+distclean-depend:
+ -rm -rf .deps
+
+maintainer-clean-depend:
+
+%.o: %.c
+ @echo '$(COMPILE) -c $<'; \
+ $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
+ @-cp .deps/$(*F).pp .deps/$(*F).P; \
+ tr ' ' '\012' < .deps/$(*F).pp \
+ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
+ >> .deps/$(*F).P; \
+ rm .deps/$(*F).pp
+
+%.lo: %.c
+ @echo '$(LTCOMPILE) -c $<'; \
+ $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
+ @-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
+ < .deps/$(*F).pp > .deps/$(*F).P; \
+ tr ' ' '\012' < .deps/$(*F).pp \
+ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
+ >> .deps/$(*F).P; \
+ rm -f .deps/$(*F).pp
info-am:
info: info-am
dvi-am:
@@ -392,20 +444,23 @@
install-exec-am:
install-exec: install-exec-am
-install-data-am: install-pluginlibLIBRARIES install-man
+install-data-am: install-pluginlibLIBRARIES install-man \
+ install-gimpincludeHEADERS
install-data: install-data-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
install: install-am
-uninstall-am: uninstall-pluginlibLIBRARIES uninstall-man
+uninstall-am: uninstall-pluginlibLIBRARIES uninstall-man \
+ uninstall-gimpincludeHEADERS
uninstall: uninstall-am
-all-am: Makefile $(LIBRARIES) $(MANS)
+all-am: Makefile $(LIBRARIES) $(MANS) $(HEADERS)
all-redirect: all-am
install-strip:
$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
installdirs:
- $(mkinstalldirs) $(DESTDIR)$(pluginlibdir) $(DESTDIR)$(mandir)/man3
+ $(mkinstalldirs) $(DESTDIR)$(pluginlibdir) $(DESTDIR)$(mandir)/man3 \
+ $(DESTDIR)$(gimpincludedir)
mostlyclean-generic:
@@ -418,27 +473,27 @@
maintainer-clean-generic:
mostlyclean-am: mostlyclean-pluginlibLIBRARIES mostlyclean-compile \
- mostlyclean-libtool mostlyclean-tags \
+ mostlyclean-libtool mostlyclean-tags mostlyclean-depend \
mostlyclean-generic
mostlyclean: mostlyclean-am
clean-am: clean-pluginlibLIBRARIES clean-compile clean-libtool \
- clean-tags clean-generic mostlyclean-am
+ clean-tags clean-depend clean-generic mostlyclean-am
clean: clean-am
distclean-am: distclean-pluginlibLIBRARIES distclean-compile \
- distclean-libtool distclean-tags distclean-generic \
- clean-am
+ distclean-libtool distclean-tags distclean-depend \
+ distclean-generic clean-am
-rm -f libtool
distclean: distclean-am
maintainer-clean-am: maintainer-clean-pluginlibLIBRARIES \
maintainer-clean-compile maintainer-clean-libtool \
- maintainer-clean-tags maintainer-clean-generic \
- distclean-am
+ maintainer-clean-tags maintainer-clean-depend \
+ maintainer-clean-generic distclean-am
@echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild."
@@ -450,13 +505,15 @@
mostlyclean-compile distclean-compile clean-compile \
maintainer-clean-compile mostlyclean-libtool distclean-libtool \
clean-libtool maintainer-clean-libtool install-man3 uninstall-man3 \
-install-man uninstall-man tags mostlyclean-tags distclean-tags \
-clean-tags maintainer-clean-tags distdir info-am info dvi-am dvi check \
-check-am installcheck-am installcheck install-exec-am install-exec \
-install-data-am install-data install-am install uninstall-am uninstall \
-all-redirect all-am all installdirs mostlyclean-generic \
-distclean-generic clean-generic maintainer-clean-generic clean \
-mostlyclean distclean maintainer-clean
+install-man uninstall-man uninstall-gimpincludeHEADERS \
+install-gimpincludeHEADERS tags mostlyclean-tags distclean-tags \
+clean-tags maintainer-clean-tags distdir mostlyclean-depend \
+distclean-depend clean-depend maintainer-clean-depend info-am info \
+dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
+install-exec install-data-am install-data install-am install \
+uninstall-am uninstall all-redirect all-am all installdirs \
+mostlyclean-generic distclean-generic clean-generic \
+maintainer-clean-generic clean mostlyclean distclean maintainer-clean
.PHONY: files

View file

@ -1,5 +1,5 @@
--- plug-ins/plugindetails/plugindetails.c.orig Sat Mar 27 07:53:38 1999
+++ plug-ins/plugindetails/plugindetails.c Sat May 22 21:24:31 1999
--- plug-ins/common/plugindetails.c.orig Sat Mar 27 07:53:38 1999
+++ plug-ins/common/plugindetails.c Sat May 22 21:24:31 1999
@@ -25,6 +25,7 @@
#include <stdio.h>
#include <string.h>

View file

@ -1,20 +1,16 @@
--- gimptool.in.orig Sat Feb 20 19:48:58 1999
+++ gimptool.in Sat Feb 20 19:49:37 1999
@@ -198,7 +198,7 @@
| --install-script | --install-admin-script)
--- gimptool.in.orig Wed Aug 25 18:49:22 1999
+++ gimptool.in Tue Oct 12 13:31:37 1999
@@ -209,11 +209,11 @@
| --uninstall-script | --uninstall-admin-script )
case $1 in
--install-bin)
--*install-bin)
- install_cmd="@INSTALL_PROGRAM@"
+ install_cmd="@INSTALL_SCRIPT@"
install_dir="$HOME/@gimpdir@/plug-ins"
;;
--install-bin-strip)
@@ -206,7 +206,7 @@
- install_cmd="@INSTALL_PROGRAM@ -s"
+ install_cmd="@INSTALL_SCRIPT@ -s"
install_dir="$HOME/@gimpdir@/plug-ins"
;;
--install-admin-bin)
- install_cmd="@INSTALL_PROGRAM@"
+ install_cmd="@INSTALL_SCRIPT@"
install_dir="$plug_in_dir/plug-ins"
;;
--install-admin-bin-strip)
--*install-admin-bin)

View file

@ -1,6 +1,6 @@
--- configure.orig Tue May 4 06:06:39 1999
+++ configure Sat May 22 21:39:37 1999
@@ -3538,7 +3538,10 @@
--- configure.orig Wed Oct 6 14:00:22 1999
+++ configure Tue Oct 12 13:37:31 1999
@@ -3471,7 +3471,11 @@
cat conftest.$ac_ext >&5
rm -rf conftest*
CATOBJEXT=.mo
@ -9,10 +9,11 @@
+ INTLDEPS='-lintl'
+ INTLLIBS=$INTLDEPS
+ LIBS=`echo $LIBS | sed -e 's/-lintl//'`
+
fi
rm -f conftest*
INSTOBJEXT=.mo
@@ -7165,7 +7168,7 @@
@@ -7108,7 +7112,7 @@
fi
gimpdatadir=$datadir/gimp
@ -21,14 +22,14 @@
localedir='${prefix}/${DATADIRNAME}/locale'
brushdata=`ls -1 $srcdir/data/brushes | grep -v Makefile`
@@ -8746,10 +8749,6 @@
*) # Relative path.
ac_sub_cache_file="$ac_dots$cache_file" ;;
esac
- case "$ac_given_INSTALL" in
- [/$]*) INSTALL="$ac_given_INSTALL" ;;
- *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
- esac
@@ -8513,10 +8517,6 @@
top_srcdir="$ac_dots$ac_given_srcdir" ;;
esac
echo "running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir"
# The eval makes quoting arguments work.
- case "$ac_given_INSTALL" in
- [/$]*) INSTALL="$ac_given_INSTALL" ;;
- *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
- esac
echo creating "$ac_file"
rm -f "$ac_file"

View file

@ -9,16 +9,19 @@ include/gck/gckmath.h
include/gck/gcktypes.h
include/gck/gckui.h
include/gck/gckvector.h
include/gpc.h
include/libgimp/color_display.h
include/libgimp/color_selector.h
include/libgimp/gimp.h
include/libgimp/gimpchainbutton.h
include/libgimp/gimpenums.h
include/libgimp/gimpenv.h
include/libgimp/gimpexport.h
include/libgimp/gimpfeatures.h
include/libgimp/gimpfileselection.h
include/libgimp/gimpintl.h
include/libgimp/gimplimits.h
include/libgimp/gimpmatrix.h
include/libgimp/gimpmath.h
include/libgimp/gimpmenu.h
include/libgimp/gimpmodule.h
include/libgimp/gimppatheditor.h
@ -30,23 +33,26 @@ include/libgimp/gserialize.h
include/libgimp/parasite.h
include/libgimp/parasiteF.h
include/libgimp/parasiteP.h
include/megawidget.h
include/libgimp/parasiteio.h
lib/libgck.a
lib/libgck.so
lib/libgck.so.5
lib/libgck.so.10
lib/libgimp.a
lib/libgimp.so
lib/libgimp.so.5
lib/libgimp.so.10
lib/libgimpui.a
lib/libgimpui.so
lib/libgimpui.so.5
lib/libgimpui.so.10
lib/libgpc.a
lib/libmegawidget.a
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
libexec/gimp/1.1/modules/libcdisplay_gamma.so
libexec/gimp/1.1/modules/libcolorsel_gtk.so
libexec/gimp/1.1/modules/libcolorsel_triangle.so
libexec/gimp/1.1/modules/libcolorsel_water.so
libexec/gimp/1.1/plug-ins/AlienMap
libexec/gimp/1.1/plug-ins/AlienMap2
libexec/gimp/1.1/plug-ins/CEL
libexec/gimp/1.1/plug-ins/CML_explorer
libexec/gimp/1.1/plug-ins/FractalExplorer
@ -68,9 +74,12 @@ libexec/gimp/1.1/plug-ins/bz2
libexec/gimp/1.1/plug-ins/c_astretch
libexec/gimp/1.1/plug-ins/checkerboard
libexec/gimp/1.1/plug-ins/colorify
libexec/gimp/1.1/plug-ins/color_enhance
libexec/gimp/1.1/plug-ins/compose
libexec/gimp/1.1/plug-ins/convmatrix
libexec/gimp/1.1/plug-ins/csource
libexec/gimp/1.1/plug-ins/cubism
libexec/gimp/1.1/plug-ins/curve_bend
libexec/gimp/1.1/plug-ins/dbbrowser
libexec/gimp/1.1/plug-ins/decompose
libexec/gimp/1.1/plug-ins/deinterlace
@ -98,11 +107,14 @@ libexec/gimp/1.1/plug-ins/gbr
libexec/gimp/1.1/plug-ins/gdyntext
libexec/gimp/1.1/plug-ins/gee
libexec/gimp/1.1/plug-ins/gfig
libexec/gimp/1.1/plug-ins/gflare
libexec/gimp/1.1/plug-ins/gfli
libexec/gimp/1.1/plug-ins/gicon
libexec/gimp/1.1/plug-ins/gif
libexec/gimp/1.1/plug-ins/gifload
libexec/gimp/1.1/plug-ins/gimpressionist
libexec/gimp/1.1/plug-ins/glasstile
libexec/gimp/1.1/plug-ins/gpb
libexec/gimp/1.1/plug-ins/gqbist
libexec/gimp/1.1/plug-ins/gradmap
libexec/gimp/1.1/plug-ins/grid
@ -114,6 +126,7 @@ libexec/gimp/1.1/plug-ins/hot
libexec/gimp/1.1/plug-ins/hrz
libexec/gimp/1.1/plug-ins/ifscompose
libexec/gimp/1.1/plug-ins/illusion
libexec/gimp/1.1/plug-ins/imagemap
libexec/gimp/1.1/plug-ins/iwarp
libexec/gimp/1.1/plug-ins/jigsaw
libexec/gimp/1.1/plug-ins/jpeg
@ -133,7 +146,6 @@ libexec/gimp/1.1/plug-ins/normalize
libexec/gimp/1.1/plug-ins/nova
libexec/gimp/1.1/plug-ins/oilify
libexec/gimp/1.1/plug-ins/pagecurl
libexec/gimp/1.1/plug-ins/palette
libexec/gimp/1.1/plug-ins/papertile
libexec/gimp/1.1/plug-ins/pat
libexec/gimp/1.1/plug-ins/pcx
@ -147,14 +159,18 @@ libexec/gimp/1.1/plug-ins/polar
libexec/gimp/1.1/plug-ins/print
libexec/gimp/1.1/plug-ins/ps
libexec/gimp/1.1/plug-ins/psd
libexec/gimp/1.1/plug-ins/psp
libexec/gimp/1.1/plug-ins/randomize
libexec/gimp/1.1/plug-ins/rcm
libexec/gimp/1.1/plug-ins/ripple
libexec/gimp/1.1/plug-ins/rotate
libexec/gimp/1.1/plug-ins/rotators
libexec/gimp/1.1/plug-ins/sample_colorize
libexec/gimp/1.1/plug-ins/scatter_hsv
libexec/gimp/1.1/plug-ins/screenshot
libexec/gimp/1.1/plug-ins/script-fu
libexec/gimp/1.1/plug-ins/sel2path
libexec/gimp/1.1/plug-ins/sel_gauss
libexec/gimp/1.1/plug-ins/semiflatten
libexec/gimp/1.1/plug-ins/sgi
libexec/gimp/1.1/plug-ins/sharpen
@ -164,6 +180,7 @@ libexec/gimp/1.1/plug-ins/smooth_palette
libexec/gimp/1.1/plug-ins/snoise
libexec/gimp/1.1/plug-ins/sobel
libexec/gimp/1.1/plug-ins/sparkle
libexec/gimp/1.1/plug-ins/spheredesigner
libexec/gimp/1.1/plug-ins/spread
libexec/gimp/1.1/plug-ins/struc
libexec/gimp/1.1/plug-ins/sunras
@ -173,11 +190,12 @@ libexec/gimp/1.1/plug-ins/tiff
libexec/gimp/1.1/plug-ins/tile
libexec/gimp/1.1/plug-ins/tileit
libexec/gimp/1.1/plug-ins/tiler
libexec/gimp/1.1/plug-ins/unsharp
libexec/gimp/1.1/plug-ins/url
libexec/gimp/1.1/plug-ins/video
libexec/gimp/1.1/plug-ins/vinvert
libexec/gimp/1.1/plug-ins/vpropagate
libexec/gimp/1.1/plug-ins/waterselect
libexec/gimp/1.1/plug-ins/warp
libexec/gimp/1.1/plug-ins/waves
libexec/gimp/1.1/plug-ins/webbrowser
libexec/gimp/1.1/plug-ins/whirlpinch
@ -226,9 +244,10 @@ share/gimp/brushes/dunes.gbr
share/gimp/brushes/galaxy.gbr
share/gimp/brushes/galaxy_big.gbr
share/gimp/brushes/galaxy_small.gbr
share/gimp/brushes/pepper.gpb
share/gimp/brushes/pixel.gbr
share/gimp/brushes/round1.vbr
share/gimp/brushes/thegimp.gbr
share/gimp/brushes/vine.gih
share/gimp/brushes/xcf.gbr
share/gimp/fractalexplorer/Asteroid_Field
share/gimp/fractalexplorer/Bar_Code_Label
@ -273,10 +292,107 @@ 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/Distant_Sun
share/gimp/gflare/Default
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/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/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/gimp1_1_splash.ppm
share/gimp/gimp_logo.ppm
share/gimp/gimp_splash.ppm
share/gimp/gimp_tips.txt
share/gimp/gimprc
share/gimp/gimprc_user
share/gimp/gradients/Abstract_1
@ -357,6 +473,370 @@ share/gimp/gradients/Wood_1
share/gimp/gradients/Wood_2
share/gimp/gradients/Yellow_Contrast
share/gimp/gradients/Yellow_Orange
share/gimp/help/C/dialogs/layers/add_mask.html
share/gimp/help/C/dialogs/layers/apply_mask.html
share/gimp/help/C/dialogs/layers/edit_layer_attributes.html
share/gimp/help/C/dialogs/layers/index.html
share/gimp/help/C/dialogs/layers/layers.html
share/gimp/help/C/dialogs/layers/merge_visible_layers.html
share/gimp/help/C/dialogs/layers/new_layer.html
share/gimp/help/C/dialogs/layers/resize_layer.html
share/gimp/help/C/dialogs/layers/scale_layer.html
share/gimp/help/C/dialogs/channels/channels.html
share/gimp/help/C/dialogs/channels/edit_channel_attributes.html
share/gimp/help/C/dialogs/channels/index.html
share/gimp/help/C/dialogs/channels/new_channel.html
share/gimp/help/C/dialogs/paths/export_path.html
share/gimp/help/C/dialogs/paths/import_path.html
share/gimp/help/C/dialogs/paths/index.html
share/gimp/help/C/dialogs/paths/paths.html
share/gimp/help/C/dialogs/paths/rename_path.html
share/gimp/help/C/dialogs/palette_editor/import_palette.html
share/gimp/help/C/dialogs/palette_editor/index.html
share/gimp/help/C/dialogs/palette_editor/merge_palette.html
share/gimp/help/C/dialogs/palette_editor/new_palette.html
share/gimp/help/C/dialogs/palette_editor/palette_editor.html
share/gimp/help/C/dialogs/gradient_editor/copy_gradient.html
share/gimp/help/C/dialogs/gradient_editor/delete_gradient.html
share/gimp/help/C/dialogs/gradient_editor/gradient_editor.html
share/gimp/help/C/dialogs/gradient_editor/index.html
share/gimp/help/C/dialogs/gradient_editor/new_gradient.html
share/gimp/help/C/dialogs/gradient_editor/rename_gradient.html
share/gimp/help/C/dialogs/gradient_editor/replicate_segment.html
share/gimp/help/C/dialogs/gradient_editor/save_as_pov_ray.html
share/gimp/help/C/dialogs/gradient_editor/split_segments_uniformly.html
share/gimp/help/C/dialogs/display_filters/display_filters.html
share/gimp/help/C/dialogs/display_filters/gamma.html
share/gimp/help/C/dialogs/display_filters/index.html
share/gimp/help/C/dialogs/color_selectors/built_in.html
share/gimp/help/C/dialogs/color_selectors/gtk.html
share/gimp/help/C/dialogs/color_selectors/index.html
share/gimp/help/C/dialogs/color_selectors/triangle.html
share/gimp/help/C/dialogs/color_selectors/watercolor.html
share/gimp/help/C/dialogs/preferences/directories.html
share/gimp/help/C/dialogs/preferences/display.html
share/gimp/help/C/dialogs/preferences/environment.html
share/gimp/help/C/dialogs/preferences/index.html
share/gimp/help/C/dialogs/preferences/interface.html
share/gimp/help/C/dialogs/preferences/monitor.html
share/gimp/help/C/dialogs/preferences/new_file.html
share/gimp/help/C/dialogs/preferences/preferences.html
share/gimp/help/C/dialogs/preferences/session.html
share/gimp/help/C/dialogs/about.html
share/gimp/help/C/dialogs/border_selection.html
share/gimp/help/C/dialogs/brush_editor.html
share/gimp/help/C/dialogs/brush_selection.html
share/gimp/help/C/dialogs/convert_to_indexed.html
share/gimp/help/C/dialogs/copy_named.html
share/gimp/help/C/dialogs/cut_named.html
share/gimp/help/C/dialogs/device_status.html
share/gimp/help/C/dialogs/document_index.html
share/gimp/help/C/dialogs/edit_qmask_attributes.html
share/gimp/help/C/dialogs/error_console.html
share/gimp/help/C/dialogs/feather_selection.html
share/gimp/help/C/dialogs/file_new.html
share/gimp/help/C/dialogs/file_open.html
share/gimp/help/C/dialogs/file_save.html
share/gimp/help/C/dialogs/gradient_selection.html
share/gimp/help/C/dialogs/grow_selection.html
share/gimp/help/C/dialogs/help.html
share/gimp/help/C/dialogs/index.html
share/gimp/help/C/dialogs/indexed_palette.html
share/gimp/help/C/dialogs/info_window.html
share/gimp/help/C/dialogs/input_devices.html
share/gimp/help/C/dialogs/layers_and_channels.html
share/gimp/help/C/dialogs/module_browser.html
share/gimp/help/C/dialogs/navigation_window.html
share/gimp/help/C/dialogs/offset.html
share/gimp/help/C/dialogs/palette_selection.html
share/gimp/help/C/dialogs/paste_named.html
share/gimp/help/C/dialogs/pattern_selection.html
share/gimp/help/C/dialogs/really_close.html
share/gimp/help/C/dialogs/really_quit.html
share/gimp/help/C/dialogs/resize_image.html
share/gimp/help/C/dialogs/scale_image.html
share/gimp/help/C/dialogs/shrink_selection.html
share/gimp/help/C/dialogs/tip_of_the_day.html
share/gimp/help/C/dialogs/tool_options.html
share/gimp/help/C/dialogs/undo_history.html
share/gimp/help/C/tools/airbrush.html
share/gimp/help/C/tools/bezier_select.html
share/gimp/help/C/tools/blend.html
share/gimp/help/C/tools/brightness_contrast.html
share/gimp/help/C/tools/bucket_fill.html
share/gimp/help/C/tools/by_color_select.html
share/gimp/help/C/tools/clone.html
share/gimp/help/C/tools/color_balance.html
share/gimp/help/C/tools/color_picker.html
share/gimp/help/C/tools/convolve.html
share/gimp/help/C/tools/crop.html
share/gimp/help/C/tools/curves.html
share/gimp/help/C/tools/dodgeburn.html
share/gimp/help/C/tools/ellipse_select.html
share/gimp/help/C/tools/eraser.html
share/gimp/help/C/tools/flip.html
share/gimp/help/C/tools/free_select.html
share/gimp/help/C/tools/fuzzy_select.html
share/gimp/help/C/tools/histogram.html
share/gimp/help/C/tools/hue_saturation.html
share/gimp/help/C/tools/index.html
share/gimp/help/C/tools/ink.html
share/gimp/help/C/tools/intelligent_scissors.html
share/gimp/help/C/tools/levels.html
share/gimp/help/C/tools/magnify.html
share/gimp/help/C/tools/measure.html
share/gimp/help/C/tools/move.html
share/gimp/help/C/tools/paintbrush.html
share/gimp/help/C/tools/path.html
share/gimp/help/C/tools/pencil.html
share/gimp/help/C/tools/posterize.html
share/gimp/help/C/tools/rect_select.html
share/gimp/help/C/tools/smudge.html
share/gimp/help/C/tools/text.html
share/gimp/help/C/tools/threshold.html
share/gimp/help/C/tools/transform.html
share/gimp/help/C/tools/transform_perspective.html
share/gimp/help/C/tools/transform_rotate.html
share/gimp/help/C/tools/transform_scale.html
share/gimp/help/C/tools/transform_shear.html
share/gimp/help/C/tools/xinput_airbrush.html
share/gimp/help/C/layers/stack/index.html
share/gimp/help/C/layers/stack/stack.html
share/gimp/help/C/layers/add_alpha_channel.html
share/gimp/help/C/layers/alpha_to_selection.html
share/gimp/help/C/layers/anchor_layer.html
share/gimp/help/C/layers/delete_layer.html
share/gimp/help/C/layers/duplicate_layer.html
share/gimp/help/C/layers/flatten_image.html
share/gimp/help/C/layers/index.html
share/gimp/help/C/layers/mask_to_selection.html
share/gimp/help/C/layers/merge_down.html
share/gimp/help/C/channels/channel_to_selection.html
share/gimp/help/C/channels/channels.html
share/gimp/help/C/channels/delete_channel.html
share/gimp/help/C/channels/duplicate_channel.html
share/gimp/help/C/channels/index.html
share/gimp/help/C/channels/lower_channel.html
share/gimp/help/C/channels/raise_channel.html
share/gimp/help/C/paths/copy_path.html
share/gimp/help/C/paths/delete_path.html
share/gimp/help/C/paths/duplicate_path.html
share/gimp/help/C/paths/index.html
share/gimp/help/C/paths/new_path.html
share/gimp/help/C/paths/paste_path.html
share/gimp/help/C/paths/path_to_selection.html
share/gimp/help/C/paths/stroke_path.html
share/gimp/help/C/toolbox/index.html
share/gimp/help/C/toolbox/toolbox.html
share/gimp/help/C/image/edit/clear.html
share/gimp/help/C/image/edit/copy.html
share/gimp/help/C/image/edit/cut.html
share/gimp/help/C/image/edit/fill.html
share/gimp/help/C/image/edit/index.html
share/gimp/help/C/image/edit/paste.html
share/gimp/help/C/image/edit/paste_as_new.html
share/gimp/help/C/image/edit/paste_into.html
share/gimp/help/C/image/edit/redo.html
share/gimp/help/C/image/edit/stroke.html
share/gimp/help/C/image/edit/undo.html
share/gimp/help/C/image/select/all.html
share/gimp/help/C/image/select/float.html
share/gimp/help/C/image/select/index.html
share/gimp/help/C/image/select/invert.html
share/gimp/help/C/image/select/none.html
share/gimp/help/C/image/select/save_to_channel.html
share/gimp/help/C/image/select/sharpen.html
share/gimp/help/C/image/view/dot_for_dot.html
share/gimp/help/C/image/view/index.html
share/gimp/help/C/image/view/new_view.html
share/gimp/help/C/image/view/shrink_wrap.html
share/gimp/help/C/image/view/snap_to_guides.html
share/gimp/help/C/image/view/toggle_guides.html
share/gimp/help/C/image/view/toggle_rulers.html
share/gimp/help/C/image/view/toggle_selection.html
share/gimp/help/C/image/view/toggle_statusbar.html
share/gimp/help/C/image/view/zoom.html
share/gimp/help/C/image/image/transforms/index.html
share/gimp/help/C/image/image/colors/desaturate.html
share/gimp/help/C/image/image/colors/equalize.html
share/gimp/help/C/image/image/colors/index.html
share/gimp/help/C/image/image/colors/invert.html
share/gimp/help/C/image/image/convert_to_grayscale.html
share/gimp/help/C/image/image/convert_to_rgb.html
share/gimp/help/C/image/image/duplicate.html
share/gimp/help/C/image/image/index.html
share/gimp/help/C/image/image_window.html
share/gimp/help/C/image/index.html
share/gimp/help/C/open/index.html
share/gimp/help/C/open/open_by_extension.html
share/gimp/help/C/save/index.html
share/gimp/help/C/save/save_by_extension.html
share/gimp/help/C/filters/alienmap.html
share/gimp/help/C/filters/alienmap2.html
share/gimp/help/C/filters/align_layers.html
share/gimp/help/C/filters/animationplay.html
share/gimp/help/C/filters/animoptimize.html
share/gimp/help/C/filters/apply_lens.html
share/gimp/help/C/filters/autocrop.html
share/gimp/help/C/filters/autostretch_hsv.html
share/gimp/help/C/filters/blinds.html
share/gimp/help/C/filters/blur.html
share/gimp/help/C/filters/bmp.html
share/gimp/help/C/filters/borderaverage.html
share/gimp/help/C/filters/bumpmap.html
share/gimp/help/C/filters/bz2.html
share/gimp/help/C/filters/c_astretch.html
share/gimp/help/C/filters/cel.html
share/gimp/help/C/filters/checkerboard.html
share/gimp/help/C/filters/cml_explorer.html
share/gimp/help/C/filters/color_enhance.html
share/gimp/help/C/filters/fp.html
share/gimp/help/C/filters/colorify.html
share/gimp/help/C/filters/compose.html
share/gimp/help/C/filters/convmatrix.html
share/gimp/help/C/filters/csource.html
share/gimp/help/C/filters/cubism.html
share/gimp/help/C/filters/curve_bend.html
share/gimp/help/C/filters/dbbrowser.html
share/gimp/help/C/filters/decompose.html
share/gimp/help/C/filters/deinterlace.html
share/gimp/help/C/filters/depthmerge.html
share/gimp/help/C/filters/despeckle.html
share/gimp/help/C/filters/destripe.html
share/gimp/help/C/filters/diffraction.html
share/gimp/help/C/filters/displace.html
share/gimp/help/C/filters/edge.html
share/gimp/help/C/filters/emboss.html
share/gimp/help/C/filters/engrave.html
share/gimp/help/C/filters/exchange.html
share/gimp/help/C/filters/faxg3.html
share/gimp/help/C/filters/film.html
share/gimp/help/C/filters/fits.html
share/gimp/help/C/filters/flame.html
share/gimp/help/C/filters/flarefx.html
share/gimp/help/C/filters/fractalexplorer.html
share/gimp/help/C/filters/fractaltrace.html
share/gimp/help/C/filters/gap_filter.html
share/gimp/help/C/filters/gap_plugins.html
share/gimp/help/C/filters/gauss_iir.html
share/gimp/help/C/filters/gauss_rle.html
share/gimp/help/C/filters/gbr.html
share/gimp/help/C/filters/gdyntext.html
share/gimp/help/C/filters/gee.html
share/gimp/help/C/filters/gfig.html
share/gimp/help/C/filters/gflare.html
share/gimp/help/C/filters/gfli.html
share/gimp/help/C/filters/gicon.html
share/gimp/help/C/filters/gif.html
share/gimp/help/C/filters/gifload.html
share/gimp/help/C/filters/gimpressionist.html
share/gimp/help/C/filters/glasstile.html
share/gimp/help/C/filters/gpb.html
share/gimp/help/C/filters/gqbist.html
share/gimp/help/C/filters/gradmap.html
share/gimp/help/C/filters/grid.html
share/gimp/help/C/filters/gtm.html
share/gimp/help/C/filters/guillotine.html
share/gimp/help/C/filters/gz.html
share/gimp/help/C/filters/header.html
share/gimp/help/C/filters/hot.html
share/gimp/help/C/filters/hrz.html
share/gimp/help/C/filters/ifscompose.html
share/gimp/help/C/filters/illusion.html
share/gimp/help/C/filters/imagemap.html
share/gimp/help/C/filters/index.html
share/gimp/help/C/filters/iwarp.html
share/gimp/help/C/filters/jigsaw.html
share/gimp/help/C/filters/jpeg.html
share/gimp/help/C/filters/laplace.html
share/gimp/help/C/filters/lic.html
share/gimp/help/C/filters/lighting.html
share/gimp/help/C/filters/mail.html
share/gimp/help/C/filters/mapcolor.html
share/gimp/help/C/filters/mapobject.html
share/gimp/help/C/filters/max_rgb.html
share/gimp/help/C/filters/maze.html
share/gimp/help/C/filters/mblur.html
share/gimp/help/C/filters/mosaic.html
share/gimp/help/C/filters/nlfilt.html
share/gimp/help/C/filters/newsprint.html
share/gimp/help/C/filters/noisify.html
share/gimp/help/C/filters/normalize.html
share/gimp/help/C/filters/nova.html
share/gimp/help/C/filters/oilify.html
share/gimp/help/C/filters/pagecurl.html
share/gimp/help/C/filters/papertile.html
share/gimp/help/C/filters/pat.html
share/gimp/help/C/filters/pcx.html
share/gimp/help/C/filters/pix.html
share/gimp/help/C/filters/pixelize.html
share/gimp/help/C/filters/plasma.html
share/gimp/help/C/filters/plugindetails.html
share/gimp/help/C/filters/png.html
share/gimp/help/C/filters/pnm.html
share/gimp/help/C/filters/polar.html
share/gimp/help/C/filters/print.html
share/gimp/help/C/filters/ps.html
share/gimp/help/C/filters/psd.html
share/gimp/help/C/filters/psp.html
share/gimp/help/C/filters/randomize.html
share/gimp/help/C/filters/rcm.html
share/gimp/help/C/filters/repeat_last.html
share/gimp/help/C/filters/reshow_last.html
share/gimp/help/C/filters/ripple.html
share/gimp/help/C/filters/rotate.html
share/gimp/help/C/filters/rotators.html
share/gimp/help/C/filters/sample_colorize.html
share/gimp/help/C/filters/scatter_hsv.html
share/gimp/help/C/filters/screenshot.html
share/gimp/help/C/filters/script-fu.html
share/gimp/help/C/filters/sel2path.html
share/gimp/help/C/filters/sel_gauss.html
share/gimp/help/C/filters/semiflatten.html
share/gimp/help/C/filters/sgi.html
share/gimp/help/C/filters/sharpen.html
share/gimp/help/C/filters/shift.html
share/gimp/help/C/filters/sinus.html
share/gimp/help/C/filters/smooth_palette.html
share/gimp/help/C/filters/snoise.html
share/gimp/help/C/filters/sobel.html
share/gimp/help/C/filters/sparkle.html
share/gimp/help/C/filters/spheredesigner.html
share/gimp/help/C/filters/spread.html
share/gimp/help/C/filters/struc.html
share/gimp/help/C/filters/sunras.html
share/gimp/help/C/filters/tga.html
share/gimp/help/C/filters/threshold_alpha.html
share/gimp/help/C/filters/tiff.html
share/gimp/help/C/filters/tile.html
share/gimp/help/C/filters/tileit.html
share/gimp/help/C/filters/tiler.html
share/gimp/help/C/filters/unsharp.html
share/gimp/help/C/filters/url.html
share/gimp/help/C/filters/video.html
share/gimp/help/C/filters/vinvert.html
share/gimp/help/C/filters/vpropagate.html
share/gimp/help/C/filters/warp.html
share/gimp/help/C/filters/waves.html
share/gimp/help/C/filters/webbrowser.html
share/gimp/help/C/filters/whirlpinch.html
share/gimp/help/C/filters/wind.html
share/gimp/help/C/filters/wmf.html
share/gimp/help/C/filters/xbm.html
share/gimp/help/C/filters/xjt.html
share/gimp/help/C/filters/xpm.html
share/gimp/help/C/filters/xwd.html
share/gimp/help/C/filters/zealouscrop.html
share/gimp/help/C/file/close.html
share/gimp/help/C/file/index.html
share/gimp/help/C/file/last_opened.html
share/gimp/help/C/file/quit.html
share/gimp/help/C/file/revert.html
share/gimp/help/C/contents.html
share/gimp/help/C/index.html
share/gimp/help/C/welcome.html
share/gimp/help/images/eek.png
share/gimp/help/images/wilber.png
share/gimp/gtkrc
share/gimp/gtkrc.forest2
share/gimp/palettes/Bears
@ -393,6 +873,8 @@ share/gimp/palettes/Reds
share/gimp/palettes/Reds_And_Purples
share/gimp/palettes/Royal
share/gimp/palettes/Topographic
share/gimp/palettes/Visibone
share/gimp/palettes/Visibone2
share/gimp/palettes/Volcano
share/gimp/palettes/Warm_Colors
share/gimp/palettes/Web
@ -551,6 +1033,12 @@ 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/tips/gimp_tips.txt
share/gimp/tips/gimp_tips.de.txt
share/gimp/tips/gimp_tips.ja.txt
share/gimp/tips/gimp_tips.it.txt
share/gimp/tips/gimp_conseils.fr.txt
share/gimp/tips/gimp_tips.ru.txt
share/gimp/unitrc
share/gimp/user_install
share/locale/de/LC_MESSAGES/gimp.mo
@ -564,6 +1052,41 @@ share/locale/nl/LC_MESSAGES/gimp.mo
share/locale/pl/LC_MESSAGES/gimp.mo
share/locale/ru/LC_MESSAGES/gimp.mo
share/locale/sv/LC_MESSAGES/gimp.mo
@dirrm share/gimp/gflare
@dirrm share/gimp/gimpressionist/Brushes
@dirrm share/gimp/gimpressionist/Paper
@dirrm share/gimp/gimpressionist/Presets
@dirrm share/gimp/gimpressionist
@dirrm share/gimp/tips
@dirrm share/gimp/help/C/dialogs/layers
@dirrm share/gimp/help/C/dialogs/channels
@dirrm share/gimp/help/C/dialogs/paths
@dirrm share/gimp/help/C/dialogs/palette_editor
@dirrm share/gimp/help/C/dialogs/gradient_editor
@dirrm share/gimp/help/C/dialogs/display_filters
@dirrm share/gimp/help/C/dialogs/color_selectors
@dirrm share/gimp/help/C/dialogs/preferences
@dirrm share/gimp/help/C/dialogs
@dirrm share/gimp/help/C/tools
@dirrm share/gimp/help/C/layers/stack
@dirrm share/gimp/help/C/layers
@dirrm share/gimp/help/C/channels
@dirrm share/gimp/help/C/paths
@dirrm share/gimp/help/C/toolbox
@dirrm share/gimp/help/C/image/edit
@dirrm share/gimp/help/C/image/select
@dirrm share/gimp/help/C/image/view
@dirrm share/gimp/help/C/image/image/transforms
@dirrm share/gimp/help/C/image/image/colors
@dirrm share/gimp/help/C/image/image
@dirrm share/gimp/help/C/image
@dirrm share/gimp/help/C/open
@dirrm share/gimp/help/C/save
@dirrm share/gimp/help/C/filters
@dirrm share/gimp/help/C/file
@dirrm share/gimp/help/images
@dirrm share/gimp/help/C
@dirrm share/gimp/help
@dirrm share/gimp/scripts
@dirrm share/gimp/patterns
@dirrm share/gimp/palettes

View file

@ -1,16 +1,16 @@
# New ports collection makefile for: Gimp
# Version required: 1.1.5
# Version required: 1.1.10
# Date created: Mon Nov 18 21:28:43 CST 1996
# Whom: erich@FreeBSD.org
#
# $FreeBSD$
#
DISTNAME= gimp-1.1.5
DISTNAME= gimp-1.1.10
CATEGORIES= graphics
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.5/ \
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.5/ \
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.5/
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.10/ \
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.10/ \
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.10/
MAINTAINER= erich@FreeBSD.org
@ -25,6 +25,7 @@ LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_GMAKE= yes
USE_LIBTOOL= yes

View file

@ -1 +1 @@
MD5 (gimp-1.1.5.tar.gz) = 048e20d9c639e9017292dd5b971d477b
MD5 (gimp-1.1.10.tar.bz2) = a5bf11f5bd1050d9d0ed1fc941f4302c

View file

@ -1,14 +1,15 @@
--- app/main.c.orig Mon Sep 21 17:15:18 1998
+++ app/main.c Tue Sep 29 22:24:17 1998
@@ -16,6 +16,7 @@
--- app/main.c.orig Wed Oct 6 13:55:38 1999
+++ app/main.c Tue Oct 12 13:23:44 1999
@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "config.h"
-
+#include <floatingpoint.h>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
@@ -94,6 +95,9 @@
@@ -117,6 +117,9 @@
/* Initialize variables */
prog_name = argv[0];
@ -16,5 +17,5 @@
+ /* Ignore floating point exceptions */
+ fpsetmask(0);
/* Initialize Gtk toolkit */
gtk_set_locale ();
/* Initialize i18n support */

View file

@ -1,5 +1,5 @@
--- plug-ins/url/url.c.orig Sat May 30 15:32:36 1998
+++ plug-ins/url/url.c Sun Jun 7 10:09:34 1998
--- plug-ins/common/url.c.orig Sat May 30 15:32:36 1998
+++ plug-ins/common/url.c Sun Jun 7 10:09:34 1998
@@ -146,8 +146,8 @@
}
else if (pid == 0)

View file

@ -1,242 +0,0 @@
--- plug-ins/gpc/Makefile.am.orig Wed Nov 18 06:14:51 1998
+++ plug-ins/gpc/Makefile.am Sat Feb 20 17:31:16 1999
@@ -1,11 +1,14 @@
## Process this file with automake to produce Makefile.in
pluginlibdir = $(libdir)
+gimpincludedir = $(includedir)
pluginlib_LIBRARIES = libgpc.a
libgpc_a_SOURCES = \
- gpc.c \
+ gpc.c
+
+gimpinclude_HEADERS = \
gpc.h
INCLUDES = \
--- plug-ins/gpc/Makefile.in.orig Tue Mar 9 02:58:46 1999
+++ plug-ins/gpc/Makefile.in Mon May 10 10:17:48 1999
@@ -162,10 +162,14 @@
prefix = @prefix@
pluginlibdir = $(libdir)
+gimpincludedir = $(includedir)
pluginlib_LIBRARIES = libgpc.a
-libgpc_a_SOURCES = gpc.c gpc.h
+libgpc_a_SOURCES = gpc.c
+
+
+gimpinclude_HEADERS = gpc.h
INCLUDES = -I$(top_srcdir) $(GTK_CFLAGS) -I$(includedir)
@@ -201,6 +205,8 @@
MANS = $(man_MANS)
NROFF = nroff
+HEADERS = $(gimpinclude_HEADERS)
+
DIST_COMMON = Makefile.am Makefile.in
@@ -208,6 +214,7 @@
TAR = tar
GZIP_ENV = --best
+DEP_FILES = .deps/gpc.P
SOURCES = $(libgpc_a_SOURCES)
OBJECTS = $(libgpc_a_OBJECTS)
@@ -215,9 +222,9 @@
.SUFFIXES:
.SUFFIXES: .S .c .lo .o .s
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
- cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps plug-ins/gpc/Makefile
+ cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gpc/Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
@@ -254,9 +261,6 @@
rm -f $(DESTDIR)$(pluginlibdir)/$$p; \
done
-.c.o:
- $(COMPILE) -c $<
-
.s.o:
$(COMPILE) -c $<
@@ -273,9 +277,6 @@
maintainer-clean-compile:
-.c.lo:
- $(LIBTOOL) --mode=compile $(COMPILE) -c $<
-
.s.lo:
$(LIBTOOL) --mode=compile $(COMPILE) -c $<
@@ -336,6 +337,21 @@
@$(NORMAL_UNINSTALL)
$(MAKE) $(AM_MAKEFLAGS) uninstall-man3
+install-gimpincludeHEADERS: $(gimpinclude_HEADERS)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(gimpincludedir)
+ @list='$(gimpinclude_HEADERS)'; for p in $$list; do \
+ if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
+ echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(gimpincludedir)/$$p"; \
+ $(INSTALL_DATA) $$d$$p $(DESTDIR)$(gimpincludedir)/$$p; \
+ done
+
+uninstall-gimpincludeHEADERS:
+ @$(NORMAL_UNINSTALL)
+ list='$(gimpinclude_HEADERS)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(gimpincludedir)/$$p; \
+ done
+
tags: TAGS
ID: $(HEADERS) $(SOURCES) $(LISP)
@@ -370,6 +386,11 @@
subdir = plug-ins/gpc
distdir: $(DISTFILES)
+ here=`cd $(top_builddir) && pwd`; \
+ top_distdir=`cd $(top_distdir) && pwd`; \
+ distdir=`cd $(distdir) && pwd`; \
+ cd $(top_srcdir) \
+ && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu plug-ins/gpc/Makefile
@for file in $(DISTFILES); do \
d=$(srcdir); \
if test -d $$d/$$file; then \
@@ -381,6 +402,37 @@
fi; \
done
+DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
+
+-include $(DEP_FILES)
+
+mostlyclean-depend:
+
+clean-depend:
+
+distclean-depend:
+ -rm -rf .deps
+
+maintainer-clean-depend:
+
+%.o: %.c
+ @echo '$(COMPILE) -c $<'; \
+ $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
+ @-cp .deps/$(*F).pp .deps/$(*F).P; \
+ tr ' ' '\012' < .deps/$(*F).pp \
+ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
+ >> .deps/$(*F).P; \
+ rm .deps/$(*F).pp
+
+%.lo: %.c
+ @echo '$(LTCOMPILE) -c $<'; \
+ $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
+ @-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
+ < .deps/$(*F).pp > .deps/$(*F).P; \
+ tr ' ' '\012' < .deps/$(*F).pp \
+ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
+ >> .deps/$(*F).P; \
+ rm -f .deps/$(*F).pp
info-am:
info: info-am
dvi-am:
@@ -392,20 +444,23 @@
install-exec-am:
install-exec: install-exec-am
-install-data-am: install-pluginlibLIBRARIES install-man
+install-data-am: install-pluginlibLIBRARIES install-man \
+ install-gimpincludeHEADERS
install-data: install-data-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
install: install-am
-uninstall-am: uninstall-pluginlibLIBRARIES uninstall-man
+uninstall-am: uninstall-pluginlibLIBRARIES uninstall-man \
+ uninstall-gimpincludeHEADERS
uninstall: uninstall-am
-all-am: Makefile $(LIBRARIES) $(MANS)
+all-am: Makefile $(LIBRARIES) $(MANS) $(HEADERS)
all-redirect: all-am
install-strip:
$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
installdirs:
- $(mkinstalldirs) $(DESTDIR)$(pluginlibdir) $(DESTDIR)$(mandir)/man3
+ $(mkinstalldirs) $(DESTDIR)$(pluginlibdir) $(DESTDIR)$(mandir)/man3 \
+ $(DESTDIR)$(gimpincludedir)
mostlyclean-generic:
@@ -418,27 +473,27 @@
maintainer-clean-generic:
mostlyclean-am: mostlyclean-pluginlibLIBRARIES mostlyclean-compile \
- mostlyclean-libtool mostlyclean-tags \
+ mostlyclean-libtool mostlyclean-tags mostlyclean-depend \
mostlyclean-generic
mostlyclean: mostlyclean-am
clean-am: clean-pluginlibLIBRARIES clean-compile clean-libtool \
- clean-tags clean-generic mostlyclean-am
+ clean-tags clean-depend clean-generic mostlyclean-am
clean: clean-am
distclean-am: distclean-pluginlibLIBRARIES distclean-compile \
- distclean-libtool distclean-tags distclean-generic \
- clean-am
+ distclean-libtool distclean-tags distclean-depend \
+ distclean-generic clean-am
-rm -f libtool
distclean: distclean-am
maintainer-clean-am: maintainer-clean-pluginlibLIBRARIES \
maintainer-clean-compile maintainer-clean-libtool \
- maintainer-clean-tags maintainer-clean-generic \
- distclean-am
+ maintainer-clean-tags maintainer-clean-depend \
+ maintainer-clean-generic distclean-am
@echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild."
@@ -450,13 +505,15 @@
mostlyclean-compile distclean-compile clean-compile \
maintainer-clean-compile mostlyclean-libtool distclean-libtool \
clean-libtool maintainer-clean-libtool install-man3 uninstall-man3 \
-install-man uninstall-man tags mostlyclean-tags distclean-tags \
-clean-tags maintainer-clean-tags distdir info-am info dvi-am dvi check \
-check-am installcheck-am installcheck install-exec-am install-exec \
-install-data-am install-data install-am install uninstall-am uninstall \
-all-redirect all-am all installdirs mostlyclean-generic \
-distclean-generic clean-generic maintainer-clean-generic clean \
-mostlyclean distclean maintainer-clean
+install-man uninstall-man uninstall-gimpincludeHEADERS \
+install-gimpincludeHEADERS tags mostlyclean-tags distclean-tags \
+clean-tags maintainer-clean-tags distdir mostlyclean-depend \
+distclean-depend clean-depend maintainer-clean-depend info-am info \
+dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
+install-exec install-data-am install-data install-am install \
+uninstall-am uninstall all-redirect all-am all installdirs \
+mostlyclean-generic distclean-generic clean-generic \
+maintainer-clean-generic clean mostlyclean distclean maintainer-clean
.PHONY: files

View file

@ -1,5 +1,5 @@
--- plug-ins/plugindetails/plugindetails.c.orig Sat Mar 27 07:53:38 1999
+++ plug-ins/plugindetails/plugindetails.c Sat May 22 21:24:31 1999
--- plug-ins/common/plugindetails.c.orig Sat Mar 27 07:53:38 1999
+++ plug-ins/common/plugindetails.c Sat May 22 21:24:31 1999
@@ -25,6 +25,7 @@
#include <stdio.h>
#include <string.h>

View file

@ -1,20 +1,16 @@
--- gimptool.in.orig Sat Feb 20 19:48:58 1999
+++ gimptool.in Sat Feb 20 19:49:37 1999
@@ -198,7 +198,7 @@
| --install-script | --install-admin-script)
--- gimptool.in.orig Wed Aug 25 18:49:22 1999
+++ gimptool.in Tue Oct 12 13:31:37 1999
@@ -209,11 +209,11 @@
| --uninstall-script | --uninstall-admin-script )
case $1 in
--install-bin)
--*install-bin)
- install_cmd="@INSTALL_PROGRAM@"
+ install_cmd="@INSTALL_SCRIPT@"
install_dir="$HOME/@gimpdir@/plug-ins"
;;
--install-bin-strip)
@@ -206,7 +206,7 @@
- install_cmd="@INSTALL_PROGRAM@ -s"
+ install_cmd="@INSTALL_SCRIPT@ -s"
install_dir="$HOME/@gimpdir@/plug-ins"
;;
--install-admin-bin)
- install_cmd="@INSTALL_PROGRAM@"
+ install_cmd="@INSTALL_SCRIPT@"
install_dir="$plug_in_dir/plug-ins"
;;
--install-admin-bin-strip)
--*install-admin-bin)

View file

@ -1,6 +1,6 @@
--- configure.orig Tue May 4 06:06:39 1999
+++ configure Sat May 22 21:39:37 1999
@@ -3538,7 +3538,10 @@
--- configure.orig Wed Oct 6 14:00:22 1999
+++ configure Tue Oct 12 13:37:31 1999
@@ -3471,7 +3471,11 @@
cat conftest.$ac_ext >&5
rm -rf conftest*
CATOBJEXT=.mo
@ -9,10 +9,11 @@
+ INTLDEPS='-lintl'
+ INTLLIBS=$INTLDEPS
+ LIBS=`echo $LIBS | sed -e 's/-lintl//'`
+
fi
rm -f conftest*
INSTOBJEXT=.mo
@@ -7165,7 +7168,7 @@
@@ -7108,7 +7112,7 @@
fi
gimpdatadir=$datadir/gimp
@ -21,14 +22,14 @@
localedir='${prefix}/${DATADIRNAME}/locale'
brushdata=`ls -1 $srcdir/data/brushes | grep -v Makefile`
@@ -8746,10 +8749,6 @@
*) # Relative path.
ac_sub_cache_file="$ac_dots$cache_file" ;;
esac
- case "$ac_given_INSTALL" in
- [/$]*) INSTALL="$ac_given_INSTALL" ;;
- *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
- esac
@@ -8513,10 +8517,6 @@
top_srcdir="$ac_dots$ac_given_srcdir" ;;
esac
echo "running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir"
# The eval makes quoting arguments work.
- case "$ac_given_INSTALL" in
- [/$]*) INSTALL="$ac_given_INSTALL" ;;
- *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
- esac
echo creating "$ac_file"
rm -f "$ac_file"

View file

@ -9,16 +9,19 @@ include/gck/gckmath.h
include/gck/gcktypes.h
include/gck/gckui.h
include/gck/gckvector.h
include/gpc.h
include/libgimp/color_display.h
include/libgimp/color_selector.h
include/libgimp/gimp.h
include/libgimp/gimpchainbutton.h
include/libgimp/gimpenums.h
include/libgimp/gimpenv.h
include/libgimp/gimpexport.h
include/libgimp/gimpfeatures.h
include/libgimp/gimpfileselection.h
include/libgimp/gimpintl.h
include/libgimp/gimplimits.h
include/libgimp/gimpmatrix.h
include/libgimp/gimpmath.h
include/libgimp/gimpmenu.h
include/libgimp/gimpmodule.h
include/libgimp/gimppatheditor.h
@ -30,23 +33,26 @@ include/libgimp/gserialize.h
include/libgimp/parasite.h
include/libgimp/parasiteF.h
include/libgimp/parasiteP.h
include/megawidget.h
include/libgimp/parasiteio.h
lib/libgck.a
lib/libgck.so
lib/libgck.so.5
lib/libgck.so.10
lib/libgimp.a
lib/libgimp.so
lib/libgimp.so.5
lib/libgimp.so.10
lib/libgimpui.a
lib/libgimpui.so
lib/libgimpui.so.5
lib/libgimpui.so.10
lib/libgpc.a
lib/libmegawidget.a
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
libexec/gimp/1.1/modules/libcdisplay_gamma.so
libexec/gimp/1.1/modules/libcolorsel_gtk.so
libexec/gimp/1.1/modules/libcolorsel_triangle.so
libexec/gimp/1.1/modules/libcolorsel_water.so
libexec/gimp/1.1/plug-ins/AlienMap
libexec/gimp/1.1/plug-ins/AlienMap2
libexec/gimp/1.1/plug-ins/CEL
libexec/gimp/1.1/plug-ins/CML_explorer
libexec/gimp/1.1/plug-ins/FractalExplorer
@ -68,9 +74,12 @@ libexec/gimp/1.1/plug-ins/bz2
libexec/gimp/1.1/plug-ins/c_astretch
libexec/gimp/1.1/plug-ins/checkerboard
libexec/gimp/1.1/plug-ins/colorify
libexec/gimp/1.1/plug-ins/color_enhance
libexec/gimp/1.1/plug-ins/compose
libexec/gimp/1.1/plug-ins/convmatrix
libexec/gimp/1.1/plug-ins/csource
libexec/gimp/1.1/plug-ins/cubism
libexec/gimp/1.1/plug-ins/curve_bend
libexec/gimp/1.1/plug-ins/dbbrowser
libexec/gimp/1.1/plug-ins/decompose
libexec/gimp/1.1/plug-ins/deinterlace
@ -98,11 +107,14 @@ libexec/gimp/1.1/plug-ins/gbr
libexec/gimp/1.1/plug-ins/gdyntext
libexec/gimp/1.1/plug-ins/gee
libexec/gimp/1.1/plug-ins/gfig
libexec/gimp/1.1/plug-ins/gflare
libexec/gimp/1.1/plug-ins/gfli
libexec/gimp/1.1/plug-ins/gicon
libexec/gimp/1.1/plug-ins/gif
libexec/gimp/1.1/plug-ins/gifload
libexec/gimp/1.1/plug-ins/gimpressionist
libexec/gimp/1.1/plug-ins/glasstile
libexec/gimp/1.1/plug-ins/gpb
libexec/gimp/1.1/plug-ins/gqbist
libexec/gimp/1.1/plug-ins/gradmap
libexec/gimp/1.1/plug-ins/grid
@ -114,6 +126,7 @@ libexec/gimp/1.1/plug-ins/hot
libexec/gimp/1.1/plug-ins/hrz
libexec/gimp/1.1/plug-ins/ifscompose
libexec/gimp/1.1/plug-ins/illusion
libexec/gimp/1.1/plug-ins/imagemap
libexec/gimp/1.1/plug-ins/iwarp
libexec/gimp/1.1/plug-ins/jigsaw
libexec/gimp/1.1/plug-ins/jpeg
@ -133,7 +146,6 @@ libexec/gimp/1.1/plug-ins/normalize
libexec/gimp/1.1/plug-ins/nova
libexec/gimp/1.1/plug-ins/oilify
libexec/gimp/1.1/plug-ins/pagecurl
libexec/gimp/1.1/plug-ins/palette
libexec/gimp/1.1/plug-ins/papertile
libexec/gimp/1.1/plug-ins/pat
libexec/gimp/1.1/plug-ins/pcx
@ -147,14 +159,18 @@ libexec/gimp/1.1/plug-ins/polar
libexec/gimp/1.1/plug-ins/print
libexec/gimp/1.1/plug-ins/ps
libexec/gimp/1.1/plug-ins/psd
libexec/gimp/1.1/plug-ins/psp
libexec/gimp/1.1/plug-ins/randomize
libexec/gimp/1.1/plug-ins/rcm
libexec/gimp/1.1/plug-ins/ripple
libexec/gimp/1.1/plug-ins/rotate
libexec/gimp/1.1/plug-ins/rotators
libexec/gimp/1.1/plug-ins/sample_colorize
libexec/gimp/1.1/plug-ins/scatter_hsv
libexec/gimp/1.1/plug-ins/screenshot
libexec/gimp/1.1/plug-ins/script-fu
libexec/gimp/1.1/plug-ins/sel2path
libexec/gimp/1.1/plug-ins/sel_gauss
libexec/gimp/1.1/plug-ins/semiflatten
libexec/gimp/1.1/plug-ins/sgi
libexec/gimp/1.1/plug-ins/sharpen
@ -164,6 +180,7 @@ libexec/gimp/1.1/plug-ins/smooth_palette
libexec/gimp/1.1/plug-ins/snoise
libexec/gimp/1.1/plug-ins/sobel
libexec/gimp/1.1/plug-ins/sparkle
libexec/gimp/1.1/plug-ins/spheredesigner
libexec/gimp/1.1/plug-ins/spread
libexec/gimp/1.1/plug-ins/struc
libexec/gimp/1.1/plug-ins/sunras
@ -173,11 +190,12 @@ libexec/gimp/1.1/plug-ins/tiff
libexec/gimp/1.1/plug-ins/tile
libexec/gimp/1.1/plug-ins/tileit
libexec/gimp/1.1/plug-ins/tiler
libexec/gimp/1.1/plug-ins/unsharp
libexec/gimp/1.1/plug-ins/url
libexec/gimp/1.1/plug-ins/video
libexec/gimp/1.1/plug-ins/vinvert
libexec/gimp/1.1/plug-ins/vpropagate
libexec/gimp/1.1/plug-ins/waterselect
libexec/gimp/1.1/plug-ins/warp
libexec/gimp/1.1/plug-ins/waves
libexec/gimp/1.1/plug-ins/webbrowser
libexec/gimp/1.1/plug-ins/whirlpinch
@ -226,9 +244,10 @@ share/gimp/brushes/dunes.gbr
share/gimp/brushes/galaxy.gbr
share/gimp/brushes/galaxy_big.gbr
share/gimp/brushes/galaxy_small.gbr
share/gimp/brushes/pepper.gpb
share/gimp/brushes/pixel.gbr
share/gimp/brushes/round1.vbr
share/gimp/brushes/thegimp.gbr
share/gimp/brushes/vine.gih
share/gimp/brushes/xcf.gbr
share/gimp/fractalexplorer/Asteroid_Field
share/gimp/fractalexplorer/Bar_Code_Label
@ -273,10 +292,107 @@ 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/Distant_Sun
share/gimp/gflare/Default
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/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/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/gimp1_1_splash.ppm
share/gimp/gimp_logo.ppm
share/gimp/gimp_splash.ppm
share/gimp/gimp_tips.txt
share/gimp/gimprc
share/gimp/gimprc_user
share/gimp/gradients/Abstract_1
@ -357,6 +473,370 @@ share/gimp/gradients/Wood_1
share/gimp/gradients/Wood_2
share/gimp/gradients/Yellow_Contrast
share/gimp/gradients/Yellow_Orange
share/gimp/help/C/dialogs/layers/add_mask.html
share/gimp/help/C/dialogs/layers/apply_mask.html
share/gimp/help/C/dialogs/layers/edit_layer_attributes.html
share/gimp/help/C/dialogs/layers/index.html
share/gimp/help/C/dialogs/layers/layers.html
share/gimp/help/C/dialogs/layers/merge_visible_layers.html
share/gimp/help/C/dialogs/layers/new_layer.html
share/gimp/help/C/dialogs/layers/resize_layer.html
share/gimp/help/C/dialogs/layers/scale_layer.html
share/gimp/help/C/dialogs/channels/channels.html
share/gimp/help/C/dialogs/channels/edit_channel_attributes.html
share/gimp/help/C/dialogs/channels/index.html
share/gimp/help/C/dialogs/channels/new_channel.html
share/gimp/help/C/dialogs/paths/export_path.html
share/gimp/help/C/dialogs/paths/import_path.html
share/gimp/help/C/dialogs/paths/index.html
share/gimp/help/C/dialogs/paths/paths.html
share/gimp/help/C/dialogs/paths/rename_path.html
share/gimp/help/C/dialogs/palette_editor/import_palette.html
share/gimp/help/C/dialogs/palette_editor/index.html
share/gimp/help/C/dialogs/palette_editor/merge_palette.html
share/gimp/help/C/dialogs/palette_editor/new_palette.html
share/gimp/help/C/dialogs/palette_editor/palette_editor.html
share/gimp/help/C/dialogs/gradient_editor/copy_gradient.html
share/gimp/help/C/dialogs/gradient_editor/delete_gradient.html
share/gimp/help/C/dialogs/gradient_editor/gradient_editor.html
share/gimp/help/C/dialogs/gradient_editor/index.html
share/gimp/help/C/dialogs/gradient_editor/new_gradient.html
share/gimp/help/C/dialogs/gradient_editor/rename_gradient.html
share/gimp/help/C/dialogs/gradient_editor/replicate_segment.html
share/gimp/help/C/dialogs/gradient_editor/save_as_pov_ray.html
share/gimp/help/C/dialogs/gradient_editor/split_segments_uniformly.html
share/gimp/help/C/dialogs/display_filters/display_filters.html
share/gimp/help/C/dialogs/display_filters/gamma.html
share/gimp/help/C/dialogs/display_filters/index.html
share/gimp/help/C/dialogs/color_selectors/built_in.html
share/gimp/help/C/dialogs/color_selectors/gtk.html
share/gimp/help/C/dialogs/color_selectors/index.html
share/gimp/help/C/dialogs/color_selectors/triangle.html
share/gimp/help/C/dialogs/color_selectors/watercolor.html
share/gimp/help/C/dialogs/preferences/directories.html
share/gimp/help/C/dialogs/preferences/display.html
share/gimp/help/C/dialogs/preferences/environment.html
share/gimp/help/C/dialogs/preferences/index.html
share/gimp/help/C/dialogs/preferences/interface.html
share/gimp/help/C/dialogs/preferences/monitor.html
share/gimp/help/C/dialogs/preferences/new_file.html
share/gimp/help/C/dialogs/preferences/preferences.html
share/gimp/help/C/dialogs/preferences/session.html
share/gimp/help/C/dialogs/about.html
share/gimp/help/C/dialogs/border_selection.html
share/gimp/help/C/dialogs/brush_editor.html
share/gimp/help/C/dialogs/brush_selection.html
share/gimp/help/C/dialogs/convert_to_indexed.html
share/gimp/help/C/dialogs/copy_named.html
share/gimp/help/C/dialogs/cut_named.html
share/gimp/help/C/dialogs/device_status.html
share/gimp/help/C/dialogs/document_index.html
share/gimp/help/C/dialogs/edit_qmask_attributes.html
share/gimp/help/C/dialogs/error_console.html
share/gimp/help/C/dialogs/feather_selection.html
share/gimp/help/C/dialogs/file_new.html
share/gimp/help/C/dialogs/file_open.html
share/gimp/help/C/dialogs/file_save.html
share/gimp/help/C/dialogs/gradient_selection.html
share/gimp/help/C/dialogs/grow_selection.html
share/gimp/help/C/dialogs/help.html
share/gimp/help/C/dialogs/index.html
share/gimp/help/C/dialogs/indexed_palette.html
share/gimp/help/C/dialogs/info_window.html
share/gimp/help/C/dialogs/input_devices.html
share/gimp/help/C/dialogs/layers_and_channels.html
share/gimp/help/C/dialogs/module_browser.html
share/gimp/help/C/dialogs/navigation_window.html
share/gimp/help/C/dialogs/offset.html
share/gimp/help/C/dialogs/palette_selection.html
share/gimp/help/C/dialogs/paste_named.html
share/gimp/help/C/dialogs/pattern_selection.html
share/gimp/help/C/dialogs/really_close.html
share/gimp/help/C/dialogs/really_quit.html
share/gimp/help/C/dialogs/resize_image.html
share/gimp/help/C/dialogs/scale_image.html
share/gimp/help/C/dialogs/shrink_selection.html
share/gimp/help/C/dialogs/tip_of_the_day.html
share/gimp/help/C/dialogs/tool_options.html
share/gimp/help/C/dialogs/undo_history.html
share/gimp/help/C/tools/airbrush.html
share/gimp/help/C/tools/bezier_select.html
share/gimp/help/C/tools/blend.html
share/gimp/help/C/tools/brightness_contrast.html
share/gimp/help/C/tools/bucket_fill.html
share/gimp/help/C/tools/by_color_select.html
share/gimp/help/C/tools/clone.html
share/gimp/help/C/tools/color_balance.html
share/gimp/help/C/tools/color_picker.html
share/gimp/help/C/tools/convolve.html
share/gimp/help/C/tools/crop.html
share/gimp/help/C/tools/curves.html
share/gimp/help/C/tools/dodgeburn.html
share/gimp/help/C/tools/ellipse_select.html
share/gimp/help/C/tools/eraser.html
share/gimp/help/C/tools/flip.html
share/gimp/help/C/tools/free_select.html
share/gimp/help/C/tools/fuzzy_select.html
share/gimp/help/C/tools/histogram.html
share/gimp/help/C/tools/hue_saturation.html
share/gimp/help/C/tools/index.html
share/gimp/help/C/tools/ink.html
share/gimp/help/C/tools/intelligent_scissors.html
share/gimp/help/C/tools/levels.html
share/gimp/help/C/tools/magnify.html
share/gimp/help/C/tools/measure.html
share/gimp/help/C/tools/move.html
share/gimp/help/C/tools/paintbrush.html
share/gimp/help/C/tools/path.html
share/gimp/help/C/tools/pencil.html
share/gimp/help/C/tools/posterize.html
share/gimp/help/C/tools/rect_select.html
share/gimp/help/C/tools/smudge.html
share/gimp/help/C/tools/text.html
share/gimp/help/C/tools/threshold.html
share/gimp/help/C/tools/transform.html
share/gimp/help/C/tools/transform_perspective.html
share/gimp/help/C/tools/transform_rotate.html
share/gimp/help/C/tools/transform_scale.html
share/gimp/help/C/tools/transform_shear.html
share/gimp/help/C/tools/xinput_airbrush.html
share/gimp/help/C/layers/stack/index.html
share/gimp/help/C/layers/stack/stack.html
share/gimp/help/C/layers/add_alpha_channel.html
share/gimp/help/C/layers/alpha_to_selection.html
share/gimp/help/C/layers/anchor_layer.html
share/gimp/help/C/layers/delete_layer.html
share/gimp/help/C/layers/duplicate_layer.html
share/gimp/help/C/layers/flatten_image.html
share/gimp/help/C/layers/index.html
share/gimp/help/C/layers/mask_to_selection.html
share/gimp/help/C/layers/merge_down.html
share/gimp/help/C/channels/channel_to_selection.html
share/gimp/help/C/channels/channels.html
share/gimp/help/C/channels/delete_channel.html
share/gimp/help/C/channels/duplicate_channel.html
share/gimp/help/C/channels/index.html
share/gimp/help/C/channels/lower_channel.html
share/gimp/help/C/channels/raise_channel.html
share/gimp/help/C/paths/copy_path.html
share/gimp/help/C/paths/delete_path.html
share/gimp/help/C/paths/duplicate_path.html
share/gimp/help/C/paths/index.html
share/gimp/help/C/paths/new_path.html
share/gimp/help/C/paths/paste_path.html
share/gimp/help/C/paths/path_to_selection.html
share/gimp/help/C/paths/stroke_path.html
share/gimp/help/C/toolbox/index.html
share/gimp/help/C/toolbox/toolbox.html
share/gimp/help/C/image/edit/clear.html
share/gimp/help/C/image/edit/copy.html
share/gimp/help/C/image/edit/cut.html
share/gimp/help/C/image/edit/fill.html
share/gimp/help/C/image/edit/index.html
share/gimp/help/C/image/edit/paste.html
share/gimp/help/C/image/edit/paste_as_new.html
share/gimp/help/C/image/edit/paste_into.html
share/gimp/help/C/image/edit/redo.html
share/gimp/help/C/image/edit/stroke.html
share/gimp/help/C/image/edit/undo.html
share/gimp/help/C/image/select/all.html
share/gimp/help/C/image/select/float.html
share/gimp/help/C/image/select/index.html
share/gimp/help/C/image/select/invert.html
share/gimp/help/C/image/select/none.html
share/gimp/help/C/image/select/save_to_channel.html
share/gimp/help/C/image/select/sharpen.html
share/gimp/help/C/image/view/dot_for_dot.html
share/gimp/help/C/image/view/index.html
share/gimp/help/C/image/view/new_view.html
share/gimp/help/C/image/view/shrink_wrap.html
share/gimp/help/C/image/view/snap_to_guides.html
share/gimp/help/C/image/view/toggle_guides.html
share/gimp/help/C/image/view/toggle_rulers.html
share/gimp/help/C/image/view/toggle_selection.html
share/gimp/help/C/image/view/toggle_statusbar.html
share/gimp/help/C/image/view/zoom.html
share/gimp/help/C/image/image/transforms/index.html
share/gimp/help/C/image/image/colors/desaturate.html
share/gimp/help/C/image/image/colors/equalize.html
share/gimp/help/C/image/image/colors/index.html
share/gimp/help/C/image/image/colors/invert.html
share/gimp/help/C/image/image/convert_to_grayscale.html
share/gimp/help/C/image/image/convert_to_rgb.html
share/gimp/help/C/image/image/duplicate.html
share/gimp/help/C/image/image/index.html
share/gimp/help/C/image/image_window.html
share/gimp/help/C/image/index.html
share/gimp/help/C/open/index.html
share/gimp/help/C/open/open_by_extension.html
share/gimp/help/C/save/index.html
share/gimp/help/C/save/save_by_extension.html
share/gimp/help/C/filters/alienmap.html
share/gimp/help/C/filters/alienmap2.html
share/gimp/help/C/filters/align_layers.html
share/gimp/help/C/filters/animationplay.html
share/gimp/help/C/filters/animoptimize.html
share/gimp/help/C/filters/apply_lens.html
share/gimp/help/C/filters/autocrop.html
share/gimp/help/C/filters/autostretch_hsv.html
share/gimp/help/C/filters/blinds.html
share/gimp/help/C/filters/blur.html
share/gimp/help/C/filters/bmp.html
share/gimp/help/C/filters/borderaverage.html
share/gimp/help/C/filters/bumpmap.html
share/gimp/help/C/filters/bz2.html
share/gimp/help/C/filters/c_astretch.html
share/gimp/help/C/filters/cel.html
share/gimp/help/C/filters/checkerboard.html
share/gimp/help/C/filters/cml_explorer.html
share/gimp/help/C/filters/color_enhance.html
share/gimp/help/C/filters/fp.html
share/gimp/help/C/filters/colorify.html
share/gimp/help/C/filters/compose.html
share/gimp/help/C/filters/convmatrix.html
share/gimp/help/C/filters/csource.html
share/gimp/help/C/filters/cubism.html
share/gimp/help/C/filters/curve_bend.html
share/gimp/help/C/filters/dbbrowser.html
share/gimp/help/C/filters/decompose.html
share/gimp/help/C/filters/deinterlace.html
share/gimp/help/C/filters/depthmerge.html
share/gimp/help/C/filters/despeckle.html
share/gimp/help/C/filters/destripe.html
share/gimp/help/C/filters/diffraction.html
share/gimp/help/C/filters/displace.html
share/gimp/help/C/filters/edge.html
share/gimp/help/C/filters/emboss.html
share/gimp/help/C/filters/engrave.html
share/gimp/help/C/filters/exchange.html
share/gimp/help/C/filters/faxg3.html
share/gimp/help/C/filters/film.html
share/gimp/help/C/filters/fits.html
share/gimp/help/C/filters/flame.html
share/gimp/help/C/filters/flarefx.html
share/gimp/help/C/filters/fractalexplorer.html
share/gimp/help/C/filters/fractaltrace.html
share/gimp/help/C/filters/gap_filter.html
share/gimp/help/C/filters/gap_plugins.html
share/gimp/help/C/filters/gauss_iir.html
share/gimp/help/C/filters/gauss_rle.html
share/gimp/help/C/filters/gbr.html
share/gimp/help/C/filters/gdyntext.html
share/gimp/help/C/filters/gee.html
share/gimp/help/C/filters/gfig.html
share/gimp/help/C/filters/gflare.html
share/gimp/help/C/filters/gfli.html
share/gimp/help/C/filters/gicon.html
share/gimp/help/C/filters/gif.html
share/gimp/help/C/filters/gifload.html
share/gimp/help/C/filters/gimpressionist.html
share/gimp/help/C/filters/glasstile.html
share/gimp/help/C/filters/gpb.html
share/gimp/help/C/filters/gqbist.html
share/gimp/help/C/filters/gradmap.html
share/gimp/help/C/filters/grid.html
share/gimp/help/C/filters/gtm.html
share/gimp/help/C/filters/guillotine.html
share/gimp/help/C/filters/gz.html
share/gimp/help/C/filters/header.html
share/gimp/help/C/filters/hot.html
share/gimp/help/C/filters/hrz.html
share/gimp/help/C/filters/ifscompose.html
share/gimp/help/C/filters/illusion.html
share/gimp/help/C/filters/imagemap.html
share/gimp/help/C/filters/index.html
share/gimp/help/C/filters/iwarp.html
share/gimp/help/C/filters/jigsaw.html
share/gimp/help/C/filters/jpeg.html
share/gimp/help/C/filters/laplace.html
share/gimp/help/C/filters/lic.html
share/gimp/help/C/filters/lighting.html
share/gimp/help/C/filters/mail.html
share/gimp/help/C/filters/mapcolor.html
share/gimp/help/C/filters/mapobject.html
share/gimp/help/C/filters/max_rgb.html
share/gimp/help/C/filters/maze.html
share/gimp/help/C/filters/mblur.html
share/gimp/help/C/filters/mosaic.html
share/gimp/help/C/filters/nlfilt.html
share/gimp/help/C/filters/newsprint.html
share/gimp/help/C/filters/noisify.html
share/gimp/help/C/filters/normalize.html
share/gimp/help/C/filters/nova.html
share/gimp/help/C/filters/oilify.html
share/gimp/help/C/filters/pagecurl.html
share/gimp/help/C/filters/papertile.html
share/gimp/help/C/filters/pat.html
share/gimp/help/C/filters/pcx.html
share/gimp/help/C/filters/pix.html
share/gimp/help/C/filters/pixelize.html
share/gimp/help/C/filters/plasma.html
share/gimp/help/C/filters/plugindetails.html
share/gimp/help/C/filters/png.html
share/gimp/help/C/filters/pnm.html
share/gimp/help/C/filters/polar.html
share/gimp/help/C/filters/print.html
share/gimp/help/C/filters/ps.html
share/gimp/help/C/filters/psd.html
share/gimp/help/C/filters/psp.html
share/gimp/help/C/filters/randomize.html
share/gimp/help/C/filters/rcm.html
share/gimp/help/C/filters/repeat_last.html
share/gimp/help/C/filters/reshow_last.html
share/gimp/help/C/filters/ripple.html
share/gimp/help/C/filters/rotate.html
share/gimp/help/C/filters/rotators.html
share/gimp/help/C/filters/sample_colorize.html
share/gimp/help/C/filters/scatter_hsv.html
share/gimp/help/C/filters/screenshot.html
share/gimp/help/C/filters/script-fu.html
share/gimp/help/C/filters/sel2path.html
share/gimp/help/C/filters/sel_gauss.html
share/gimp/help/C/filters/semiflatten.html
share/gimp/help/C/filters/sgi.html
share/gimp/help/C/filters/sharpen.html
share/gimp/help/C/filters/shift.html
share/gimp/help/C/filters/sinus.html
share/gimp/help/C/filters/smooth_palette.html
share/gimp/help/C/filters/snoise.html
share/gimp/help/C/filters/sobel.html
share/gimp/help/C/filters/sparkle.html
share/gimp/help/C/filters/spheredesigner.html
share/gimp/help/C/filters/spread.html
share/gimp/help/C/filters/struc.html
share/gimp/help/C/filters/sunras.html
share/gimp/help/C/filters/tga.html
share/gimp/help/C/filters/threshold_alpha.html
share/gimp/help/C/filters/tiff.html
share/gimp/help/C/filters/tile.html
share/gimp/help/C/filters/tileit.html
share/gimp/help/C/filters/tiler.html
share/gimp/help/C/filters/unsharp.html
share/gimp/help/C/filters/url.html
share/gimp/help/C/filters/video.html
share/gimp/help/C/filters/vinvert.html
share/gimp/help/C/filters/vpropagate.html
share/gimp/help/C/filters/warp.html
share/gimp/help/C/filters/waves.html
share/gimp/help/C/filters/webbrowser.html
share/gimp/help/C/filters/whirlpinch.html
share/gimp/help/C/filters/wind.html
share/gimp/help/C/filters/wmf.html
share/gimp/help/C/filters/xbm.html
share/gimp/help/C/filters/xjt.html
share/gimp/help/C/filters/xpm.html
share/gimp/help/C/filters/xwd.html
share/gimp/help/C/filters/zealouscrop.html
share/gimp/help/C/file/close.html
share/gimp/help/C/file/index.html
share/gimp/help/C/file/last_opened.html
share/gimp/help/C/file/quit.html
share/gimp/help/C/file/revert.html
share/gimp/help/C/contents.html
share/gimp/help/C/index.html
share/gimp/help/C/welcome.html
share/gimp/help/images/eek.png
share/gimp/help/images/wilber.png
share/gimp/gtkrc
share/gimp/gtkrc.forest2
share/gimp/palettes/Bears
@ -393,6 +873,8 @@ share/gimp/palettes/Reds
share/gimp/palettes/Reds_And_Purples
share/gimp/palettes/Royal
share/gimp/palettes/Topographic
share/gimp/palettes/Visibone
share/gimp/palettes/Visibone2
share/gimp/palettes/Volcano
share/gimp/palettes/Warm_Colors
share/gimp/palettes/Web
@ -551,6 +1033,12 @@ 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/tips/gimp_tips.txt
share/gimp/tips/gimp_tips.de.txt
share/gimp/tips/gimp_tips.ja.txt
share/gimp/tips/gimp_tips.it.txt
share/gimp/tips/gimp_conseils.fr.txt
share/gimp/tips/gimp_tips.ru.txt
share/gimp/unitrc
share/gimp/user_install
share/locale/de/LC_MESSAGES/gimp.mo
@ -564,6 +1052,41 @@ share/locale/nl/LC_MESSAGES/gimp.mo
share/locale/pl/LC_MESSAGES/gimp.mo
share/locale/ru/LC_MESSAGES/gimp.mo
share/locale/sv/LC_MESSAGES/gimp.mo
@dirrm share/gimp/gflare
@dirrm share/gimp/gimpressionist/Brushes
@dirrm share/gimp/gimpressionist/Paper
@dirrm share/gimp/gimpressionist/Presets
@dirrm share/gimp/gimpressionist
@dirrm share/gimp/tips
@dirrm share/gimp/help/C/dialogs/layers
@dirrm share/gimp/help/C/dialogs/channels
@dirrm share/gimp/help/C/dialogs/paths
@dirrm share/gimp/help/C/dialogs/palette_editor
@dirrm share/gimp/help/C/dialogs/gradient_editor
@dirrm share/gimp/help/C/dialogs/display_filters
@dirrm share/gimp/help/C/dialogs/color_selectors
@dirrm share/gimp/help/C/dialogs/preferences
@dirrm share/gimp/help/C/dialogs
@dirrm share/gimp/help/C/tools
@dirrm share/gimp/help/C/layers/stack
@dirrm share/gimp/help/C/layers
@dirrm share/gimp/help/C/channels
@dirrm share/gimp/help/C/paths
@dirrm share/gimp/help/C/toolbox
@dirrm share/gimp/help/C/image/edit
@dirrm share/gimp/help/C/image/select
@dirrm share/gimp/help/C/image/view
@dirrm share/gimp/help/C/image/image/transforms
@dirrm share/gimp/help/C/image/image/colors
@dirrm share/gimp/help/C/image/image
@dirrm share/gimp/help/C/image
@dirrm share/gimp/help/C/open
@dirrm share/gimp/help/C/save
@dirrm share/gimp/help/C/filters
@dirrm share/gimp/help/C/file
@dirrm share/gimp/help/images
@dirrm share/gimp/help/C
@dirrm share/gimp/help
@dirrm share/gimp/scripts
@dirrm share/gimp/patterns
@dirrm share/gimp/palettes

View file

@ -1,16 +1,16 @@
# New ports collection makefile for: Gimp
# Version required: 1.1.5
# Version required: 1.1.10
# Date created: Mon Nov 18 21:28:43 CST 1996
# Whom: erich@FreeBSD.org
#
# $FreeBSD$
#
DISTNAME= gimp-1.1.5
DISTNAME= gimp-1.1.10
CATEGORIES= graphics
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.5/ \
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.5/ \
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.5/
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.10/ \
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.10/ \
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.10/
MAINTAINER= erich@FreeBSD.org
@ -25,6 +25,7 @@ LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_GMAKE= yes
USE_LIBTOOL= yes

View file

@ -1 +1 @@
MD5 (gimp-1.1.5.tar.gz) = 048e20d9c639e9017292dd5b971d477b
MD5 (gimp-1.1.10.tar.bz2) = a5bf11f5bd1050d9d0ed1fc941f4302c

View file

@ -1,14 +1,15 @@
--- app/main.c.orig Mon Sep 21 17:15:18 1998
+++ app/main.c Tue Sep 29 22:24:17 1998
@@ -16,6 +16,7 @@
--- app/main.c.orig Wed Oct 6 13:55:38 1999
+++ app/main.c Tue Oct 12 13:23:44 1999
@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "config.h"
-
+#include <floatingpoint.h>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
@@ -94,6 +95,9 @@
@@ -117,6 +117,9 @@
/* Initialize variables */
prog_name = argv[0];
@ -16,5 +17,5 @@
+ /* Ignore floating point exceptions */
+ fpsetmask(0);
/* Initialize Gtk toolkit */
gtk_set_locale ();
/* Initialize i18n support */

View file

@ -1,5 +1,5 @@
--- plug-ins/url/url.c.orig Sat May 30 15:32:36 1998
+++ plug-ins/url/url.c Sun Jun 7 10:09:34 1998
--- plug-ins/common/url.c.orig Sat May 30 15:32:36 1998
+++ plug-ins/common/url.c Sun Jun 7 10:09:34 1998
@@ -146,8 +146,8 @@
}
else if (pid == 0)

View file

@ -1,242 +0,0 @@
--- plug-ins/gpc/Makefile.am.orig Wed Nov 18 06:14:51 1998
+++ plug-ins/gpc/Makefile.am Sat Feb 20 17:31:16 1999
@@ -1,11 +1,14 @@
## Process this file with automake to produce Makefile.in
pluginlibdir = $(libdir)
+gimpincludedir = $(includedir)
pluginlib_LIBRARIES = libgpc.a
libgpc_a_SOURCES = \
- gpc.c \
+ gpc.c
+
+gimpinclude_HEADERS = \
gpc.h
INCLUDES = \
--- plug-ins/gpc/Makefile.in.orig Tue Mar 9 02:58:46 1999
+++ plug-ins/gpc/Makefile.in Mon May 10 10:17:48 1999
@@ -162,10 +162,14 @@
prefix = @prefix@
pluginlibdir = $(libdir)
+gimpincludedir = $(includedir)
pluginlib_LIBRARIES = libgpc.a
-libgpc_a_SOURCES = gpc.c gpc.h
+libgpc_a_SOURCES = gpc.c
+
+
+gimpinclude_HEADERS = gpc.h
INCLUDES = -I$(top_srcdir) $(GTK_CFLAGS) -I$(includedir)
@@ -201,6 +205,8 @@
MANS = $(man_MANS)
NROFF = nroff
+HEADERS = $(gimpinclude_HEADERS)
+
DIST_COMMON = Makefile.am Makefile.in
@@ -208,6 +214,7 @@
TAR = tar
GZIP_ENV = --best
+DEP_FILES = .deps/gpc.P
SOURCES = $(libgpc_a_SOURCES)
OBJECTS = $(libgpc_a_OBJECTS)
@@ -215,9 +222,9 @@
.SUFFIXES:
.SUFFIXES: .S .c .lo .o .s
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
- cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps plug-ins/gpc/Makefile
+ cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gpc/Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
@@ -254,9 +261,6 @@
rm -f $(DESTDIR)$(pluginlibdir)/$$p; \
done
-.c.o:
- $(COMPILE) -c $<
-
.s.o:
$(COMPILE) -c $<
@@ -273,9 +277,6 @@
maintainer-clean-compile:
-.c.lo:
- $(LIBTOOL) --mode=compile $(COMPILE) -c $<
-
.s.lo:
$(LIBTOOL) --mode=compile $(COMPILE) -c $<
@@ -336,6 +337,21 @@
@$(NORMAL_UNINSTALL)
$(MAKE) $(AM_MAKEFLAGS) uninstall-man3
+install-gimpincludeHEADERS: $(gimpinclude_HEADERS)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(gimpincludedir)
+ @list='$(gimpinclude_HEADERS)'; for p in $$list; do \
+ if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
+ echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(gimpincludedir)/$$p"; \
+ $(INSTALL_DATA) $$d$$p $(DESTDIR)$(gimpincludedir)/$$p; \
+ done
+
+uninstall-gimpincludeHEADERS:
+ @$(NORMAL_UNINSTALL)
+ list='$(gimpinclude_HEADERS)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(gimpincludedir)/$$p; \
+ done
+
tags: TAGS
ID: $(HEADERS) $(SOURCES) $(LISP)
@@ -370,6 +386,11 @@
subdir = plug-ins/gpc
distdir: $(DISTFILES)
+ here=`cd $(top_builddir) && pwd`; \
+ top_distdir=`cd $(top_distdir) && pwd`; \
+ distdir=`cd $(distdir) && pwd`; \
+ cd $(top_srcdir) \
+ && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu plug-ins/gpc/Makefile
@for file in $(DISTFILES); do \
d=$(srcdir); \
if test -d $$d/$$file; then \
@@ -381,6 +402,37 @@
fi; \
done
+DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
+
+-include $(DEP_FILES)
+
+mostlyclean-depend:
+
+clean-depend:
+
+distclean-depend:
+ -rm -rf .deps
+
+maintainer-clean-depend:
+
+%.o: %.c
+ @echo '$(COMPILE) -c $<'; \
+ $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
+ @-cp .deps/$(*F).pp .deps/$(*F).P; \
+ tr ' ' '\012' < .deps/$(*F).pp \
+ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
+ >> .deps/$(*F).P; \
+ rm .deps/$(*F).pp
+
+%.lo: %.c
+ @echo '$(LTCOMPILE) -c $<'; \
+ $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
+ @-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
+ < .deps/$(*F).pp > .deps/$(*F).P; \
+ tr ' ' '\012' < .deps/$(*F).pp \
+ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
+ >> .deps/$(*F).P; \
+ rm -f .deps/$(*F).pp
info-am:
info: info-am
dvi-am:
@@ -392,20 +444,23 @@
install-exec-am:
install-exec: install-exec-am
-install-data-am: install-pluginlibLIBRARIES install-man
+install-data-am: install-pluginlibLIBRARIES install-man \
+ install-gimpincludeHEADERS
install-data: install-data-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
install: install-am
-uninstall-am: uninstall-pluginlibLIBRARIES uninstall-man
+uninstall-am: uninstall-pluginlibLIBRARIES uninstall-man \
+ uninstall-gimpincludeHEADERS
uninstall: uninstall-am
-all-am: Makefile $(LIBRARIES) $(MANS)
+all-am: Makefile $(LIBRARIES) $(MANS) $(HEADERS)
all-redirect: all-am
install-strip:
$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
installdirs:
- $(mkinstalldirs) $(DESTDIR)$(pluginlibdir) $(DESTDIR)$(mandir)/man3
+ $(mkinstalldirs) $(DESTDIR)$(pluginlibdir) $(DESTDIR)$(mandir)/man3 \
+ $(DESTDIR)$(gimpincludedir)
mostlyclean-generic:
@@ -418,27 +473,27 @@
maintainer-clean-generic:
mostlyclean-am: mostlyclean-pluginlibLIBRARIES mostlyclean-compile \
- mostlyclean-libtool mostlyclean-tags \
+ mostlyclean-libtool mostlyclean-tags mostlyclean-depend \
mostlyclean-generic
mostlyclean: mostlyclean-am
clean-am: clean-pluginlibLIBRARIES clean-compile clean-libtool \
- clean-tags clean-generic mostlyclean-am
+ clean-tags clean-depend clean-generic mostlyclean-am
clean: clean-am
distclean-am: distclean-pluginlibLIBRARIES distclean-compile \
- distclean-libtool distclean-tags distclean-generic \
- clean-am
+ distclean-libtool distclean-tags distclean-depend \
+ distclean-generic clean-am
-rm -f libtool
distclean: distclean-am
maintainer-clean-am: maintainer-clean-pluginlibLIBRARIES \
maintainer-clean-compile maintainer-clean-libtool \
- maintainer-clean-tags maintainer-clean-generic \
- distclean-am
+ maintainer-clean-tags maintainer-clean-depend \
+ maintainer-clean-generic distclean-am
@echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild."
@@ -450,13 +505,15 @@
mostlyclean-compile distclean-compile clean-compile \
maintainer-clean-compile mostlyclean-libtool distclean-libtool \
clean-libtool maintainer-clean-libtool install-man3 uninstall-man3 \
-install-man uninstall-man tags mostlyclean-tags distclean-tags \
-clean-tags maintainer-clean-tags distdir info-am info dvi-am dvi check \
-check-am installcheck-am installcheck install-exec-am install-exec \
-install-data-am install-data install-am install uninstall-am uninstall \
-all-redirect all-am all installdirs mostlyclean-generic \
-distclean-generic clean-generic maintainer-clean-generic clean \
-mostlyclean distclean maintainer-clean
+install-man uninstall-man uninstall-gimpincludeHEADERS \
+install-gimpincludeHEADERS tags mostlyclean-tags distclean-tags \
+clean-tags maintainer-clean-tags distdir mostlyclean-depend \
+distclean-depend clean-depend maintainer-clean-depend info-am info \
+dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
+install-exec install-data-am install-data install-am install \
+uninstall-am uninstall all-redirect all-am all installdirs \
+mostlyclean-generic distclean-generic clean-generic \
+maintainer-clean-generic clean mostlyclean distclean maintainer-clean
.PHONY: files

View file

@ -1,5 +1,5 @@
--- plug-ins/plugindetails/plugindetails.c.orig Sat Mar 27 07:53:38 1999
+++ plug-ins/plugindetails/plugindetails.c Sat May 22 21:24:31 1999
--- plug-ins/common/plugindetails.c.orig Sat Mar 27 07:53:38 1999
+++ plug-ins/common/plugindetails.c Sat May 22 21:24:31 1999
@@ -25,6 +25,7 @@
#include <stdio.h>
#include <string.h>

View file

@ -1,20 +1,16 @@
--- gimptool.in.orig Sat Feb 20 19:48:58 1999
+++ gimptool.in Sat Feb 20 19:49:37 1999
@@ -198,7 +198,7 @@
| --install-script | --install-admin-script)
--- gimptool.in.orig Wed Aug 25 18:49:22 1999
+++ gimptool.in Tue Oct 12 13:31:37 1999
@@ -209,11 +209,11 @@
| --uninstall-script | --uninstall-admin-script )
case $1 in
--install-bin)
--*install-bin)
- install_cmd="@INSTALL_PROGRAM@"
+ install_cmd="@INSTALL_SCRIPT@"
install_dir="$HOME/@gimpdir@/plug-ins"
;;
--install-bin-strip)
@@ -206,7 +206,7 @@
- install_cmd="@INSTALL_PROGRAM@ -s"
+ install_cmd="@INSTALL_SCRIPT@ -s"
install_dir="$HOME/@gimpdir@/plug-ins"
;;
--install-admin-bin)
- install_cmd="@INSTALL_PROGRAM@"
+ install_cmd="@INSTALL_SCRIPT@"
install_dir="$plug_in_dir/plug-ins"
;;
--install-admin-bin-strip)
--*install-admin-bin)

View file

@ -1,6 +1,6 @@
--- configure.orig Tue May 4 06:06:39 1999
+++ configure Sat May 22 21:39:37 1999
@@ -3538,7 +3538,10 @@
--- configure.orig Wed Oct 6 14:00:22 1999
+++ configure Tue Oct 12 13:37:31 1999
@@ -3471,7 +3471,11 @@
cat conftest.$ac_ext >&5
rm -rf conftest*
CATOBJEXT=.mo
@ -9,10 +9,11 @@
+ INTLDEPS='-lintl'
+ INTLLIBS=$INTLDEPS
+ LIBS=`echo $LIBS | sed -e 's/-lintl//'`
+
fi
rm -f conftest*
INSTOBJEXT=.mo
@@ -7165,7 +7168,7 @@
@@ -7108,7 +7112,7 @@
fi
gimpdatadir=$datadir/gimp
@ -21,14 +22,14 @@
localedir='${prefix}/${DATADIRNAME}/locale'
brushdata=`ls -1 $srcdir/data/brushes | grep -v Makefile`
@@ -8746,10 +8749,6 @@
*) # Relative path.
ac_sub_cache_file="$ac_dots$cache_file" ;;
esac
- case "$ac_given_INSTALL" in
- [/$]*) INSTALL="$ac_given_INSTALL" ;;
- *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
- esac
@@ -8513,10 +8517,6 @@
top_srcdir="$ac_dots$ac_given_srcdir" ;;
esac
echo "running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir"
# The eval makes quoting arguments work.
- case "$ac_given_INSTALL" in
- [/$]*) INSTALL="$ac_given_INSTALL" ;;
- *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
- esac
echo creating "$ac_file"
rm -f "$ac_file"

View file

@ -9,16 +9,19 @@ include/gck/gckmath.h
include/gck/gcktypes.h
include/gck/gckui.h
include/gck/gckvector.h
include/gpc.h
include/libgimp/color_display.h
include/libgimp/color_selector.h
include/libgimp/gimp.h
include/libgimp/gimpchainbutton.h
include/libgimp/gimpenums.h
include/libgimp/gimpenv.h
include/libgimp/gimpexport.h
include/libgimp/gimpfeatures.h
include/libgimp/gimpfileselection.h
include/libgimp/gimpintl.h
include/libgimp/gimplimits.h
include/libgimp/gimpmatrix.h
include/libgimp/gimpmath.h
include/libgimp/gimpmenu.h
include/libgimp/gimpmodule.h
include/libgimp/gimppatheditor.h
@ -30,23 +33,26 @@ include/libgimp/gserialize.h
include/libgimp/parasite.h
include/libgimp/parasiteF.h
include/libgimp/parasiteP.h
include/megawidget.h
include/libgimp/parasiteio.h
lib/libgck.a
lib/libgck.so
lib/libgck.so.5
lib/libgck.so.10
lib/libgimp.a
lib/libgimp.so
lib/libgimp.so.5
lib/libgimp.so.10
lib/libgimpui.a
lib/libgimpui.so
lib/libgimpui.so.5
lib/libgimpui.so.10
lib/libgpc.a
lib/libmegawidget.a
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
libexec/gimp/1.1/modules/libcdisplay_gamma.so
libexec/gimp/1.1/modules/libcolorsel_gtk.so
libexec/gimp/1.1/modules/libcolorsel_triangle.so
libexec/gimp/1.1/modules/libcolorsel_water.so
libexec/gimp/1.1/plug-ins/AlienMap
libexec/gimp/1.1/plug-ins/AlienMap2
libexec/gimp/1.1/plug-ins/CEL
libexec/gimp/1.1/plug-ins/CML_explorer
libexec/gimp/1.1/plug-ins/FractalExplorer
@ -68,9 +74,12 @@ libexec/gimp/1.1/plug-ins/bz2
libexec/gimp/1.1/plug-ins/c_astretch
libexec/gimp/1.1/plug-ins/checkerboard
libexec/gimp/1.1/plug-ins/colorify
libexec/gimp/1.1/plug-ins/color_enhance
libexec/gimp/1.1/plug-ins/compose
libexec/gimp/1.1/plug-ins/convmatrix
libexec/gimp/1.1/plug-ins/csource
libexec/gimp/1.1/plug-ins/cubism
libexec/gimp/1.1/plug-ins/curve_bend
libexec/gimp/1.1/plug-ins/dbbrowser
libexec/gimp/1.1/plug-ins/decompose
libexec/gimp/1.1/plug-ins/deinterlace
@ -98,11 +107,14 @@ libexec/gimp/1.1/plug-ins/gbr
libexec/gimp/1.1/plug-ins/gdyntext
libexec/gimp/1.1/plug-ins/gee
libexec/gimp/1.1/plug-ins/gfig
libexec/gimp/1.1/plug-ins/gflare
libexec/gimp/1.1/plug-ins/gfli
libexec/gimp/1.1/plug-ins/gicon
libexec/gimp/1.1/plug-ins/gif
libexec/gimp/1.1/plug-ins/gifload
libexec/gimp/1.1/plug-ins/gimpressionist
libexec/gimp/1.1/plug-ins/glasstile
libexec/gimp/1.1/plug-ins/gpb
libexec/gimp/1.1/plug-ins/gqbist
libexec/gimp/1.1/plug-ins/gradmap
libexec/gimp/1.1/plug-ins/grid
@ -114,6 +126,7 @@ libexec/gimp/1.1/plug-ins/hot
libexec/gimp/1.1/plug-ins/hrz
libexec/gimp/1.1/plug-ins/ifscompose
libexec/gimp/1.1/plug-ins/illusion
libexec/gimp/1.1/plug-ins/imagemap
libexec/gimp/1.1/plug-ins/iwarp
libexec/gimp/1.1/plug-ins/jigsaw
libexec/gimp/1.1/plug-ins/jpeg
@ -133,7 +146,6 @@ libexec/gimp/1.1/plug-ins/normalize
libexec/gimp/1.1/plug-ins/nova
libexec/gimp/1.1/plug-ins/oilify
libexec/gimp/1.1/plug-ins/pagecurl
libexec/gimp/1.1/plug-ins/palette
libexec/gimp/1.1/plug-ins/papertile
libexec/gimp/1.1/plug-ins/pat
libexec/gimp/1.1/plug-ins/pcx
@ -147,14 +159,18 @@ libexec/gimp/1.1/plug-ins/polar
libexec/gimp/1.1/plug-ins/print
libexec/gimp/1.1/plug-ins/ps
libexec/gimp/1.1/plug-ins/psd
libexec/gimp/1.1/plug-ins/psp
libexec/gimp/1.1/plug-ins/randomize
libexec/gimp/1.1/plug-ins/rcm
libexec/gimp/1.1/plug-ins/ripple
libexec/gimp/1.1/plug-ins/rotate
libexec/gimp/1.1/plug-ins/rotators
libexec/gimp/1.1/plug-ins/sample_colorize
libexec/gimp/1.1/plug-ins/scatter_hsv
libexec/gimp/1.1/plug-ins/screenshot
libexec/gimp/1.1/plug-ins/script-fu
libexec/gimp/1.1/plug-ins/sel2path
libexec/gimp/1.1/plug-ins/sel_gauss
libexec/gimp/1.1/plug-ins/semiflatten
libexec/gimp/1.1/plug-ins/sgi
libexec/gimp/1.1/plug-ins/sharpen
@ -164,6 +180,7 @@ libexec/gimp/1.1/plug-ins/smooth_palette
libexec/gimp/1.1/plug-ins/snoise
libexec/gimp/1.1/plug-ins/sobel
libexec/gimp/1.1/plug-ins/sparkle
libexec/gimp/1.1/plug-ins/spheredesigner
libexec/gimp/1.1/plug-ins/spread
libexec/gimp/1.1/plug-ins/struc
libexec/gimp/1.1/plug-ins/sunras
@ -173,11 +190,12 @@ libexec/gimp/1.1/plug-ins/tiff
libexec/gimp/1.1/plug-ins/tile
libexec/gimp/1.1/plug-ins/tileit
libexec/gimp/1.1/plug-ins/tiler
libexec/gimp/1.1/plug-ins/unsharp
libexec/gimp/1.1/plug-ins/url
libexec/gimp/1.1/plug-ins/video
libexec/gimp/1.1/plug-ins/vinvert
libexec/gimp/1.1/plug-ins/vpropagate
libexec/gimp/1.1/plug-ins/waterselect
libexec/gimp/1.1/plug-ins/warp
libexec/gimp/1.1/plug-ins/waves
libexec/gimp/1.1/plug-ins/webbrowser
libexec/gimp/1.1/plug-ins/whirlpinch
@ -226,9 +244,10 @@ share/gimp/brushes/dunes.gbr
share/gimp/brushes/galaxy.gbr
share/gimp/brushes/galaxy_big.gbr
share/gimp/brushes/galaxy_small.gbr
share/gimp/brushes/pepper.gpb
share/gimp/brushes/pixel.gbr
share/gimp/brushes/round1.vbr
share/gimp/brushes/thegimp.gbr
share/gimp/brushes/vine.gih
share/gimp/brushes/xcf.gbr
share/gimp/fractalexplorer/Asteroid_Field
share/gimp/fractalexplorer/Bar_Code_Label
@ -273,10 +292,107 @@ 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/Distant_Sun
share/gimp/gflare/Default
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/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/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/gimp1_1_splash.ppm
share/gimp/gimp_logo.ppm
share/gimp/gimp_splash.ppm
share/gimp/gimp_tips.txt
share/gimp/gimprc
share/gimp/gimprc_user
share/gimp/gradients/Abstract_1
@ -357,6 +473,370 @@ share/gimp/gradients/Wood_1
share/gimp/gradients/Wood_2
share/gimp/gradients/Yellow_Contrast
share/gimp/gradients/Yellow_Orange
share/gimp/help/C/dialogs/layers/add_mask.html
share/gimp/help/C/dialogs/layers/apply_mask.html
share/gimp/help/C/dialogs/layers/edit_layer_attributes.html
share/gimp/help/C/dialogs/layers/index.html
share/gimp/help/C/dialogs/layers/layers.html
share/gimp/help/C/dialogs/layers/merge_visible_layers.html
share/gimp/help/C/dialogs/layers/new_layer.html
share/gimp/help/C/dialogs/layers/resize_layer.html
share/gimp/help/C/dialogs/layers/scale_layer.html
share/gimp/help/C/dialogs/channels/channels.html
share/gimp/help/C/dialogs/channels/edit_channel_attributes.html
share/gimp/help/C/dialogs/channels/index.html
share/gimp/help/C/dialogs/channels/new_channel.html
share/gimp/help/C/dialogs/paths/export_path.html
share/gimp/help/C/dialogs/paths/import_path.html
share/gimp/help/C/dialogs/paths/index.html
share/gimp/help/C/dialogs/paths/paths.html
share/gimp/help/C/dialogs/paths/rename_path.html
share/gimp/help/C/dialogs/palette_editor/import_palette.html
share/gimp/help/C/dialogs/palette_editor/index.html
share/gimp/help/C/dialogs/palette_editor/merge_palette.html
share/gimp/help/C/dialogs/palette_editor/new_palette.html
share/gimp/help/C/dialogs/palette_editor/palette_editor.html
share/gimp/help/C/dialogs/gradient_editor/copy_gradient.html
share/gimp/help/C/dialogs/gradient_editor/delete_gradient.html
share/gimp/help/C/dialogs/gradient_editor/gradient_editor.html
share/gimp/help/C/dialogs/gradient_editor/index.html
share/gimp/help/C/dialogs/gradient_editor/new_gradient.html
share/gimp/help/C/dialogs/gradient_editor/rename_gradient.html
share/gimp/help/C/dialogs/gradient_editor/replicate_segment.html
share/gimp/help/C/dialogs/gradient_editor/save_as_pov_ray.html
share/gimp/help/C/dialogs/gradient_editor/split_segments_uniformly.html
share/gimp/help/C/dialogs/display_filters/display_filters.html
share/gimp/help/C/dialogs/display_filters/gamma.html
share/gimp/help/C/dialogs/display_filters/index.html
share/gimp/help/C/dialogs/color_selectors/built_in.html
share/gimp/help/C/dialogs/color_selectors/gtk.html
share/gimp/help/C/dialogs/color_selectors/index.html
share/gimp/help/C/dialogs/color_selectors/triangle.html
share/gimp/help/C/dialogs/color_selectors/watercolor.html
share/gimp/help/C/dialogs/preferences/directories.html
share/gimp/help/C/dialogs/preferences/display.html
share/gimp/help/C/dialogs/preferences/environment.html
share/gimp/help/C/dialogs/preferences/index.html
share/gimp/help/C/dialogs/preferences/interface.html
share/gimp/help/C/dialogs/preferences/monitor.html
share/gimp/help/C/dialogs/preferences/new_file.html
share/gimp/help/C/dialogs/preferences/preferences.html
share/gimp/help/C/dialogs/preferences/session.html
share/gimp/help/C/dialogs/about.html
share/gimp/help/C/dialogs/border_selection.html
share/gimp/help/C/dialogs/brush_editor.html
share/gimp/help/C/dialogs/brush_selection.html
share/gimp/help/C/dialogs/convert_to_indexed.html
share/gimp/help/C/dialogs/copy_named.html
share/gimp/help/C/dialogs/cut_named.html
share/gimp/help/C/dialogs/device_status.html
share/gimp/help/C/dialogs/document_index.html
share/gimp/help/C/dialogs/edit_qmask_attributes.html
share/gimp/help/C/dialogs/error_console.html
share/gimp/help/C/dialogs/feather_selection.html
share/gimp/help/C/dialogs/file_new.html
share/gimp/help/C/dialogs/file_open.html
share/gimp/help/C/dialogs/file_save.html
share/gimp/help/C/dialogs/gradient_selection.html
share/gimp/help/C/dialogs/grow_selection.html
share/gimp/help/C/dialogs/help.html
share/gimp/help/C/dialogs/index.html
share/gimp/help/C/dialogs/indexed_palette.html
share/gimp/help/C/dialogs/info_window.html
share/gimp/help/C/dialogs/input_devices.html
share/gimp/help/C/dialogs/layers_and_channels.html
share/gimp/help/C/dialogs/module_browser.html
share/gimp/help/C/dialogs/navigation_window.html
share/gimp/help/C/dialogs/offset.html
share/gimp/help/C/dialogs/palette_selection.html
share/gimp/help/C/dialogs/paste_named.html
share/gimp/help/C/dialogs/pattern_selection.html
share/gimp/help/C/dialogs/really_close.html
share/gimp/help/C/dialogs/really_quit.html
share/gimp/help/C/dialogs/resize_image.html
share/gimp/help/C/dialogs/scale_image.html
share/gimp/help/C/dialogs/shrink_selection.html
share/gimp/help/C/dialogs/tip_of_the_day.html
share/gimp/help/C/dialogs/tool_options.html
share/gimp/help/C/dialogs/undo_history.html
share/gimp/help/C/tools/airbrush.html
share/gimp/help/C/tools/bezier_select.html
share/gimp/help/C/tools/blend.html
share/gimp/help/C/tools/brightness_contrast.html
share/gimp/help/C/tools/bucket_fill.html
share/gimp/help/C/tools/by_color_select.html
share/gimp/help/C/tools/clone.html
share/gimp/help/C/tools/color_balance.html
share/gimp/help/C/tools/color_picker.html
share/gimp/help/C/tools/convolve.html
share/gimp/help/C/tools/crop.html
share/gimp/help/C/tools/curves.html
share/gimp/help/C/tools/dodgeburn.html
share/gimp/help/C/tools/ellipse_select.html
share/gimp/help/C/tools/eraser.html
share/gimp/help/C/tools/flip.html
share/gimp/help/C/tools/free_select.html
share/gimp/help/C/tools/fuzzy_select.html
share/gimp/help/C/tools/histogram.html
share/gimp/help/C/tools/hue_saturation.html
share/gimp/help/C/tools/index.html
share/gimp/help/C/tools/ink.html
share/gimp/help/C/tools/intelligent_scissors.html
share/gimp/help/C/tools/levels.html
share/gimp/help/C/tools/magnify.html
share/gimp/help/C/tools/measure.html
share/gimp/help/C/tools/move.html
share/gimp/help/C/tools/paintbrush.html
share/gimp/help/C/tools/path.html
share/gimp/help/C/tools/pencil.html
share/gimp/help/C/tools/posterize.html
share/gimp/help/C/tools/rect_select.html
share/gimp/help/C/tools/smudge.html
share/gimp/help/C/tools/text.html
share/gimp/help/C/tools/threshold.html
share/gimp/help/C/tools/transform.html
share/gimp/help/C/tools/transform_perspective.html
share/gimp/help/C/tools/transform_rotate.html
share/gimp/help/C/tools/transform_scale.html
share/gimp/help/C/tools/transform_shear.html
share/gimp/help/C/tools/xinput_airbrush.html
share/gimp/help/C/layers/stack/index.html
share/gimp/help/C/layers/stack/stack.html
share/gimp/help/C/layers/add_alpha_channel.html
share/gimp/help/C/layers/alpha_to_selection.html
share/gimp/help/C/layers/anchor_layer.html
share/gimp/help/C/layers/delete_layer.html
share/gimp/help/C/layers/duplicate_layer.html
share/gimp/help/C/layers/flatten_image.html
share/gimp/help/C/layers/index.html
share/gimp/help/C/layers/mask_to_selection.html
share/gimp/help/C/layers/merge_down.html
share/gimp/help/C/channels/channel_to_selection.html
share/gimp/help/C/channels/channels.html
share/gimp/help/C/channels/delete_channel.html
share/gimp/help/C/channels/duplicate_channel.html
share/gimp/help/C/channels/index.html
share/gimp/help/C/channels/lower_channel.html
share/gimp/help/C/channels/raise_channel.html
share/gimp/help/C/paths/copy_path.html
share/gimp/help/C/paths/delete_path.html
share/gimp/help/C/paths/duplicate_path.html
share/gimp/help/C/paths/index.html
share/gimp/help/C/paths/new_path.html
share/gimp/help/C/paths/paste_path.html
share/gimp/help/C/paths/path_to_selection.html
share/gimp/help/C/paths/stroke_path.html
share/gimp/help/C/toolbox/index.html
share/gimp/help/C/toolbox/toolbox.html
share/gimp/help/C/image/edit/clear.html
share/gimp/help/C/image/edit/copy.html
share/gimp/help/C/image/edit/cut.html
share/gimp/help/C/image/edit/fill.html
share/gimp/help/C/image/edit/index.html
share/gimp/help/C/image/edit/paste.html
share/gimp/help/C/image/edit/paste_as_new.html
share/gimp/help/C/image/edit/paste_into.html
share/gimp/help/C/image/edit/redo.html
share/gimp/help/C/image/edit/stroke.html
share/gimp/help/C/image/edit/undo.html
share/gimp/help/C/image/select/all.html
share/gimp/help/C/image/select/float.html
share/gimp/help/C/image/select/index.html
share/gimp/help/C/image/select/invert.html
share/gimp/help/C/image/select/none.html
share/gimp/help/C/image/select/save_to_channel.html
share/gimp/help/C/image/select/sharpen.html
share/gimp/help/C/image/view/dot_for_dot.html
share/gimp/help/C/image/view/index.html
share/gimp/help/C/image/view/new_view.html
share/gimp/help/C/image/view/shrink_wrap.html
share/gimp/help/C/image/view/snap_to_guides.html
share/gimp/help/C/image/view/toggle_guides.html
share/gimp/help/C/image/view/toggle_rulers.html
share/gimp/help/C/image/view/toggle_selection.html
share/gimp/help/C/image/view/toggle_statusbar.html
share/gimp/help/C/image/view/zoom.html
share/gimp/help/C/image/image/transforms/index.html
share/gimp/help/C/image/image/colors/desaturate.html
share/gimp/help/C/image/image/colors/equalize.html
share/gimp/help/C/image/image/colors/index.html
share/gimp/help/C/image/image/colors/invert.html
share/gimp/help/C/image/image/convert_to_grayscale.html
share/gimp/help/C/image/image/convert_to_rgb.html
share/gimp/help/C/image/image/duplicate.html
share/gimp/help/C/image/image/index.html
share/gimp/help/C/image/image_window.html
share/gimp/help/C/image/index.html
share/gimp/help/C/open/index.html
share/gimp/help/C/open/open_by_extension.html
share/gimp/help/C/save/index.html
share/gimp/help/C/save/save_by_extension.html
share/gimp/help/C/filters/alienmap.html
share/gimp/help/C/filters/alienmap2.html
share/gimp/help/C/filters/align_layers.html
share/gimp/help/C/filters/animationplay.html
share/gimp/help/C/filters/animoptimize.html
share/gimp/help/C/filters/apply_lens.html
share/gimp/help/C/filters/autocrop.html
share/gimp/help/C/filters/autostretch_hsv.html
share/gimp/help/C/filters/blinds.html
share/gimp/help/C/filters/blur.html
share/gimp/help/C/filters/bmp.html
share/gimp/help/C/filters/borderaverage.html
share/gimp/help/C/filters/bumpmap.html
share/gimp/help/C/filters/bz2.html
share/gimp/help/C/filters/c_astretch.html
share/gimp/help/C/filters/cel.html
share/gimp/help/C/filters/checkerboard.html
share/gimp/help/C/filters/cml_explorer.html
share/gimp/help/C/filters/color_enhance.html
share/gimp/help/C/filters/fp.html
share/gimp/help/C/filters/colorify.html
share/gimp/help/C/filters/compose.html
share/gimp/help/C/filters/convmatrix.html
share/gimp/help/C/filters/csource.html
share/gimp/help/C/filters/cubism.html
share/gimp/help/C/filters/curve_bend.html
share/gimp/help/C/filters/dbbrowser.html
share/gimp/help/C/filters/decompose.html
share/gimp/help/C/filters/deinterlace.html
share/gimp/help/C/filters/depthmerge.html
share/gimp/help/C/filters/despeckle.html
share/gimp/help/C/filters/destripe.html
share/gimp/help/C/filters/diffraction.html
share/gimp/help/C/filters/displace.html
share/gimp/help/C/filters/edge.html
share/gimp/help/C/filters/emboss.html
share/gimp/help/C/filters/engrave.html
share/gimp/help/C/filters/exchange.html
share/gimp/help/C/filters/faxg3.html
share/gimp/help/C/filters/film.html
share/gimp/help/C/filters/fits.html
share/gimp/help/C/filters/flame.html
share/gimp/help/C/filters/flarefx.html
share/gimp/help/C/filters/fractalexplorer.html
share/gimp/help/C/filters/fractaltrace.html
share/gimp/help/C/filters/gap_filter.html
share/gimp/help/C/filters/gap_plugins.html
share/gimp/help/C/filters/gauss_iir.html
share/gimp/help/C/filters/gauss_rle.html
share/gimp/help/C/filters/gbr.html
share/gimp/help/C/filters/gdyntext.html
share/gimp/help/C/filters/gee.html
share/gimp/help/C/filters/gfig.html
share/gimp/help/C/filters/gflare.html
share/gimp/help/C/filters/gfli.html
share/gimp/help/C/filters/gicon.html
share/gimp/help/C/filters/gif.html
share/gimp/help/C/filters/gifload.html
share/gimp/help/C/filters/gimpressionist.html
share/gimp/help/C/filters/glasstile.html
share/gimp/help/C/filters/gpb.html
share/gimp/help/C/filters/gqbist.html
share/gimp/help/C/filters/gradmap.html
share/gimp/help/C/filters/grid.html
share/gimp/help/C/filters/gtm.html
share/gimp/help/C/filters/guillotine.html
share/gimp/help/C/filters/gz.html
share/gimp/help/C/filters/header.html
share/gimp/help/C/filters/hot.html
share/gimp/help/C/filters/hrz.html
share/gimp/help/C/filters/ifscompose.html
share/gimp/help/C/filters/illusion.html
share/gimp/help/C/filters/imagemap.html
share/gimp/help/C/filters/index.html
share/gimp/help/C/filters/iwarp.html
share/gimp/help/C/filters/jigsaw.html
share/gimp/help/C/filters/jpeg.html
share/gimp/help/C/filters/laplace.html
share/gimp/help/C/filters/lic.html
share/gimp/help/C/filters/lighting.html
share/gimp/help/C/filters/mail.html
share/gimp/help/C/filters/mapcolor.html
share/gimp/help/C/filters/mapobject.html
share/gimp/help/C/filters/max_rgb.html
share/gimp/help/C/filters/maze.html
share/gimp/help/C/filters/mblur.html
share/gimp/help/C/filters/mosaic.html
share/gimp/help/C/filters/nlfilt.html
share/gimp/help/C/filters/newsprint.html
share/gimp/help/C/filters/noisify.html
share/gimp/help/C/filters/normalize.html
share/gimp/help/C/filters/nova.html
share/gimp/help/C/filters/oilify.html
share/gimp/help/C/filters/pagecurl.html
share/gimp/help/C/filters/papertile.html
share/gimp/help/C/filters/pat.html
share/gimp/help/C/filters/pcx.html
share/gimp/help/C/filters/pix.html
share/gimp/help/C/filters/pixelize.html
share/gimp/help/C/filters/plasma.html
share/gimp/help/C/filters/plugindetails.html
share/gimp/help/C/filters/png.html
share/gimp/help/C/filters/pnm.html
share/gimp/help/C/filters/polar.html
share/gimp/help/C/filters/print.html
share/gimp/help/C/filters/ps.html
share/gimp/help/C/filters/psd.html
share/gimp/help/C/filters/psp.html
share/gimp/help/C/filters/randomize.html
share/gimp/help/C/filters/rcm.html
share/gimp/help/C/filters/repeat_last.html
share/gimp/help/C/filters/reshow_last.html
share/gimp/help/C/filters/ripple.html
share/gimp/help/C/filters/rotate.html
share/gimp/help/C/filters/rotators.html
share/gimp/help/C/filters/sample_colorize.html
share/gimp/help/C/filters/scatter_hsv.html
share/gimp/help/C/filters/screenshot.html
share/gimp/help/C/filters/script-fu.html
share/gimp/help/C/filters/sel2path.html
share/gimp/help/C/filters/sel_gauss.html
share/gimp/help/C/filters/semiflatten.html
share/gimp/help/C/filters/sgi.html
share/gimp/help/C/filters/sharpen.html
share/gimp/help/C/filters/shift.html
share/gimp/help/C/filters/sinus.html
share/gimp/help/C/filters/smooth_palette.html
share/gimp/help/C/filters/snoise.html
share/gimp/help/C/filters/sobel.html
share/gimp/help/C/filters/sparkle.html
share/gimp/help/C/filters/spheredesigner.html
share/gimp/help/C/filters/spread.html
share/gimp/help/C/filters/struc.html
share/gimp/help/C/filters/sunras.html
share/gimp/help/C/filters/tga.html
share/gimp/help/C/filters/threshold_alpha.html
share/gimp/help/C/filters/tiff.html
share/gimp/help/C/filters/tile.html
share/gimp/help/C/filters/tileit.html
share/gimp/help/C/filters/tiler.html
share/gimp/help/C/filters/unsharp.html
share/gimp/help/C/filters/url.html
share/gimp/help/C/filters/video.html
share/gimp/help/C/filters/vinvert.html
share/gimp/help/C/filters/vpropagate.html
share/gimp/help/C/filters/warp.html
share/gimp/help/C/filters/waves.html
share/gimp/help/C/filters/webbrowser.html
share/gimp/help/C/filters/whirlpinch.html
share/gimp/help/C/filters/wind.html
share/gimp/help/C/filters/wmf.html
share/gimp/help/C/filters/xbm.html
share/gimp/help/C/filters/xjt.html
share/gimp/help/C/filters/xpm.html
share/gimp/help/C/filters/xwd.html
share/gimp/help/C/filters/zealouscrop.html
share/gimp/help/C/file/close.html
share/gimp/help/C/file/index.html
share/gimp/help/C/file/last_opened.html
share/gimp/help/C/file/quit.html
share/gimp/help/C/file/revert.html
share/gimp/help/C/contents.html
share/gimp/help/C/index.html
share/gimp/help/C/welcome.html
share/gimp/help/images/eek.png
share/gimp/help/images/wilber.png
share/gimp/gtkrc
share/gimp/gtkrc.forest2
share/gimp/palettes/Bears
@ -393,6 +873,8 @@ share/gimp/palettes/Reds
share/gimp/palettes/Reds_And_Purples
share/gimp/palettes/Royal
share/gimp/palettes/Topographic
share/gimp/palettes/Visibone
share/gimp/palettes/Visibone2
share/gimp/palettes/Volcano
share/gimp/palettes/Warm_Colors
share/gimp/palettes/Web
@ -551,6 +1033,12 @@ 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/tips/gimp_tips.txt
share/gimp/tips/gimp_tips.de.txt
share/gimp/tips/gimp_tips.ja.txt
share/gimp/tips/gimp_tips.it.txt
share/gimp/tips/gimp_conseils.fr.txt
share/gimp/tips/gimp_tips.ru.txt
share/gimp/unitrc
share/gimp/user_install
share/locale/de/LC_MESSAGES/gimp.mo
@ -564,6 +1052,41 @@ share/locale/nl/LC_MESSAGES/gimp.mo
share/locale/pl/LC_MESSAGES/gimp.mo
share/locale/ru/LC_MESSAGES/gimp.mo
share/locale/sv/LC_MESSAGES/gimp.mo
@dirrm share/gimp/gflare
@dirrm share/gimp/gimpressionist/Brushes
@dirrm share/gimp/gimpressionist/Paper
@dirrm share/gimp/gimpressionist/Presets
@dirrm share/gimp/gimpressionist
@dirrm share/gimp/tips
@dirrm share/gimp/help/C/dialogs/layers
@dirrm share/gimp/help/C/dialogs/channels
@dirrm share/gimp/help/C/dialogs/paths
@dirrm share/gimp/help/C/dialogs/palette_editor
@dirrm share/gimp/help/C/dialogs/gradient_editor
@dirrm share/gimp/help/C/dialogs/display_filters
@dirrm share/gimp/help/C/dialogs/color_selectors
@dirrm share/gimp/help/C/dialogs/preferences
@dirrm share/gimp/help/C/dialogs
@dirrm share/gimp/help/C/tools
@dirrm share/gimp/help/C/layers/stack
@dirrm share/gimp/help/C/layers
@dirrm share/gimp/help/C/channels
@dirrm share/gimp/help/C/paths
@dirrm share/gimp/help/C/toolbox
@dirrm share/gimp/help/C/image/edit
@dirrm share/gimp/help/C/image/select
@dirrm share/gimp/help/C/image/view
@dirrm share/gimp/help/C/image/image/transforms
@dirrm share/gimp/help/C/image/image/colors
@dirrm share/gimp/help/C/image/image
@dirrm share/gimp/help/C/image
@dirrm share/gimp/help/C/open
@dirrm share/gimp/help/C/save
@dirrm share/gimp/help/C/filters
@dirrm share/gimp/help/C/file
@dirrm share/gimp/help/images
@dirrm share/gimp/help/C
@dirrm share/gimp/help
@dirrm share/gimp/scripts
@dirrm share/gimp/patterns
@dirrm share/gimp/palettes

View file

@ -1,16 +1,16 @@
# New ports collection makefile for: Gimp
# Version required: 1.1.5
# Version required: 1.1.10
# Date created: Mon Nov 18 21:28:43 CST 1996
# Whom: erich@FreeBSD.org
#
# $FreeBSD$
#
DISTNAME= gimp-1.1.5
DISTNAME= gimp-1.1.10
CATEGORIES= graphics
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.5/ \
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.5/ \
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.5/
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.10/ \
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.10/ \
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.10/
MAINTAINER= erich@FreeBSD.org
@ -25,6 +25,7 @@ LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_GMAKE= yes
USE_LIBTOOL= yes

View file

@ -1 +1 @@
MD5 (gimp-1.1.5.tar.gz) = 048e20d9c639e9017292dd5b971d477b
MD5 (gimp-1.1.10.tar.bz2) = a5bf11f5bd1050d9d0ed1fc941f4302c

View file

@ -1,14 +1,15 @@
--- app/main.c.orig Mon Sep 21 17:15:18 1998
+++ app/main.c Tue Sep 29 22:24:17 1998
@@ -16,6 +16,7 @@
--- app/main.c.orig Wed Oct 6 13:55:38 1999
+++ app/main.c Tue Oct 12 13:23:44 1999
@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "config.h"
-
+#include <floatingpoint.h>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
@@ -94,6 +95,9 @@
@@ -117,6 +117,9 @@
/* Initialize variables */
prog_name = argv[0];
@ -16,5 +17,5 @@
+ /* Ignore floating point exceptions */
+ fpsetmask(0);
/* Initialize Gtk toolkit */
gtk_set_locale ();
/* Initialize i18n support */

View file

@ -1,5 +1,5 @@
--- plug-ins/url/url.c.orig Sat May 30 15:32:36 1998
+++ plug-ins/url/url.c Sun Jun 7 10:09:34 1998
--- plug-ins/common/url.c.orig Sat May 30 15:32:36 1998
+++ plug-ins/common/url.c Sun Jun 7 10:09:34 1998
@@ -146,8 +146,8 @@
}
else if (pid == 0)

View file

@ -1,242 +0,0 @@
--- plug-ins/gpc/Makefile.am.orig Wed Nov 18 06:14:51 1998
+++ plug-ins/gpc/Makefile.am Sat Feb 20 17:31:16 1999
@@ -1,11 +1,14 @@
## Process this file with automake to produce Makefile.in
pluginlibdir = $(libdir)
+gimpincludedir = $(includedir)
pluginlib_LIBRARIES = libgpc.a
libgpc_a_SOURCES = \
- gpc.c \
+ gpc.c
+
+gimpinclude_HEADERS = \
gpc.h
INCLUDES = \
--- plug-ins/gpc/Makefile.in.orig Tue Mar 9 02:58:46 1999
+++ plug-ins/gpc/Makefile.in Mon May 10 10:17:48 1999
@@ -162,10 +162,14 @@
prefix = @prefix@
pluginlibdir = $(libdir)
+gimpincludedir = $(includedir)
pluginlib_LIBRARIES = libgpc.a
-libgpc_a_SOURCES = gpc.c gpc.h
+libgpc_a_SOURCES = gpc.c
+
+
+gimpinclude_HEADERS = gpc.h
INCLUDES = -I$(top_srcdir) $(GTK_CFLAGS) -I$(includedir)
@@ -201,6 +205,8 @@
MANS = $(man_MANS)
NROFF = nroff
+HEADERS = $(gimpinclude_HEADERS)
+
DIST_COMMON = Makefile.am Makefile.in
@@ -208,6 +214,7 @@
TAR = tar
GZIP_ENV = --best
+DEP_FILES = .deps/gpc.P
SOURCES = $(libgpc_a_SOURCES)
OBJECTS = $(libgpc_a_OBJECTS)
@@ -215,9 +222,9 @@
.SUFFIXES:
.SUFFIXES: .S .c .lo .o .s
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
- cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps plug-ins/gpc/Makefile
+ cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gpc/Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
@@ -254,9 +261,6 @@
rm -f $(DESTDIR)$(pluginlibdir)/$$p; \
done
-.c.o:
- $(COMPILE) -c $<
-
.s.o:
$(COMPILE) -c $<
@@ -273,9 +277,6 @@
maintainer-clean-compile:
-.c.lo:
- $(LIBTOOL) --mode=compile $(COMPILE) -c $<
-
.s.lo:
$(LIBTOOL) --mode=compile $(COMPILE) -c $<
@@ -336,6 +337,21 @@
@$(NORMAL_UNINSTALL)
$(MAKE) $(AM_MAKEFLAGS) uninstall-man3
+install-gimpincludeHEADERS: $(gimpinclude_HEADERS)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(gimpincludedir)
+ @list='$(gimpinclude_HEADERS)'; for p in $$list; do \
+ if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
+ echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(gimpincludedir)/$$p"; \
+ $(INSTALL_DATA) $$d$$p $(DESTDIR)$(gimpincludedir)/$$p; \
+ done
+
+uninstall-gimpincludeHEADERS:
+ @$(NORMAL_UNINSTALL)
+ list='$(gimpinclude_HEADERS)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(gimpincludedir)/$$p; \
+ done
+
tags: TAGS
ID: $(HEADERS) $(SOURCES) $(LISP)
@@ -370,6 +386,11 @@
subdir = plug-ins/gpc
distdir: $(DISTFILES)
+ here=`cd $(top_builddir) && pwd`; \
+ top_distdir=`cd $(top_distdir) && pwd`; \
+ distdir=`cd $(distdir) && pwd`; \
+ cd $(top_srcdir) \
+ && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu plug-ins/gpc/Makefile
@for file in $(DISTFILES); do \
d=$(srcdir); \
if test -d $$d/$$file; then \
@@ -381,6 +402,37 @@
fi; \
done
+DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
+
+-include $(DEP_FILES)
+
+mostlyclean-depend:
+
+clean-depend:
+
+distclean-depend:
+ -rm -rf .deps
+
+maintainer-clean-depend:
+
+%.o: %.c
+ @echo '$(COMPILE) -c $<'; \
+ $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
+ @-cp .deps/$(*F).pp .deps/$(*F).P; \
+ tr ' ' '\012' < .deps/$(*F).pp \
+ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
+ >> .deps/$(*F).P; \
+ rm .deps/$(*F).pp
+
+%.lo: %.c
+ @echo '$(LTCOMPILE) -c $<'; \
+ $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
+ @-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
+ < .deps/$(*F).pp > .deps/$(*F).P; \
+ tr ' ' '\012' < .deps/$(*F).pp \
+ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
+ >> .deps/$(*F).P; \
+ rm -f .deps/$(*F).pp
info-am:
info: info-am
dvi-am:
@@ -392,20 +444,23 @@
install-exec-am:
install-exec: install-exec-am
-install-data-am: install-pluginlibLIBRARIES install-man
+install-data-am: install-pluginlibLIBRARIES install-man \
+ install-gimpincludeHEADERS
install-data: install-data-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
install: install-am
-uninstall-am: uninstall-pluginlibLIBRARIES uninstall-man
+uninstall-am: uninstall-pluginlibLIBRARIES uninstall-man \
+ uninstall-gimpincludeHEADERS
uninstall: uninstall-am
-all-am: Makefile $(LIBRARIES) $(MANS)
+all-am: Makefile $(LIBRARIES) $(MANS) $(HEADERS)
all-redirect: all-am
install-strip:
$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
installdirs:
- $(mkinstalldirs) $(DESTDIR)$(pluginlibdir) $(DESTDIR)$(mandir)/man3
+ $(mkinstalldirs) $(DESTDIR)$(pluginlibdir) $(DESTDIR)$(mandir)/man3 \
+ $(DESTDIR)$(gimpincludedir)
mostlyclean-generic:
@@ -418,27 +473,27 @@
maintainer-clean-generic:
mostlyclean-am: mostlyclean-pluginlibLIBRARIES mostlyclean-compile \
- mostlyclean-libtool mostlyclean-tags \
+ mostlyclean-libtool mostlyclean-tags mostlyclean-depend \
mostlyclean-generic
mostlyclean: mostlyclean-am
clean-am: clean-pluginlibLIBRARIES clean-compile clean-libtool \
- clean-tags clean-generic mostlyclean-am
+ clean-tags clean-depend clean-generic mostlyclean-am
clean: clean-am
distclean-am: distclean-pluginlibLIBRARIES distclean-compile \
- distclean-libtool distclean-tags distclean-generic \
- clean-am
+ distclean-libtool distclean-tags distclean-depend \
+ distclean-generic clean-am
-rm -f libtool
distclean: distclean-am
maintainer-clean-am: maintainer-clean-pluginlibLIBRARIES \
maintainer-clean-compile maintainer-clean-libtool \
- maintainer-clean-tags maintainer-clean-generic \
- distclean-am
+ maintainer-clean-tags maintainer-clean-depend \
+ maintainer-clean-generic distclean-am
@echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild."
@@ -450,13 +505,15 @@
mostlyclean-compile distclean-compile clean-compile \
maintainer-clean-compile mostlyclean-libtool distclean-libtool \
clean-libtool maintainer-clean-libtool install-man3 uninstall-man3 \
-install-man uninstall-man tags mostlyclean-tags distclean-tags \
-clean-tags maintainer-clean-tags distdir info-am info dvi-am dvi check \
-check-am installcheck-am installcheck install-exec-am install-exec \
-install-data-am install-data install-am install uninstall-am uninstall \
-all-redirect all-am all installdirs mostlyclean-generic \
-distclean-generic clean-generic maintainer-clean-generic clean \
-mostlyclean distclean maintainer-clean
+install-man uninstall-man uninstall-gimpincludeHEADERS \
+install-gimpincludeHEADERS tags mostlyclean-tags distclean-tags \
+clean-tags maintainer-clean-tags distdir mostlyclean-depend \
+distclean-depend clean-depend maintainer-clean-depend info-am info \
+dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
+install-exec install-data-am install-data install-am install \
+uninstall-am uninstall all-redirect all-am all installdirs \
+mostlyclean-generic distclean-generic clean-generic \
+maintainer-clean-generic clean mostlyclean distclean maintainer-clean
.PHONY: files

View file

@ -1,5 +1,5 @@
--- plug-ins/plugindetails/plugindetails.c.orig Sat Mar 27 07:53:38 1999
+++ plug-ins/plugindetails/plugindetails.c Sat May 22 21:24:31 1999
--- plug-ins/common/plugindetails.c.orig Sat Mar 27 07:53:38 1999
+++ plug-ins/common/plugindetails.c Sat May 22 21:24:31 1999
@@ -25,6 +25,7 @@
#include <stdio.h>
#include <string.h>

View file

@ -1,20 +1,16 @@
--- gimptool.in.orig Sat Feb 20 19:48:58 1999
+++ gimptool.in Sat Feb 20 19:49:37 1999
@@ -198,7 +198,7 @@
| --install-script | --install-admin-script)
--- gimptool.in.orig Wed Aug 25 18:49:22 1999
+++ gimptool.in Tue Oct 12 13:31:37 1999
@@ -209,11 +209,11 @@
| --uninstall-script | --uninstall-admin-script )
case $1 in
--install-bin)
--*install-bin)
- install_cmd="@INSTALL_PROGRAM@"
+ install_cmd="@INSTALL_SCRIPT@"
install_dir="$HOME/@gimpdir@/plug-ins"
;;
--install-bin-strip)
@@ -206,7 +206,7 @@
- install_cmd="@INSTALL_PROGRAM@ -s"
+ install_cmd="@INSTALL_SCRIPT@ -s"
install_dir="$HOME/@gimpdir@/plug-ins"
;;
--install-admin-bin)
- install_cmd="@INSTALL_PROGRAM@"
+ install_cmd="@INSTALL_SCRIPT@"
install_dir="$plug_in_dir/plug-ins"
;;
--install-admin-bin-strip)
--*install-admin-bin)

View file

@ -1,6 +1,6 @@
--- configure.orig Tue May 4 06:06:39 1999
+++ configure Sat May 22 21:39:37 1999
@@ -3538,7 +3538,10 @@
--- configure.orig Wed Oct 6 14:00:22 1999
+++ configure Tue Oct 12 13:37:31 1999
@@ -3471,7 +3471,11 @@
cat conftest.$ac_ext >&5
rm -rf conftest*
CATOBJEXT=.mo
@ -9,10 +9,11 @@
+ INTLDEPS='-lintl'
+ INTLLIBS=$INTLDEPS
+ LIBS=`echo $LIBS | sed -e 's/-lintl//'`
+
fi
rm -f conftest*
INSTOBJEXT=.mo
@@ -7165,7 +7168,7 @@
@@ -7108,7 +7112,7 @@
fi
gimpdatadir=$datadir/gimp
@ -21,14 +22,14 @@
localedir='${prefix}/${DATADIRNAME}/locale'
brushdata=`ls -1 $srcdir/data/brushes | grep -v Makefile`
@@ -8746,10 +8749,6 @@
*) # Relative path.
ac_sub_cache_file="$ac_dots$cache_file" ;;
esac
- case "$ac_given_INSTALL" in
- [/$]*) INSTALL="$ac_given_INSTALL" ;;
- *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
- esac
@@ -8513,10 +8517,6 @@
top_srcdir="$ac_dots$ac_given_srcdir" ;;
esac
echo "running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir"
# The eval makes quoting arguments work.
- case "$ac_given_INSTALL" in
- [/$]*) INSTALL="$ac_given_INSTALL" ;;
- *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
- esac
echo creating "$ac_file"
rm -f "$ac_file"

View file

@ -9,16 +9,19 @@ include/gck/gckmath.h
include/gck/gcktypes.h
include/gck/gckui.h
include/gck/gckvector.h
include/gpc.h
include/libgimp/color_display.h
include/libgimp/color_selector.h
include/libgimp/gimp.h
include/libgimp/gimpchainbutton.h
include/libgimp/gimpenums.h
include/libgimp/gimpenv.h
include/libgimp/gimpexport.h
include/libgimp/gimpfeatures.h
include/libgimp/gimpfileselection.h
include/libgimp/gimpintl.h
include/libgimp/gimplimits.h
include/libgimp/gimpmatrix.h
include/libgimp/gimpmath.h
include/libgimp/gimpmenu.h
include/libgimp/gimpmodule.h
include/libgimp/gimppatheditor.h
@ -30,23 +33,26 @@ include/libgimp/gserialize.h
include/libgimp/parasite.h
include/libgimp/parasiteF.h
include/libgimp/parasiteP.h
include/megawidget.h
include/libgimp/parasiteio.h
lib/libgck.a
lib/libgck.so
lib/libgck.so.5
lib/libgck.so.10
lib/libgimp.a
lib/libgimp.so
lib/libgimp.so.5
lib/libgimp.so.10
lib/libgimpui.a
lib/libgimpui.so
lib/libgimpui.so.5
lib/libgimpui.so.10
lib/libgpc.a
lib/libmegawidget.a
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
libexec/gimp/1.1/modules/libcdisplay_gamma.so
libexec/gimp/1.1/modules/libcolorsel_gtk.so
libexec/gimp/1.1/modules/libcolorsel_triangle.so
libexec/gimp/1.1/modules/libcolorsel_water.so
libexec/gimp/1.1/plug-ins/AlienMap
libexec/gimp/1.1/plug-ins/AlienMap2
libexec/gimp/1.1/plug-ins/CEL
libexec/gimp/1.1/plug-ins/CML_explorer
libexec/gimp/1.1/plug-ins/FractalExplorer
@ -68,9 +74,12 @@ libexec/gimp/1.1/plug-ins/bz2
libexec/gimp/1.1/plug-ins/c_astretch
libexec/gimp/1.1/plug-ins/checkerboard
libexec/gimp/1.1/plug-ins/colorify
libexec/gimp/1.1/plug-ins/color_enhance
libexec/gimp/1.1/plug-ins/compose
libexec/gimp/1.1/plug-ins/convmatrix
libexec/gimp/1.1/plug-ins/csource
libexec/gimp/1.1/plug-ins/cubism
libexec/gimp/1.1/plug-ins/curve_bend
libexec/gimp/1.1/plug-ins/dbbrowser
libexec/gimp/1.1/plug-ins/decompose
libexec/gimp/1.1/plug-ins/deinterlace
@ -98,11 +107,14 @@ libexec/gimp/1.1/plug-ins/gbr
libexec/gimp/1.1/plug-ins/gdyntext
libexec/gimp/1.1/plug-ins/gee
libexec/gimp/1.1/plug-ins/gfig
libexec/gimp/1.1/plug-ins/gflare
libexec/gimp/1.1/plug-ins/gfli
libexec/gimp/1.1/plug-ins/gicon
libexec/gimp/1.1/plug-ins/gif
libexec/gimp/1.1/plug-ins/gifload
libexec/gimp/1.1/plug-ins/gimpressionist
libexec/gimp/1.1/plug-ins/glasstile
libexec/gimp/1.1/plug-ins/gpb
libexec/gimp/1.1/plug-ins/gqbist
libexec/gimp/1.1/plug-ins/gradmap
libexec/gimp/1.1/plug-ins/grid
@ -114,6 +126,7 @@ libexec/gimp/1.1/plug-ins/hot
libexec/gimp/1.1/plug-ins/hrz
libexec/gimp/1.1/plug-ins/ifscompose
libexec/gimp/1.1/plug-ins/illusion
libexec/gimp/1.1/plug-ins/imagemap
libexec/gimp/1.1/plug-ins/iwarp
libexec/gimp/1.1/plug-ins/jigsaw
libexec/gimp/1.1/plug-ins/jpeg
@ -133,7 +146,6 @@ libexec/gimp/1.1/plug-ins/normalize
libexec/gimp/1.1/plug-ins/nova
libexec/gimp/1.1/plug-ins/oilify
libexec/gimp/1.1/plug-ins/pagecurl
libexec/gimp/1.1/plug-ins/palette
libexec/gimp/1.1/plug-ins/papertile
libexec/gimp/1.1/plug-ins/pat
libexec/gimp/1.1/plug-ins/pcx
@ -147,14 +159,18 @@ libexec/gimp/1.1/plug-ins/polar
libexec/gimp/1.1/plug-ins/print
libexec/gimp/1.1/plug-ins/ps
libexec/gimp/1.1/plug-ins/psd
libexec/gimp/1.1/plug-ins/psp
libexec/gimp/1.1/plug-ins/randomize
libexec/gimp/1.1/plug-ins/rcm
libexec/gimp/1.1/plug-ins/ripple
libexec/gimp/1.1/plug-ins/rotate
libexec/gimp/1.1/plug-ins/rotators
libexec/gimp/1.1/plug-ins/sample_colorize
libexec/gimp/1.1/plug-ins/scatter_hsv
libexec/gimp/1.1/plug-ins/screenshot
libexec/gimp/1.1/plug-ins/script-fu
libexec/gimp/1.1/plug-ins/sel2path
libexec/gimp/1.1/plug-ins/sel_gauss
libexec/gimp/1.1/plug-ins/semiflatten
libexec/gimp/1.1/plug-ins/sgi
libexec/gimp/1.1/plug-ins/sharpen
@ -164,6 +180,7 @@ libexec/gimp/1.1/plug-ins/smooth_palette
libexec/gimp/1.1/plug-ins/snoise
libexec/gimp/1.1/plug-ins/sobel
libexec/gimp/1.1/plug-ins/sparkle
libexec/gimp/1.1/plug-ins/spheredesigner
libexec/gimp/1.1/plug-ins/spread
libexec/gimp/1.1/plug-ins/struc
libexec/gimp/1.1/plug-ins/sunras
@ -173,11 +190,12 @@ libexec/gimp/1.1/plug-ins/tiff
libexec/gimp/1.1/plug-ins/tile
libexec/gimp/1.1/plug-ins/tileit
libexec/gimp/1.1/plug-ins/tiler
libexec/gimp/1.1/plug-ins/unsharp
libexec/gimp/1.1/plug-ins/url
libexec/gimp/1.1/plug-ins/video
libexec/gimp/1.1/plug-ins/vinvert
libexec/gimp/1.1/plug-ins/vpropagate
libexec/gimp/1.1/plug-ins/waterselect
libexec/gimp/1.1/plug-ins/warp
libexec/gimp/1.1/plug-ins/waves
libexec/gimp/1.1/plug-ins/webbrowser
libexec/gimp/1.1/plug-ins/whirlpinch
@ -226,9 +244,10 @@ share/gimp/brushes/dunes.gbr
share/gimp/brushes/galaxy.gbr
share/gimp/brushes/galaxy_big.gbr
share/gimp/brushes/galaxy_small.gbr
share/gimp/brushes/pepper.gpb
share/gimp/brushes/pixel.gbr
share/gimp/brushes/round1.vbr
share/gimp/brushes/thegimp.gbr
share/gimp/brushes/vine.gih
share/gimp/brushes/xcf.gbr
share/gimp/fractalexplorer/Asteroid_Field
share/gimp/fractalexplorer/Bar_Code_Label
@ -273,10 +292,107 @@ 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/Distant_Sun
share/gimp/gflare/Default
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/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/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/gimp1_1_splash.ppm
share/gimp/gimp_logo.ppm
share/gimp/gimp_splash.ppm
share/gimp/gimp_tips.txt
share/gimp/gimprc
share/gimp/gimprc_user
share/gimp/gradients/Abstract_1
@ -357,6 +473,370 @@ share/gimp/gradients/Wood_1
share/gimp/gradients/Wood_2
share/gimp/gradients/Yellow_Contrast
share/gimp/gradients/Yellow_Orange
share/gimp/help/C/dialogs/layers/add_mask.html
share/gimp/help/C/dialogs/layers/apply_mask.html
share/gimp/help/C/dialogs/layers/edit_layer_attributes.html
share/gimp/help/C/dialogs/layers/index.html
share/gimp/help/C/dialogs/layers/layers.html
share/gimp/help/C/dialogs/layers/merge_visible_layers.html
share/gimp/help/C/dialogs/layers/new_layer.html
share/gimp/help/C/dialogs/layers/resize_layer.html
share/gimp/help/C/dialogs/layers/scale_layer.html
share/gimp/help/C/dialogs/channels/channels.html
share/gimp/help/C/dialogs/channels/edit_channel_attributes.html
share/gimp/help/C/dialogs/channels/index.html
share/gimp/help/C/dialogs/channels/new_channel.html
share/gimp/help/C/dialogs/paths/export_path.html
share/gimp/help/C/dialogs/paths/import_path.html
share/gimp/help/C/dialogs/paths/index.html
share/gimp/help/C/dialogs/paths/paths.html
share/gimp/help/C/dialogs/paths/rename_path.html
share/gimp/help/C/dialogs/palette_editor/import_palette.html
share/gimp/help/C/dialogs/palette_editor/index.html
share/gimp/help/C/dialogs/palette_editor/merge_palette.html
share/gimp/help/C/dialogs/palette_editor/new_palette.html
share/gimp/help/C/dialogs/palette_editor/palette_editor.html
share/gimp/help/C/dialogs/gradient_editor/copy_gradient.html
share/gimp/help/C/dialogs/gradient_editor/delete_gradient.html
share/gimp/help/C/dialogs/gradient_editor/gradient_editor.html
share/gimp/help/C/dialogs/gradient_editor/index.html
share/gimp/help/C/dialogs/gradient_editor/new_gradient.html
share/gimp/help/C/dialogs/gradient_editor/rename_gradient.html
share/gimp/help/C/dialogs/gradient_editor/replicate_segment.html
share/gimp/help/C/dialogs/gradient_editor/save_as_pov_ray.html
share/gimp/help/C/dialogs/gradient_editor/split_segments_uniformly.html
share/gimp/help/C/dialogs/display_filters/display_filters.html
share/gimp/help/C/dialogs/display_filters/gamma.html
share/gimp/help/C/dialogs/display_filters/index.html
share/gimp/help/C/dialogs/color_selectors/built_in.html
share/gimp/help/C/dialogs/color_selectors/gtk.html
share/gimp/help/C/dialogs/color_selectors/index.html
share/gimp/help/C/dialogs/color_selectors/triangle.html
share/gimp/help/C/dialogs/color_selectors/watercolor.html
share/gimp/help/C/dialogs/preferences/directories.html
share/gimp/help/C/dialogs/preferences/display.html
share/gimp/help/C/dialogs/preferences/environment.html
share/gimp/help/C/dialogs/preferences/index.html
share/gimp/help/C/dialogs/preferences/interface.html
share/gimp/help/C/dialogs/preferences/monitor.html
share/gimp/help/C/dialogs/preferences/new_file.html
share/gimp/help/C/dialogs/preferences/preferences.html
share/gimp/help/C/dialogs/preferences/session.html
share/gimp/help/C/dialogs/about.html
share/gimp/help/C/dialogs/border_selection.html
share/gimp/help/C/dialogs/brush_editor.html
share/gimp/help/C/dialogs/brush_selection.html
share/gimp/help/C/dialogs/convert_to_indexed.html
share/gimp/help/C/dialogs/copy_named.html
share/gimp/help/C/dialogs/cut_named.html
share/gimp/help/C/dialogs/device_status.html
share/gimp/help/C/dialogs/document_index.html
share/gimp/help/C/dialogs/edit_qmask_attributes.html
share/gimp/help/C/dialogs/error_console.html
share/gimp/help/C/dialogs/feather_selection.html
share/gimp/help/C/dialogs/file_new.html
share/gimp/help/C/dialogs/file_open.html
share/gimp/help/C/dialogs/file_save.html
share/gimp/help/C/dialogs/gradient_selection.html
share/gimp/help/C/dialogs/grow_selection.html
share/gimp/help/C/dialogs/help.html
share/gimp/help/C/dialogs/index.html
share/gimp/help/C/dialogs/indexed_palette.html
share/gimp/help/C/dialogs/info_window.html
share/gimp/help/C/dialogs/input_devices.html
share/gimp/help/C/dialogs/layers_and_channels.html
share/gimp/help/C/dialogs/module_browser.html
share/gimp/help/C/dialogs/navigation_window.html
share/gimp/help/C/dialogs/offset.html
share/gimp/help/C/dialogs/palette_selection.html
share/gimp/help/C/dialogs/paste_named.html
share/gimp/help/C/dialogs/pattern_selection.html
share/gimp/help/C/dialogs/really_close.html
share/gimp/help/C/dialogs/really_quit.html
share/gimp/help/C/dialogs/resize_image.html
share/gimp/help/C/dialogs/scale_image.html
share/gimp/help/C/dialogs/shrink_selection.html
share/gimp/help/C/dialogs/tip_of_the_day.html
share/gimp/help/C/dialogs/tool_options.html
share/gimp/help/C/dialogs/undo_history.html
share/gimp/help/C/tools/airbrush.html
share/gimp/help/C/tools/bezier_select.html
share/gimp/help/C/tools/blend.html
share/gimp/help/C/tools/brightness_contrast.html
share/gimp/help/C/tools/bucket_fill.html
share/gimp/help/C/tools/by_color_select.html
share/gimp/help/C/tools/clone.html
share/gimp/help/C/tools/color_balance.html
share/gimp/help/C/tools/color_picker.html
share/gimp/help/C/tools/convolve.html
share/gimp/help/C/tools/crop.html
share/gimp/help/C/tools/curves.html
share/gimp/help/C/tools/dodgeburn.html
share/gimp/help/C/tools/ellipse_select.html
share/gimp/help/C/tools/eraser.html
share/gimp/help/C/tools/flip.html
share/gimp/help/C/tools/free_select.html
share/gimp/help/C/tools/fuzzy_select.html
share/gimp/help/C/tools/histogram.html
share/gimp/help/C/tools/hue_saturation.html
share/gimp/help/C/tools/index.html
share/gimp/help/C/tools/ink.html
share/gimp/help/C/tools/intelligent_scissors.html
share/gimp/help/C/tools/levels.html
share/gimp/help/C/tools/magnify.html
share/gimp/help/C/tools/measure.html
share/gimp/help/C/tools/move.html
share/gimp/help/C/tools/paintbrush.html
share/gimp/help/C/tools/path.html
share/gimp/help/C/tools/pencil.html
share/gimp/help/C/tools/posterize.html
share/gimp/help/C/tools/rect_select.html
share/gimp/help/C/tools/smudge.html
share/gimp/help/C/tools/text.html
share/gimp/help/C/tools/threshold.html
share/gimp/help/C/tools/transform.html
share/gimp/help/C/tools/transform_perspective.html
share/gimp/help/C/tools/transform_rotate.html
share/gimp/help/C/tools/transform_scale.html
share/gimp/help/C/tools/transform_shear.html
share/gimp/help/C/tools/xinput_airbrush.html
share/gimp/help/C/layers/stack/index.html
share/gimp/help/C/layers/stack/stack.html
share/gimp/help/C/layers/add_alpha_channel.html
share/gimp/help/C/layers/alpha_to_selection.html
share/gimp/help/C/layers/anchor_layer.html
share/gimp/help/C/layers/delete_layer.html
share/gimp/help/C/layers/duplicate_layer.html
share/gimp/help/C/layers/flatten_image.html
share/gimp/help/C/layers/index.html
share/gimp/help/C/layers/mask_to_selection.html
share/gimp/help/C/layers/merge_down.html
share/gimp/help/C/channels/channel_to_selection.html
share/gimp/help/C/channels/channels.html
share/gimp/help/C/channels/delete_channel.html
share/gimp/help/C/channels/duplicate_channel.html
share/gimp/help/C/channels/index.html
share/gimp/help/C/channels/lower_channel.html
share/gimp/help/C/channels/raise_channel.html
share/gimp/help/C/paths/copy_path.html
share/gimp/help/C/paths/delete_path.html
share/gimp/help/C/paths/duplicate_path.html
share/gimp/help/C/paths/index.html
share/gimp/help/C/paths/new_path.html
share/gimp/help/C/paths/paste_path.html
share/gimp/help/C/paths/path_to_selection.html
share/gimp/help/C/paths/stroke_path.html
share/gimp/help/C/toolbox/index.html
share/gimp/help/C/toolbox/toolbox.html
share/gimp/help/C/image/edit/clear.html
share/gimp/help/C/image/edit/copy.html
share/gimp/help/C/image/edit/cut.html
share/gimp/help/C/image/edit/fill.html
share/gimp/help/C/image/edit/index.html
share/gimp/help/C/image/edit/paste.html
share/gimp/help/C/image/edit/paste_as_new.html
share/gimp/help/C/image/edit/paste_into.html
share/gimp/help/C/image/edit/redo.html
share/gimp/help/C/image/edit/stroke.html
share/gimp/help/C/image/edit/undo.html
share/gimp/help/C/image/select/all.html
share/gimp/help/C/image/select/float.html
share/gimp/help/C/image/select/index.html
share/gimp/help/C/image/select/invert.html
share/gimp/help/C/image/select/none.html
share/gimp/help/C/image/select/save_to_channel.html
share/gimp/help/C/image/select/sharpen.html
share/gimp/help/C/image/view/dot_for_dot.html
share/gimp/help/C/image/view/index.html
share/gimp/help/C/image/view/new_view.html
share/gimp/help/C/image/view/shrink_wrap.html
share/gimp/help/C/image/view/snap_to_guides.html
share/gimp/help/C/image/view/toggle_guides.html
share/gimp/help/C/image/view/toggle_rulers.html
share/gimp/help/C/image/view/toggle_selection.html
share/gimp/help/C/image/view/toggle_statusbar.html
share/gimp/help/C/image/view/zoom.html
share/gimp/help/C/image/image/transforms/index.html
share/gimp/help/C/image/image/colors/desaturate.html
share/gimp/help/C/image/image/colors/equalize.html
share/gimp/help/C/image/image/colors/index.html
share/gimp/help/C/image/image/colors/invert.html
share/gimp/help/C/image/image/convert_to_grayscale.html
share/gimp/help/C/image/image/convert_to_rgb.html
share/gimp/help/C/image/image/duplicate.html
share/gimp/help/C/image/image/index.html
share/gimp/help/C/image/image_window.html
share/gimp/help/C/image/index.html
share/gimp/help/C/open/index.html
share/gimp/help/C/open/open_by_extension.html
share/gimp/help/C/save/index.html
share/gimp/help/C/save/save_by_extension.html
share/gimp/help/C/filters/alienmap.html
share/gimp/help/C/filters/alienmap2.html
share/gimp/help/C/filters/align_layers.html
share/gimp/help/C/filters/animationplay.html
share/gimp/help/C/filters/animoptimize.html
share/gimp/help/C/filters/apply_lens.html
share/gimp/help/C/filters/autocrop.html
share/gimp/help/C/filters/autostretch_hsv.html
share/gimp/help/C/filters/blinds.html
share/gimp/help/C/filters/blur.html
share/gimp/help/C/filters/bmp.html
share/gimp/help/C/filters/borderaverage.html
share/gimp/help/C/filters/bumpmap.html
share/gimp/help/C/filters/bz2.html
share/gimp/help/C/filters/c_astretch.html
share/gimp/help/C/filters/cel.html
share/gimp/help/C/filters/checkerboard.html
share/gimp/help/C/filters/cml_explorer.html
share/gimp/help/C/filters/color_enhance.html
share/gimp/help/C/filters/fp.html
share/gimp/help/C/filters/colorify.html
share/gimp/help/C/filters/compose.html
share/gimp/help/C/filters/convmatrix.html
share/gimp/help/C/filters/csource.html
share/gimp/help/C/filters/cubism.html
share/gimp/help/C/filters/curve_bend.html
share/gimp/help/C/filters/dbbrowser.html
share/gimp/help/C/filters/decompose.html
share/gimp/help/C/filters/deinterlace.html
share/gimp/help/C/filters/depthmerge.html
share/gimp/help/C/filters/despeckle.html
share/gimp/help/C/filters/destripe.html
share/gimp/help/C/filters/diffraction.html
share/gimp/help/C/filters/displace.html
share/gimp/help/C/filters/edge.html
share/gimp/help/C/filters/emboss.html
share/gimp/help/C/filters/engrave.html
share/gimp/help/C/filters/exchange.html
share/gimp/help/C/filters/faxg3.html
share/gimp/help/C/filters/film.html
share/gimp/help/C/filters/fits.html
share/gimp/help/C/filters/flame.html
share/gimp/help/C/filters/flarefx.html
share/gimp/help/C/filters/fractalexplorer.html
share/gimp/help/C/filters/fractaltrace.html
share/gimp/help/C/filters/gap_filter.html
share/gimp/help/C/filters/gap_plugins.html
share/gimp/help/C/filters/gauss_iir.html
share/gimp/help/C/filters/gauss_rle.html
share/gimp/help/C/filters/gbr.html
share/gimp/help/C/filters/gdyntext.html
share/gimp/help/C/filters/gee.html
share/gimp/help/C/filters/gfig.html
share/gimp/help/C/filters/gflare.html
share/gimp/help/C/filters/gfli.html
share/gimp/help/C/filters/gicon.html
share/gimp/help/C/filters/gif.html
share/gimp/help/C/filters/gifload.html
share/gimp/help/C/filters/gimpressionist.html
share/gimp/help/C/filters/glasstile.html
share/gimp/help/C/filters/gpb.html
share/gimp/help/C/filters/gqbist.html
share/gimp/help/C/filters/gradmap.html
share/gimp/help/C/filters/grid.html
share/gimp/help/C/filters/gtm.html
share/gimp/help/C/filters/guillotine.html
share/gimp/help/C/filters/gz.html
share/gimp/help/C/filters/header.html
share/gimp/help/C/filters/hot.html
share/gimp/help/C/filters/hrz.html
share/gimp/help/C/filters/ifscompose.html
share/gimp/help/C/filters/illusion.html
share/gimp/help/C/filters/imagemap.html
share/gimp/help/C/filters/index.html
share/gimp/help/C/filters/iwarp.html
share/gimp/help/C/filters/jigsaw.html
share/gimp/help/C/filters/jpeg.html
share/gimp/help/C/filters/laplace.html
share/gimp/help/C/filters/lic.html
share/gimp/help/C/filters/lighting.html
share/gimp/help/C/filters/mail.html
share/gimp/help/C/filters/mapcolor.html
share/gimp/help/C/filters/mapobject.html
share/gimp/help/C/filters/max_rgb.html
share/gimp/help/C/filters/maze.html
share/gimp/help/C/filters/mblur.html
share/gimp/help/C/filters/mosaic.html
share/gimp/help/C/filters/nlfilt.html
share/gimp/help/C/filters/newsprint.html
share/gimp/help/C/filters/noisify.html
share/gimp/help/C/filters/normalize.html
share/gimp/help/C/filters/nova.html
share/gimp/help/C/filters/oilify.html
share/gimp/help/C/filters/pagecurl.html
share/gimp/help/C/filters/papertile.html
share/gimp/help/C/filters/pat.html
share/gimp/help/C/filters/pcx.html
share/gimp/help/C/filters/pix.html
share/gimp/help/C/filters/pixelize.html
share/gimp/help/C/filters/plasma.html
share/gimp/help/C/filters/plugindetails.html
share/gimp/help/C/filters/png.html
share/gimp/help/C/filters/pnm.html
share/gimp/help/C/filters/polar.html
share/gimp/help/C/filters/print.html
share/gimp/help/C/filters/ps.html
share/gimp/help/C/filters/psd.html
share/gimp/help/C/filters/psp.html
share/gimp/help/C/filters/randomize.html
share/gimp/help/C/filters/rcm.html
share/gimp/help/C/filters/repeat_last.html
share/gimp/help/C/filters/reshow_last.html
share/gimp/help/C/filters/ripple.html
share/gimp/help/C/filters/rotate.html
share/gimp/help/C/filters/rotators.html
share/gimp/help/C/filters/sample_colorize.html
share/gimp/help/C/filters/scatter_hsv.html
share/gimp/help/C/filters/screenshot.html
share/gimp/help/C/filters/script-fu.html
share/gimp/help/C/filters/sel2path.html
share/gimp/help/C/filters/sel_gauss.html
share/gimp/help/C/filters/semiflatten.html
share/gimp/help/C/filters/sgi.html
share/gimp/help/C/filters/sharpen.html
share/gimp/help/C/filters/shift.html
share/gimp/help/C/filters/sinus.html
share/gimp/help/C/filters/smooth_palette.html
share/gimp/help/C/filters/snoise.html
share/gimp/help/C/filters/sobel.html
share/gimp/help/C/filters/sparkle.html
share/gimp/help/C/filters/spheredesigner.html
share/gimp/help/C/filters/spread.html
share/gimp/help/C/filters/struc.html
share/gimp/help/C/filters/sunras.html
share/gimp/help/C/filters/tga.html
share/gimp/help/C/filters/threshold_alpha.html
share/gimp/help/C/filters/tiff.html
share/gimp/help/C/filters/tile.html
share/gimp/help/C/filters/tileit.html
share/gimp/help/C/filters/tiler.html
share/gimp/help/C/filters/unsharp.html
share/gimp/help/C/filters/url.html
share/gimp/help/C/filters/video.html
share/gimp/help/C/filters/vinvert.html
share/gimp/help/C/filters/vpropagate.html
share/gimp/help/C/filters/warp.html
share/gimp/help/C/filters/waves.html
share/gimp/help/C/filters/webbrowser.html
share/gimp/help/C/filters/whirlpinch.html
share/gimp/help/C/filters/wind.html
share/gimp/help/C/filters/wmf.html
share/gimp/help/C/filters/xbm.html
share/gimp/help/C/filters/xjt.html
share/gimp/help/C/filters/xpm.html
share/gimp/help/C/filters/xwd.html
share/gimp/help/C/filters/zealouscrop.html
share/gimp/help/C/file/close.html
share/gimp/help/C/file/index.html
share/gimp/help/C/file/last_opened.html
share/gimp/help/C/file/quit.html
share/gimp/help/C/file/revert.html
share/gimp/help/C/contents.html
share/gimp/help/C/index.html
share/gimp/help/C/welcome.html
share/gimp/help/images/eek.png
share/gimp/help/images/wilber.png
share/gimp/gtkrc
share/gimp/gtkrc.forest2
share/gimp/palettes/Bears
@ -393,6 +873,8 @@ share/gimp/palettes/Reds
share/gimp/palettes/Reds_And_Purples
share/gimp/palettes/Royal
share/gimp/palettes/Topographic
share/gimp/palettes/Visibone
share/gimp/palettes/Visibone2
share/gimp/palettes/Volcano
share/gimp/palettes/Warm_Colors
share/gimp/palettes/Web
@ -551,6 +1033,12 @@ 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/tips/gimp_tips.txt
share/gimp/tips/gimp_tips.de.txt
share/gimp/tips/gimp_tips.ja.txt
share/gimp/tips/gimp_tips.it.txt
share/gimp/tips/gimp_conseils.fr.txt
share/gimp/tips/gimp_tips.ru.txt
share/gimp/unitrc
share/gimp/user_install
share/locale/de/LC_MESSAGES/gimp.mo
@ -564,6 +1052,41 @@ share/locale/nl/LC_MESSAGES/gimp.mo
share/locale/pl/LC_MESSAGES/gimp.mo
share/locale/ru/LC_MESSAGES/gimp.mo
share/locale/sv/LC_MESSAGES/gimp.mo
@dirrm share/gimp/gflare
@dirrm share/gimp/gimpressionist/Brushes
@dirrm share/gimp/gimpressionist/Paper
@dirrm share/gimp/gimpressionist/Presets
@dirrm share/gimp/gimpressionist
@dirrm share/gimp/tips
@dirrm share/gimp/help/C/dialogs/layers
@dirrm share/gimp/help/C/dialogs/channels
@dirrm share/gimp/help/C/dialogs/paths
@dirrm share/gimp/help/C/dialogs/palette_editor
@dirrm share/gimp/help/C/dialogs/gradient_editor
@dirrm share/gimp/help/C/dialogs/display_filters
@dirrm share/gimp/help/C/dialogs/color_selectors
@dirrm share/gimp/help/C/dialogs/preferences
@dirrm share/gimp/help/C/dialogs
@dirrm share/gimp/help/C/tools
@dirrm share/gimp/help/C/layers/stack
@dirrm share/gimp/help/C/layers
@dirrm share/gimp/help/C/channels
@dirrm share/gimp/help/C/paths
@dirrm share/gimp/help/C/toolbox
@dirrm share/gimp/help/C/image/edit
@dirrm share/gimp/help/C/image/select
@dirrm share/gimp/help/C/image/view
@dirrm share/gimp/help/C/image/image/transforms
@dirrm share/gimp/help/C/image/image/colors
@dirrm share/gimp/help/C/image/image
@dirrm share/gimp/help/C/image
@dirrm share/gimp/help/C/open
@dirrm share/gimp/help/C/save
@dirrm share/gimp/help/C/filters
@dirrm share/gimp/help/C/file
@dirrm share/gimp/help/images
@dirrm share/gimp/help/C
@dirrm share/gimp/help
@dirrm share/gimp/scripts
@dirrm share/gimp/patterns
@dirrm share/gimp/palettes