mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
* Update to 1.3.12
* Add optional support for Python-Fu [1] * De-pkg-comment * Remove dead mpeg support PR: 48181 [1] Submitted by: Martin Klaffenboeck <martin.klaffenboeck@gmx.at> [1]
This commit is contained in:
parent
aa6d97e76b
commit
271f7e64f1
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=75864
40 changed files with 1215 additions and 685 deletions
|
@ -39,6 +39,8 @@ USE_X_PREFIX= yes
|
||||||
USE_XPM= yes
|
USE_XPM= yes
|
||||||
USE_GMAKE= yes
|
USE_GMAKE= yes
|
||||||
USE_LIBTOOL= yes
|
USE_LIBTOOL= yes
|
||||||
|
USE_GNOMENG= yes
|
||||||
|
USE_GNOME= gnomehack
|
||||||
INSTALLS_SHLIB= yes
|
INSTALLS_SHLIB= yes
|
||||||
USE_REINPLACE= yes
|
USE_REINPLACE= yes
|
||||||
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
|
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
|
||||||
|
@ -46,22 +48,28 @@ PLIST_SUB= SHLIBVER="${SHLIBVER}"
|
||||||
CONFIGURE_ARGS= --disable-perl \
|
CONFIGURE_ARGS= --disable-perl \
|
||||||
--with-html-dir=${PREFIX}/share/doc/gimp \
|
--with-html-dir=${PREFIX}/share/doc/gimp \
|
||||||
--disable-gtk-doc
|
--disable-gtk-doc
|
||||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include -I${MPEG_WRKSRC}" \
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||||
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
||||||
|
|
||||||
GIMP_DISTFILE= ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
|
GIMP_DISTFILE= ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
|
||||||
MPEG_DISTFILE= ${DISTDIR}/mpeg_lib-1.3.1.tar.gz
|
|
||||||
MPEG_WRKSRC= ${WRKDIR}/mpeg_lib-1.3.1
|
|
||||||
MPEG_CONFIGURE_ENV= OPTIMIZE="${CFLAGS}"
|
|
||||||
MPEG_CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
||||||
--target=${ARCH}-unknown-freebsd${OSREL}
|
|
||||||
|
|
||||||
MAN1= gimp-1.3.1 gimptool-1.3.1 gimp-remote-1.3.1
|
MAN1= gimp-1.3.1 gimptool-1.3.1 gimp-remote-1.3.1
|
||||||
MAN5= gimprc-1.3.5
|
MAN5= gimprc-1.3.5
|
||||||
|
|
||||||
|
.if defined(WITH_PYTHON)
|
||||||
|
USE_PYTHON= yes
|
||||||
|
BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/_gtkmodule.so:${PORTSDIR}/x11-toolkits/py-gtk2
|
||||||
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/_gtkmodule.so:${PORTSDIR}/x11-toolkits/py-gtk2
|
||||||
|
CONFIGURE_ARGS+= --enable-python
|
||||||
|
PLIST_SUB+= PYTHON:=""
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+= --disable-python
|
||||||
|
PLIST_SUB+= PYTHON:="@comment "
|
||||||
|
.endif
|
||||||
|
|
||||||
.if exists(${X11BASE}/libdata/pkgconfig/libpanelapplet-2.0.pc)
|
.if exists(${X11BASE}/libdata/pkgconfig/libpanelapplet-2.0.pc)
|
||||||
RUN_DEPENDS+= gnome-panel:${PORTSDIR}/x11/gnomepanel
|
RUN_DEPENDS+= gnome-panel:${PORTSDIR}/x11/gnomepanel
|
||||||
CONFIGURE_ARGS+= --with-gnome-desktop=${X11BASE}/share/gnome/applications
|
CONFIGURE_ARGS+= --with-gnome-datadir=${X11BASE}/share/gnome
|
||||||
PLIST_SUB+= GNOME:=""
|
PLIST_SUB+= GNOME:=""
|
||||||
.else
|
.else
|
||||||
PLIST_SUB+= GNOME:="@comment "
|
PLIST_SUB+= GNOME:="@comment "
|
||||||
|
@ -71,28 +79,11 @@ PLIST_SUB+= GNOME:="@comment "
|
||||||
#LIB_DEPENDS+= gtkhtml-2.0:${PORTSDIR}/www/libgtkhtml
|
#LIB_DEPENDS+= gtkhtml-2.0:${PORTSDIR}/www/libgtkhtml
|
||||||
#.endif
|
#.endif
|
||||||
|
|
||||||
do-extract:
|
pre-everything::
|
||||||
@${MKDIR} ${WRKDIR}
|
@${ECHO_MSG} ""
|
||||||
@(cd ${WRKDIR} && ${BZIP2_CMD} -dc ${GIMP_DISTFILE} | ${TAR} -xf -)
|
@${ECHO_MSG} "gimp-devel has the following tunable option(s):"
|
||||||
@(cd ${WRKDIR} && ${GZIP_CMD} -dc ${MPEG_DISTFILE} | ${TAR} -xf -)
|
@${ECHO_MSG} ""
|
||||||
@(${FIND} ${MPEG_WRKSRC} -type f | ${XARGS} ${CHMOD} u+w)
|
@${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support"
|
||||||
|
@${ECHO_MSG} ""
|
||||||
pre-configure:
|
|
||||||
@(cd ${MPEG_WRKSRC} && \
|
|
||||||
${SETENV} CC="${CC}" CXX="${CXX}" \
|
|
||||||
CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
|
|
||||||
INSTALL="/usr/bin/install -c -o ${BINOWN} -g ${BINGRP}" \
|
|
||||||
INSTALL_DATA="${INSTALL_DATA}" \
|
|
||||||
INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
|
|
||||||
INSTALL_SCRIPT="${INSTALL_SCRIPT}" \
|
|
||||||
${MPEG_CONFIGURE_ENV} ./configure ${MPEG_CONFIGURE_ARGS})
|
|
||||||
@(cd ${MPEG_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
|
|
||||||
|
|
||||||
post-patch:
|
|
||||||
@${REINPLACE_CMD} -e 's|-lmpeg|${MPEG_WRKSRC}/libmpeg.a|g' \
|
|
||||||
${WRKSRC}/configure
|
|
||||||
@(cd ${MPEG_WRKSRC} ; \
|
|
||||||
${GREP} -r -l "<malloc.h>" * | \
|
|
||||||
${XARGS} ${REINPLACE_CMD} -e "s/<malloc.h>/<stdlib.h>/")
|
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
MD5 (gimp-1.3.11.tar.bz2) = df2e753e1ad951b52f790b8392091a46
|
MD5 (gimp-1.3.12.tar.bz2) = 1f3eda10fc8e6379e5578f21a925e2be
|
||||||
MD5 (mpeg_lib-1.3.1.tar.gz) = 9d803be0073f42acf87d5fbb339a183b
|
MD5 (mpeg_lib-1.3.1.tar.gz) = 9d803be0073f42acf87d5fbb339a183b
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
--- ../mpeg_lib-1.3.1/Makefile.in.orig Thu Nov 26 11:03:29 1998
|
|
||||||
+++ ../mpeg_lib-1.3.1/Makefile.in Tue Jul 9 22:28:11 2002
|
|
||||||
@@ -19,7 +19,7 @@
|
|
||||||
exec_prefix = @exec_prefix@
|
|
||||||
INSTALL_INCLUDE = @includedir@
|
|
||||||
INSTALL_LIBRARY = @libdir@
|
|
||||||
-INSTALL = @INSTALL@
|
|
||||||
+INSTALL_DATA = @INSTALL_DATA@
|
|
||||||
|
|
||||||
# Other miscellaneous programs
|
|
||||||
AR = @AR@
|
|
||||||
@@ -67,10 +67,9 @@
|
|
||||||
$(CC) -shared -o $(SHLIB) $(LIBOBJ)
|
|
||||||
|
|
||||||
install: $(LIBRARY)
|
|
||||||
- $(INSTALL) -d $(INSTALL_INCLUDE) $(INSTALL_LIBRARY)
|
|
||||||
- $(INSTALL) -m 0644 $(HEADER) $(INSTALL_INCLUDE)/$(HEADER)
|
|
||||||
- $(INSTALL) -m 0644 $(LIBRARY) $(INSTALL_LIBRARY)/$(LIBRARY)
|
|
||||||
- @if test -f $(SHLIB) ; then echo "warning: $(SHLIB) *not* installed (installing shared libraries is too system-specific)" ; fi
|
|
||||||
+ $(MKDIR) $(INSTALL_INCLUDE) $(INSTALL_LIBRARY)
|
|
||||||
+ $(INSTALL_DATA) $(HEADER) $(INSTALL_INCLUDE)/$(HEADER)
|
|
||||||
+ $(INSTALL_DATA) $(LIBRARY) $(INSTALL_LIBRARY)/$(LIBRARY)
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f $(LIBRARY) $(EXTRAS) $(LIBOBJ) core
|
|
|
@ -1,23 +0,0 @@
|
||||||
--- ../mpeg_lib-1.3.1/video.c.orig Sat Jul 24 13:00:51 1999
|
|
||||||
+++ ../mpeg_lib-1.3.1/video.c Tue Aug 31 23:11:56 1999
|
|
||||||
@@ -49,6 +49,10 @@
|
|
||||||
#include "proto.h"
|
|
||||||
#include "my_dmalloc.h"
|
|
||||||
|
|
||||||
+#ifdef _HAVE_PARAM_H
|
|
||||||
+#include <sys/param.h>
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
/* Declarations of functions. */
|
|
||||||
static void ReconIMBlock(VidStream *,int);
|
|
||||||
static void ReconPMBlock(VidStream *,int,int,int,int);
|
|
||||||
@@ -445,7 +449,9 @@
|
|
||||||
static int num_calls = 0;
|
|
||||||
unsigned int data;
|
|
||||||
int i, status;
|
|
||||||
+#if BSD < 199103
|
|
||||||
long int ftell (FILE *stream);
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
/* If vid_stream is null, create new VidStream structure. */
|
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
|
|
||||||
$FreeBSD$
|
|
||||||
|
|
||||||
--- Makefile.in 2002/05/17 18:44:19 1.1
|
|
||||||
+++ Makefile.in 2002/05/17 18:44:46
|
|
||||||
@@ -185,7 +185,7 @@
|
|
||||||
|
|
||||||
bin_SCRIPTS = gimptool-1.3 @GIMPINSTALL@
|
|
||||||
|
|
||||||
-pkgconfigdir = $(libdir)/pkgconfig
|
|
||||||
+pkgconfigdir = $(prefix)/libdata/pkgconfig
|
|
||||||
pkgconfig_DATA = gimp-1.3.pc gimpui-1.3.pc
|
|
||||||
|
|
||||||
EXTRA_SCRIPTS = gimpinstall-1.3
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
--- app/plug-in/plug-in-shm.c.orig Wed Feb 19 01:40:37 2003
|
||||||
|
+++ app/plug-in/plug-in-shm.c Wed Feb 19 01:40:49 2003
|
||||||
|
@@ -17,6 +17,7 @@
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
+#include <sys/types.h>
|
||||||
|
|
||||||
|
#ifdef HAVE_IPC_H
|
||||||
|
#include <sys/ipc.h>
|
|
@ -1 +0,0 @@
|
||||||
A GNU Image Manipulation Program (unstable development version)
|
|
|
@ -71,6 +71,7 @@ include/gimp-1.3/libgimpbase/gimpparasite.h
|
||||||
include/gimp-1.3/libgimpbase/gimpparasiteio.h
|
include/gimp-1.3/libgimpbase/gimpparasiteio.h
|
||||||
include/gimp-1.3/libgimpbase/gimpsignal.h
|
include/gimp-1.3/libgimpbase/gimpsignal.h
|
||||||
include/gimp-1.3/libgimpbase/gimpunit.h
|
include/gimp-1.3/libgimpbase/gimpunit.h
|
||||||
|
include/gimp-1.3/libgimpbase/gimputils.h
|
||||||
include/gimp-1.3/libgimpbase/gimpversion.h
|
include/gimp-1.3/libgimpbase/gimpversion.h
|
||||||
include/gimp-1.3/libgimpcolor/gimpadaptivesupersample.h
|
include/gimp-1.3/libgimpcolor/gimpadaptivesupersample.h
|
||||||
include/gimp-1.3/libgimpcolor/gimpbilinear.h
|
include/gimp-1.3/libgimpcolor/gimpbilinear.h
|
||||||
|
@ -107,6 +108,7 @@ include/gimp-1.3/libgimpwidgets/gimpcolorselector.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimpdialog.h
|
include/gimp-1.3/libgimpwidgets/gimpdialog.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimpfileselection.h
|
include/gimp-1.3/libgimpwidgets/gimpfileselection.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimphelpui.h
|
include/gimp-1.3/libgimpwidgets/gimphelpui.h
|
||||||
|
include/gimp-1.3/libgimpwidgets/gimpmemsizeentry.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimpoffsetarea.h
|
include/gimp-1.3/libgimpwidgets/gimpoffsetarea.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimppatheditor.h
|
include/gimp-1.3/libgimpwidgets/gimppatheditor.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimppickbutton.h
|
include/gimp-1.3/libgimpwidgets/gimppickbutton.h
|
||||||
|
@ -150,6 +152,7 @@ lib/libgimpwidgets-1.3.so.%%SHLIBVER%%
|
||||||
libdata/pkgconfig/gimp-1.3.pc
|
libdata/pkgconfig/gimp-1.3.pc
|
||||||
libdata/pkgconfig/gimpui-1.3.pc
|
libdata/pkgconfig/gimpui-1.3.pc
|
||||||
libexec/gimp/1.3/environ/default.env
|
libexec/gimp/1.3/environ/default.env
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/environ/pygimp.env
|
||||||
libexec/gimp/1.3/modules/libcdisplay_colorblind.so
|
libexec/gimp/1.3/modules/libcdisplay_colorblind.so
|
||||||
libexec/gimp/1.3/modules/libcdisplay_gamma.so
|
libexec/gimp/1.3/modules/libcdisplay_gamma.so
|
||||||
libexec/gimp/1.3/modules/libcdisplay_highcontrast.so
|
libexec/gimp/1.3/modules/libcdisplay_highcontrast.so
|
||||||
|
@ -177,7 +180,9 @@ libexec/gimp/1.3/plug-ins/bumpmap
|
||||||
libexec/gimp/1.3/plug-ins/bz2
|
libexec/gimp/1.3/plug-ins/bz2
|
||||||
libexec/gimp/1.3/plug-ins/c_astretch
|
libexec/gimp/1.3/plug-ins/c_astretch
|
||||||
libexec/gimp/1.3/plug-ins/checkerboard
|
libexec/gimp/1.3/plug-ins/checkerboard
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/clothify.py
|
||||||
libexec/gimp/1.3/plug-ins/color_enhance
|
libexec/gimp/1.3/plug-ins/color_enhance
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/colorhtml.py
|
||||||
libexec/gimp/1.3/plug-ins/colorify
|
libexec/gimp/1.3/plug-ins/colorify
|
||||||
libexec/gimp/1.3/plug-ins/colortoalpha
|
libexec/gimp/1.3/plug-ins/colortoalpha
|
||||||
libexec/gimp/1.3/plug-ins/compose
|
libexec/gimp/1.3/plug-ins/compose
|
||||||
|
@ -202,6 +207,7 @@ libexec/gimp/1.3/plug-ins/film
|
||||||
libexec/gimp/1.3/plug-ins/fits
|
libexec/gimp/1.3/plug-ins/fits
|
||||||
libexec/gimp/1.3/plug-ins/flame
|
libexec/gimp/1.3/plug-ins/flame
|
||||||
libexec/gimp/1.3/plug-ins/flarefx
|
libexec/gimp/1.3/plug-ins/flarefx
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/foggify.py
|
||||||
libexec/gimp/1.3/plug-ins/fp
|
libexec/gimp/1.3/plug-ins/fp
|
||||||
libexec/gimp/1.3/plug-ins/fractaltrace
|
libexec/gimp/1.3/plug-ins/fractaltrace
|
||||||
libexec/gimp/1.3/plug-ins/gauss_iir
|
libexec/gimp/1.3/plug-ins/gauss_iir
|
||||||
|
@ -216,11 +222,13 @@ libexec/gimp/1.3/plug-ins/gicon
|
||||||
libexec/gimp/1.3/plug-ins/gif
|
libexec/gimp/1.3/plug-ins/gif
|
||||||
libexec/gimp/1.3/plug-ins/gifload
|
libexec/gimp/1.3/plug-ins/gifload
|
||||||
libexec/gimp/1.3/plug-ins/gih
|
libexec/gimp/1.3/plug-ins/gih
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/gimpcons.py
|
||||||
libexec/gimp/1.3/plug-ins/gimpressionist
|
libexec/gimp/1.3/plug-ins/gimpressionist
|
||||||
libexec/gimp/1.3/plug-ins/glasstile
|
libexec/gimp/1.3/plug-ins/glasstile
|
||||||
libexec/gimp/1.3/plug-ins/gqbist
|
libexec/gimp/1.3/plug-ins/gqbist
|
||||||
libexec/gimp/1.3/plug-ins/gradmap
|
libexec/gimp/1.3/plug-ins/gradmap
|
||||||
libexec/gimp/1.3/plug-ins/grid
|
libexec/gimp/1.3/plug-ins/grid
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/gtkcons.py
|
||||||
libexec/gimp/1.3/plug-ins/gtm
|
libexec/gimp/1.3/plug-ins/gtm
|
||||||
libexec/gimp/1.3/plug-ins/guillotine
|
libexec/gimp/1.3/plug-ins/guillotine
|
||||||
libexec/gimp/1.3/plug-ins/gz
|
libexec/gimp/1.3/plug-ins/gz
|
||||||
|
@ -241,7 +249,6 @@ libexec/gimp/1.3/plug-ins/max_rgb
|
||||||
libexec/gimp/1.3/plug-ins/maze
|
libexec/gimp/1.3/plug-ins/maze
|
||||||
libexec/gimp/1.3/plug-ins/mblur
|
libexec/gimp/1.3/plug-ins/mblur
|
||||||
libexec/gimp/1.3/plug-ins/mosaic
|
libexec/gimp/1.3/plug-ins/mosaic
|
||||||
libexec/gimp/1.3/plug-ins/mpeg
|
|
||||||
libexec/gimp/1.3/plug-ins/newsprint
|
libexec/gimp/1.3/plug-ins/newsprint
|
||||||
libexec/gimp/1.3/plug-ins/nlfilt
|
libexec/gimp/1.3/plug-ins/nlfilt
|
||||||
libexec/gimp/1.3/plug-ins/noisify
|
libexec/gimp/1.3/plug-ins/noisify
|
||||||
|
@ -252,6 +259,7 @@ libexec/gimp/1.3/plug-ins/pagecurl
|
||||||
libexec/gimp/1.3/plug-ins/papertile
|
libexec/gimp/1.3/plug-ins/papertile
|
||||||
libexec/gimp/1.3/plug-ins/pat
|
libexec/gimp/1.3/plug-ins/pat
|
||||||
libexec/gimp/1.3/plug-ins/pcx
|
libexec/gimp/1.3/plug-ins/pcx
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/pdbbrowse.py
|
||||||
libexec/gimp/1.3/plug-ins/pix
|
libexec/gimp/1.3/plug-ins/pix
|
||||||
libexec/gimp/1.3/plug-ins/pixelize
|
libexec/gimp/1.3/plug-ins/pixelize
|
||||||
libexec/gimp/1.3/plug-ins/plasma
|
libexec/gimp/1.3/plug-ins/plasma
|
||||||
|
@ -262,6 +270,7 @@ libexec/gimp/1.3/plug-ins/polar
|
||||||
libexec/gimp/1.3/plug-ins/print
|
libexec/gimp/1.3/plug-ins/print
|
||||||
libexec/gimp/1.3/plug-ins/ps
|
libexec/gimp/1.3/plug-ins/ps
|
||||||
libexec/gimp/1.3/plug-ins/psd
|
libexec/gimp/1.3/plug-ins/psd
|
||||||
|
libexec/gimp/1.3/plug-ins/psd_save
|
||||||
libexec/gimp/1.3/plug-ins/psp
|
libexec/gimp/1.3/plug-ins/psp
|
||||||
libexec/gimp/1.3/plug-ins/randomize
|
libexec/gimp/1.3/plug-ins/randomize
|
||||||
libexec/gimp/1.3/plug-ins/rcm
|
libexec/gimp/1.3/plug-ins/rcm
|
||||||
|
@ -275,6 +284,7 @@ libexec/gimp/1.3/plug-ins/sel2path
|
||||||
libexec/gimp/1.3/plug-ins/sel_gauss
|
libexec/gimp/1.3/plug-ins/sel_gauss
|
||||||
libexec/gimp/1.3/plug-ins/semiflatten
|
libexec/gimp/1.3/plug-ins/semiflatten
|
||||||
libexec/gimp/1.3/plug-ins/sgi
|
libexec/gimp/1.3/plug-ins/sgi
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/shadow_bevel.py
|
||||||
libexec/gimp/1.3/plug-ins/sharpen
|
libexec/gimp/1.3/plug-ins/sharpen
|
||||||
libexec/gimp/1.3/plug-ins/shift
|
libexec/gimp/1.3/plug-ins/shift
|
||||||
libexec/gimp/1.3/plug-ins/sinus
|
libexec/gimp/1.3/plug-ins/sinus
|
||||||
|
@ -282,6 +292,8 @@ libexec/gimp/1.3/plug-ins/smooth_palette
|
||||||
libexec/gimp/1.3/plug-ins/snoise
|
libexec/gimp/1.3/plug-ins/snoise
|
||||||
libexec/gimp/1.3/plug-ins/sobel
|
libexec/gimp/1.3/plug-ins/sobel
|
||||||
libexec/gimp/1.3/plug-ins/sparkle
|
libexec/gimp/1.3/plug-ins/sparkle
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/sphere.py
|
||||||
|
libexec/gimp/1.3/plug-ins/spheredesigner
|
||||||
libexec/gimp/1.3/plug-ins/spread
|
libexec/gimp/1.3/plug-ins/spread
|
||||||
libexec/gimp/1.3/plug-ins/struc
|
libexec/gimp/1.3/plug-ins/struc
|
||||||
libexec/gimp/1.3/plug-ins/sunras
|
libexec/gimp/1.3/plug-ins/sunras
|
||||||
|
@ -302,6 +314,7 @@ libexec/gimp/1.3/plug-ins/warp
|
||||||
libexec/gimp/1.3/plug-ins/waves
|
libexec/gimp/1.3/plug-ins/waves
|
||||||
libexec/gimp/1.3/plug-ins/webbrowser
|
libexec/gimp/1.3/plug-ins/webbrowser
|
||||||
libexec/gimp/1.3/plug-ins/whirlpinch
|
libexec/gimp/1.3/plug-ins/whirlpinch
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/whirlpinch.py
|
||||||
libexec/gimp/1.3/plug-ins/wind
|
libexec/gimp/1.3/plug-ins/wind
|
||||||
libexec/gimp/1.3/plug-ins/wmf
|
libexec/gimp/1.3/plug-ins/wmf
|
||||||
libexec/gimp/1.3/plug-ins/xbm
|
libexec/gimp/1.3/plug-ins/xbm
|
||||||
|
@ -309,6 +322,22 @@ libexec/gimp/1.3/plug-ins/xjt
|
||||||
libexec/gimp/1.3/plug-ins/xpm
|
libexec/gimp/1.3/plug-ins/xpm
|
||||||
libexec/gimp/1.3/plug-ins/xwd
|
libexec/gimp/1.3/plug-ins/xwd
|
||||||
libexec/gimp/1.3/plug-ins/zealouscrop
|
libexec/gimp/1.3/plug-ins/zealouscrop
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpenums.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpenums.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpenums.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpfu.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpfu.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpfu.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpmodule.so
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpplugin.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpplugin.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpplugin.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpshelf.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpshelf.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpshelf.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpui.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpui.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpui.pyo
|
||||||
share/aclocal/gimp-1.4.m4
|
share/aclocal/gimp-1.4.m4
|
||||||
share/doc/gimp/libgimp/gimpdefinitions.html
|
share/doc/gimp/libgimp/gimpdefinitions.html
|
||||||
share/doc/gimp/libgimp/home.png
|
share/doc/gimp/libgimp/home.png
|
||||||
|
@ -335,7 +364,6 @@ share/doc/gimp/libgimp/libgimp-gimpimage.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimplayer.html
|
share/doc/gimp/libgimp/libgimp-gimplayer.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpmenu.html
|
share/doc/gimp/libgimp/libgimp-gimpmenu.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpmessage.html
|
share/doc/gimp/libgimp/libgimp-gimpmessage.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpmisc.html
|
|
||||||
share/doc/gimp/libgimp/libgimp-gimppalette.html
|
share/doc/gimp/libgimp/libgimp-gimppalette.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimppatterns.html
|
share/doc/gimp/libgimp/libgimp-gimppatterns.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimppixelrgn.html
|
share/doc/gimp/libgimp/libgimp-gimppixelrgn.html
|
||||||
|
@ -347,12 +375,15 @@ share/doc/gimp/libgimp/libgimp-gimptile.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimptools.html
|
share/doc/gimp/libgimp/libgimp-gimptools.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpui.html
|
share/doc/gimp/libgimp/libgimp-gimpui.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpundo.html
|
share/doc/gimp/libgimp/libgimp-gimpundo.html
|
||||||
|
share/doc/gimp/libgimp/libgimp.devhelp
|
||||||
share/doc/gimp/libgimp/libgimp.html
|
share/doc/gimp/libgimp/libgimp.html
|
||||||
share/doc/gimp/libgimp/libgimpui.html
|
share/doc/gimp/libgimp/libgimpui.html
|
||||||
share/doc/gimp/libgimp/right.png
|
share/doc/gimp/libgimp/right.png
|
||||||
share/doc/gimp/libgimp/up.png
|
share/doc/gimp/libgimp/up.png
|
||||||
|
share/doc/gimp/libgimpbase/home.png
|
||||||
share/doc/gimp/libgimpbase/index.html
|
share/doc/gimp/libgimpbase/index.html
|
||||||
share/doc/gimp/libgimpbase/index.sgml
|
share/doc/gimp/libgimpbase/index.sgml
|
||||||
|
share/doc/gimp/libgimpbase/left.png
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpenv.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpenv.html
|
||||||
|
@ -362,63 +393,180 @@ share/doc/gimp/libgimpbase/libgimpbase-gimpparasiteio.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpprotocol.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpprotocol.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpsignal.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpsignal.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html
|
||||||
|
share/doc/gimp/libgimpbase/libgimpbase-gimputils.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpwire.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpwire.html
|
||||||
|
share/doc/gimp/libgimpbase/libgimpbase.devhelp
|
||||||
share/doc/gimp/libgimpbase/libgimpbase.html
|
share/doc/gimp/libgimpbase/libgimpbase.html
|
||||||
|
share/doc/gimp/libgimpbase/right.png
|
||||||
|
share/doc/gimp/libgimpbase/up.png
|
||||||
|
share/doc/gimp/libgimpcolor/home.png
|
||||||
share/doc/gimp/libgimpcolor/index.html
|
share/doc/gimp/libgimpcolor/index.html
|
||||||
share/doc/gimp/libgimpcolor/index.sgml
|
share/doc/gimp/libgimpcolor/index.sgml
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimpadaptivesupersample.html
|
share/doc/gimp/libgimpcolor/left.png
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimpbilinear.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimpcolorspace.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpBilinear.html
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimphsv.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorSpace.html
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimprgb.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpHSV.html
|
||||||
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpRGB.html
|
||||||
|
share/doc/gimp/libgimpcolor/libgimpcolor.devhelp
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor.html
|
share/doc/gimp/libgimpcolor/libgimpcolor.html
|
||||||
|
share/doc/gimp/libgimpcolor/right.png
|
||||||
|
share/doc/gimp/libgimpcolor/up.png
|
||||||
|
share/doc/gimp/libgimpmath/home.png
|
||||||
share/doc/gimp/libgimpmath/index.html
|
share/doc/gimp/libgimpmath/index.html
|
||||||
share/doc/gimp/libgimpmath/index.sgml
|
share/doc/gimp/libgimpmath/index.sgml
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpmath.html
|
share/doc/gimp/libgimpmath/left.png
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpmatrix.html
|
share/doc/gimp/libgimpmath/libgimpmath-GimpMD5.html
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpmd5.html
|
share/doc/gimp/libgimpmath/libgimpmath-GimpMath.html
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpvector.html
|
share/doc/gimp/libgimpmath/libgimpmath-GimpMatrix.html
|
||||||
|
share/doc/gimp/libgimpmath/libgimpmath-GimpVector.html
|
||||||
|
share/doc/gimp/libgimpmath/libgimpmath.devhelp
|
||||||
share/doc/gimp/libgimpmath/libgimpmath.html
|
share/doc/gimp/libgimpmath/libgimpmath.html
|
||||||
share/doc/gimp/libgimpmodule/gimpmodule.html
|
share/doc/gimp/libgimpmath/right.png
|
||||||
share/doc/gimp/libgimpmodule/gimpmoduledb.html
|
share/doc/gimp/libgimpmath/up.png
|
||||||
|
share/doc/gimp/libgimpmodule/GimpModule.html
|
||||||
|
share/doc/gimp/libgimpmodule/GimpModuleDB.html
|
||||||
share/doc/gimp/libgimpmodule/home.png
|
share/doc/gimp/libgimpmodule/home.png
|
||||||
share/doc/gimp/libgimpmodule/index.html
|
share/doc/gimp/libgimpmodule/index.html
|
||||||
share/doc/gimp/libgimpmodule/index.sgml
|
share/doc/gimp/libgimpmodule/index.sgml
|
||||||
share/doc/gimp/libgimpmodule/left.png
|
share/doc/gimp/libgimpmodule/left.png
|
||||||
|
share/doc/gimp/libgimpmodule/libgimpmodule.devhelp
|
||||||
share/doc/gimp/libgimpmodule/libgimpmodule.html
|
share/doc/gimp/libgimpmodule/libgimpmodule.html
|
||||||
share/doc/gimp/libgimpmodule/right.png
|
share/doc/gimp/libgimpmodule/right.png
|
||||||
share/doc/gimp/libgimpmodule/up.png
|
share/doc/gimp/libgimpmodule/up.png
|
||||||
share/doc/gimp/libgimpwidgets/gimpbutton.html
|
share/doc/gimp/libgimpwidgets/GimpButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpchainbutton.html
|
share/doc/gimp/libgimpwidgets/GimpChainButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorbutton.html
|
share/doc/gimp/libgimpwidgets/GimpColorButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolordisplay.html
|
share/doc/gimp/libgimpwidgets/GimpColorDisplay.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolornotebook.html
|
share/doc/gimp/libgimpwidgets/GimpColorNotebook.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorscale.html
|
share/doc/gimp/libgimpwidgets/GimpColorScale.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorscales.html
|
share/doc/gimp/libgimpwidgets/GimpColorScales.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorselect.html
|
share/doc/gimp/libgimpwidgets/GimpColorSelect.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorselector.html
|
share/doc/gimp/libgimpwidgets/GimpColorSelector.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpdialog.html
|
share/doc/gimp/libgimpwidgets/GimpDialog.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpfileselection.html
|
share/doc/gimp/libgimpwidgets/GimpFileSelection.html
|
||||||
share/doc/gimp/libgimpwidgets/gimppatheditor.html
|
share/doc/gimp/libgimpwidgets/GimpMemsizeEntry.html
|
||||||
share/doc/gimp/libgimpwidgets/gimppickbutton.html
|
share/doc/gimp/libgimpwidgets/GimpPathEditor.html
|
||||||
share/doc/gimp/libgimpwidgets/gimppixmap.html
|
share/doc/gimp/libgimpwidgets/GimpPickButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpsizeentry.html
|
share/doc/gimp/libgimpwidgets/GimpPixmap.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpunitmenu.html
|
share/doc/gimp/libgimpwidgets/GimpSizeEntry.html
|
||||||
|
share/doc/gimp/libgimpwidgets/GimpUnitMenu.html
|
||||||
share/doc/gimp/libgimpwidgets/home.png
|
share/doc/gimp/libgimpwidgets/home.png
|
||||||
share/doc/gimp/libgimpwidgets/index.html
|
share/doc/gimp/libgimpwidgets/index.html
|
||||||
share/doc/gimp/libgimpwidgets/index.sgml
|
share/doc/gimp/libgimpwidgets/index.sgml
|
||||||
share/doc/gimp/libgimpwidgets/left.png
|
share/doc/gimp/libgimpwidgets/left.png
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpColorArea.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpHelpUI.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpQueryBox.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpStock.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpWidgets.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-colordisplay.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-colordisplay.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-colorselector.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-colorselector.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpcolorarea.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimphelpui.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpquerybox.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpstock.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpwidgets.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-utils.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-utils.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-widgets.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-widgets.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets.devhelp
|
||||||
share/doc/gimp/libgimpwidgets/right.png
|
share/doc/gimp/libgimpwidgets/right.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-anchor-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-char-picker-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-picker-black-18.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-picker-gray-18.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-picker-white-18.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-triangle-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-convert-grayscale-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-convert-indexed-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-convert-rgb-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-default-colors-12.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-duplicate-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-edit-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-eye-20.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-east-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-north-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-north-east-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-north-west-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-south-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-south-east-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-south-west-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-west-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-hchain-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-hchain-broken-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-info-64.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-invert-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-layer-to-imagesize-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-letter-spacing-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-line-spacing-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-linked-20.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-merge-down-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-navigation-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-paste-as-new-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-paste-into-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-path-stroke-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-plugin-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-qmask-off-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-qmask-on-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-reset-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-reshow-filter-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-resize-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-rotate-180-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-rotate-270-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-rotate-90-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-scale-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-add-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-all-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-grow-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-intersect-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-none-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-replace-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-shrink-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-stroke-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-subtract-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-to-channel-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-to-path-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-swap-colors-12.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-airbrush-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-bezier-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-blend-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-blur-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-brightness-contrast-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-bucket-fill-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-by-color-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-clone-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-color-balance-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-color-picker-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-crop-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-curves-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-dodge-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-ellipse-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-eraser-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-flip-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-free-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-fuzzy-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-histogram-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-hue-saturation-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-ink-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-iscissors-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-levels-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-measure-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-move-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-options-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-paintbrush-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-path-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-pencil-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-perspective-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-posterize-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-rect-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-rotate-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-scale-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-shear-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-smudge-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-text-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-threshold-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-zoom-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-vchain-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-vchain-broken-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-warning-64.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-wilber-64.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-wilber-eek-64.png
|
||||||
share/doc/gimp/libgimpwidgets/up.png
|
share/doc/gimp/libgimpwidgets/up.png
|
||||||
share/gimp/brushes/10x10square.gbr
|
share/gimp/brushes/10x10square.gbr
|
||||||
share/gimp/brushes/10x10squareBlur.gbr
|
share/gimp/brushes/10x10squareBlur.gbr
|
||||||
|
@ -695,7 +843,9 @@ share/gimp/images/gimp_splash.png
|
||||||
share/gimp/images/wilber-icon.png
|
share/gimp/images/wilber-icon.png
|
||||||
share/gimp/images/wilber-tips.png
|
share/gimp/images/wilber-tips.png
|
||||||
share/gimp/images/wilber-wizard.png
|
share/gimp/images/wilber-wizard.png
|
||||||
|
share/gimp/misc/gimp.applications
|
||||||
share/gimp/misc/gimp.desktop
|
share/gimp/misc/gimp.desktop
|
||||||
|
share/gimp/misc/gimp.keys
|
||||||
share/gimp/palettes/Bears.gpl
|
share/gimp/palettes/Bears.gpl
|
||||||
share/gimp/palettes/Bgold.gpl
|
share/gimp/palettes/Bgold.gpl
|
||||||
share/gimp/palettes/Blues.gpl
|
share/gimp/palettes/Blues.gpl
|
||||||
|
@ -829,7 +979,7 @@ share/gimp/scripts/comic-logo.scm
|
||||||
share/gimp/scripts/coolmetal-logo.scm
|
share/gimp/scripts/coolmetal-logo.scm
|
||||||
share/gimp/scripts/copy-visible.scm
|
share/gimp/scripts/copy-visible.scm
|
||||||
share/gimp/scripts/crystal-logo.scm
|
share/gimp/scripts/crystal-logo.scm
|
||||||
share/gimp/scripts/distress_selection.scm
|
share/gimp/scripts/distress-selection.scm
|
||||||
share/gimp/scripts/drop-shadow.scm
|
share/gimp/scripts/drop-shadow.scm
|
||||||
share/gimp/scripts/erase-rows.scm
|
share/gimp/scripts/erase-rows.scm
|
||||||
share/gimp/scripts/fade-outline.scm
|
share/gimp/scripts/fade-outline.scm
|
||||||
|
@ -853,21 +1003,22 @@ share/gimp/scripts/line-nova.scm
|
||||||
share/gimp/scripts/mkbrush.scm
|
share/gimp/scripts/mkbrush.scm
|
||||||
share/gimp/scripts/neon-logo.scm
|
share/gimp/scripts/neon-logo.scm
|
||||||
share/gimp/scripts/news-text.scm
|
share/gimp/scripts/news-text.scm
|
||||||
share/gimp/scripts/old_photo.scm
|
share/gimp/scripts/old-photo.scm
|
||||||
share/gimp/scripts/perspective-shadow.scm
|
share/gimp/scripts/perspective-shadow.scm
|
||||||
share/gimp/scripts/predator.scm
|
share/gimp/scripts/predator.scm
|
||||||
share/gimp/scripts/pupi-button.scm
|
share/gimp/scripts/pupi-button.scm
|
||||||
share/gimp/scripts/rendermap.scm
|
share/gimp/scripts/rendermap.scm
|
||||||
share/gimp/scripts/ripply-anim.scm
|
share/gimp/scripts/ripply-anim.scm
|
||||||
share/gimp/scripts/round-corners.scm
|
share/gimp/scripts/round-corners.scm
|
||||||
share/gimp/scripts/select_to_brush.scm
|
share/gimp/scripts/select-to-brush.scm
|
||||||
share/gimp/scripts/select_to_image.scm
|
share/gimp/scripts/select-to-image.scm
|
||||||
|
share/gimp/scripts/select-to-pattern.scm
|
||||||
share/gimp/scripts/selection-round.scm
|
share/gimp/scripts/selection-round.scm
|
||||||
share/gimp/scripts/slide.scm
|
share/gimp/scripts/slide.scm
|
||||||
share/gimp/scripts/sota-chrome-logo.scm
|
share/gimp/scripts/sota-chrome-logo.scm
|
||||||
share/gimp/scripts/speed-text.scm
|
share/gimp/scripts/speed-text.scm
|
||||||
share/gimp/scripts/sphere.scm
|
share/gimp/scripts/sphere.scm
|
||||||
share/gimp/scripts/spinning_globe.scm
|
share/gimp/scripts/spinning-globe.scm
|
||||||
share/gimp/scripts/starburst-logo.scm
|
share/gimp/scripts/starburst-logo.scm
|
||||||
share/gimp/scripts/starscape-logo.scm
|
share/gimp/scripts/starscape-logo.scm
|
||||||
share/gimp/scripts/swirltile.scm
|
share/gimp/scripts/swirltile.scm
|
||||||
|
@ -912,7 +1063,6 @@ share/gimp/themes/Default/images/preferences/interface.png
|
||||||
share/gimp/themes/Default/images/preferences/monitor.png
|
share/gimp/themes/Default/images/preferences/monitor.png
|
||||||
share/gimp/themes/Default/images/preferences/new-image.png
|
share/gimp/themes/Default/images/preferences/new-image.png
|
||||||
share/gimp/themes/Default/images/preferences/tool-options.png
|
share/gimp/themes/Default/images/preferences/tool-options.png
|
||||||
share/gimp/themes/Default/images/stock-all-16.png
|
|
||||||
share/gimp/themes/Default/images/stock-anchor-16.png
|
share/gimp/themes/Default/images/stock-anchor-16.png
|
||||||
share/gimp/themes/Default/images/stock-char-picker-22.png
|
share/gimp/themes/Default/images/stock-char-picker-22.png
|
||||||
share/gimp/themes/Default/images/stock-color-picker-black-18.png
|
share/gimp/themes/Default/images/stock-color-picker-black-18.png
|
||||||
|
@ -928,7 +1078,14 @@ share/gimp/themes/Default/images/stock-duplicate-16.png
|
||||||
share/gimp/themes/Default/images/stock-edit-16.png
|
share/gimp/themes/Default/images/stock-edit-16.png
|
||||||
share/gimp/themes/Default/images/stock-error-64.png
|
share/gimp/themes/Default/images/stock-error-64.png
|
||||||
share/gimp/themes/Default/images/stock-eye-20.png
|
share/gimp/themes/Default/images/stock-eye-20.png
|
||||||
share/gimp/themes/Default/images/stock-grow-16.png
|
share/gimp/themes/Default/images/stock-gravity-east-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-north-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-north-east-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-north-west-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-south-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-south-east-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-south-west-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-west-24.png
|
||||||
share/gimp/themes/Default/images/stock-hchain-24.png
|
share/gimp/themes/Default/images/stock-hchain-24.png
|
||||||
share/gimp/themes/Default/images/stock-hchain-broken-24.png
|
share/gimp/themes/Default/images/stock-hchain-broken-24.png
|
||||||
share/gimp/themes/Default/images/stock-info-16.png
|
share/gimp/themes/Default/images/stock-info-16.png
|
||||||
|
@ -943,7 +1100,6 @@ share/gimp/themes/Default/images/stock-lower-16.png
|
||||||
share/gimp/themes/Default/images/stock-merge-down-16.png
|
share/gimp/themes/Default/images/stock-merge-down-16.png
|
||||||
share/gimp/themes/Default/images/stock-navigation-16.png
|
share/gimp/themes/Default/images/stock-navigation-16.png
|
||||||
share/gimp/themes/Default/images/stock-new-16.png
|
share/gimp/themes/Default/images/stock-new-16.png
|
||||||
share/gimp/themes/Default/images/stock-none-16.png
|
|
||||||
share/gimp/themes/Default/images/stock-paste-16.png
|
share/gimp/themes/Default/images/stock-paste-16.png
|
||||||
share/gimp/themes/Default/images/stock-paste-as-new-16.png
|
share/gimp/themes/Default/images/stock-paste-as-new-16.png
|
||||||
share/gimp/themes/Default/images/stock-paste-into-16.png
|
share/gimp/themes/Default/images/stock-paste-into-16.png
|
||||||
|
@ -962,13 +1118,16 @@ share/gimp/themes/Default/images/stock-rotate-270-16.png
|
||||||
share/gimp/themes/Default/images/stock-rotate-90-16.png
|
share/gimp/themes/Default/images/stock-rotate-90-16.png
|
||||||
share/gimp/themes/Default/images/stock-scale-16.png
|
share/gimp/themes/Default/images/stock-scale-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-add-16.png
|
share/gimp/themes/Default/images/stock-selection-add-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-all-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-grow-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-intersect-16.png
|
share/gimp/themes/Default/images/stock-selection-intersect-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-none-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-replace-16.png
|
share/gimp/themes/Default/images/stock-selection-replace-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-shrink-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-stroke-16.png
|
share/gimp/themes/Default/images/stock-selection-stroke-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-subtract-16.png
|
share/gimp/themes/Default/images/stock-selection-subtract-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-to-channel-16.png
|
share/gimp/themes/Default/images/stock-selection-to-channel-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-to-path-16.png
|
share/gimp/themes/Default/images/stock-selection-to-path-16.png
|
||||||
share/gimp/themes/Default/images/stock-shrink-16.png
|
|
||||||
share/gimp/themes/Default/images/stock-swap-colors-12.png
|
share/gimp/themes/Default/images/stock-swap-colors-12.png
|
||||||
share/gimp/themes/Default/images/stock-tool-airbrush-22.png
|
share/gimp/themes/Default/images/stock-tool-airbrush-22.png
|
||||||
share/gimp/themes/Default/images/stock-tool-bezier-select-22.png
|
share/gimp/themes/Default/images/stock-tool-bezier-select-22.png
|
||||||
|
@ -1015,9 +1174,13 @@ share/gimp/themes/Default/images/stock-warning-16.png
|
||||||
share/gimp/themes/Default/images/stock-warning-24.png
|
share/gimp/themes/Default/images/stock-warning-24.png
|
||||||
share/gimp/themes/Default/images/stock-warning-64.png
|
share/gimp/themes/Default/images/stock-warning-64.png
|
||||||
share/gimp/themes/Default/images/stock-wilber-16.png
|
share/gimp/themes/Default/images/stock-wilber-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-wilber-64.png
|
||||||
share/gimp/themes/Default/images/stock-wilber-eek-64.png
|
share/gimp/themes/Default/images/stock-wilber-eek-64.png
|
||||||
share/gimp/tips/gimp-tips.xml
|
share/gimp/tips/gimp-tips.xml
|
||||||
|
%%GNOME:%%share/gnome/application-registry/gimp-1.3.applications
|
||||||
%%GNOME:%%share/gnome/applications/gimp-1.3.desktop
|
%%GNOME:%%share/gnome/applications/gimp-1.3.desktop
|
||||||
|
%%GNOME:%%share/gnome/mime-info/gimp-1.3.keys
|
||||||
|
%%GNOME:%%share/gnome/pixmaps/gnome-gimp.png
|
||||||
share/locale/ca/LC_MESSAGES/gimp14-libgimp.mo
|
share/locale/ca/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
share/locale/ca/LC_MESSAGES/gimp14-script-fu.mo
|
share/locale/ca/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
share/locale/ca/LC_MESSAGES/gimp14-std-plug-ins.mo
|
share/locale/ca/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
|
@ -1126,6 +1289,10 @@ share/locale/uk/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
share/locale/uk/LC_MESSAGES/gimp14-script-fu.mo
|
share/locale/uk/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
share/locale/uk/LC_MESSAGES/gimp14-std-plug-ins.mo
|
share/locale/uk/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
share/locale/uk/LC_MESSAGES/gimp14.mo
|
share/locale/uk/LC_MESSAGES/gimp14.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14.mo
|
||||||
share/locale/zh_CN/LC_MESSAGES/gimp14-libgimp.mo
|
share/locale/zh_CN/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
share/locale/zh_CN/LC_MESSAGES/gimp14-script-fu.mo
|
share/locale/zh_CN/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
share/locale/zh_CN/LC_MESSAGES/gimp14-std-plug-ins.mo
|
share/locale/zh_CN/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
|
@ -1161,6 +1328,7 @@ share/locale/zh_TW/LC_MESSAGES/gimp14.mo
|
||||||
@dirrm share/gimp/fractalexplorer
|
@dirrm share/gimp/fractalexplorer
|
||||||
@dirrm share/gimp/brushes
|
@dirrm share/gimp/brushes
|
||||||
@dirrm share/gimp
|
@dirrm share/gimp
|
||||||
|
%%PYTHON:%%@dirrm libexec/gimp/1.3/python
|
||||||
@dirrm libexec/gimp/1.3/plug-ins
|
@dirrm libexec/gimp/1.3/plug-ins
|
||||||
@dirrm libexec/gimp/1.3/modules
|
@dirrm libexec/gimp/1.3/modules
|
||||||
@dirrm libexec/gimp/1.3/environ
|
@dirrm libexec/gimp/1.3/environ
|
||||||
|
|
|
@ -39,6 +39,8 @@ USE_X_PREFIX= yes
|
||||||
USE_XPM= yes
|
USE_XPM= yes
|
||||||
USE_GMAKE= yes
|
USE_GMAKE= yes
|
||||||
USE_LIBTOOL= yes
|
USE_LIBTOOL= yes
|
||||||
|
USE_GNOMENG= yes
|
||||||
|
USE_GNOME= gnomehack
|
||||||
INSTALLS_SHLIB= yes
|
INSTALLS_SHLIB= yes
|
||||||
USE_REINPLACE= yes
|
USE_REINPLACE= yes
|
||||||
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
|
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
|
||||||
|
@ -46,22 +48,28 @@ PLIST_SUB= SHLIBVER="${SHLIBVER}"
|
||||||
CONFIGURE_ARGS= --disable-perl \
|
CONFIGURE_ARGS= --disable-perl \
|
||||||
--with-html-dir=${PREFIX}/share/doc/gimp \
|
--with-html-dir=${PREFIX}/share/doc/gimp \
|
||||||
--disable-gtk-doc
|
--disable-gtk-doc
|
||||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include -I${MPEG_WRKSRC}" \
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||||
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
||||||
|
|
||||||
GIMP_DISTFILE= ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
|
GIMP_DISTFILE= ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
|
||||||
MPEG_DISTFILE= ${DISTDIR}/mpeg_lib-1.3.1.tar.gz
|
|
||||||
MPEG_WRKSRC= ${WRKDIR}/mpeg_lib-1.3.1
|
|
||||||
MPEG_CONFIGURE_ENV= OPTIMIZE="${CFLAGS}"
|
|
||||||
MPEG_CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
||||||
--target=${ARCH}-unknown-freebsd${OSREL}
|
|
||||||
|
|
||||||
MAN1= gimp-1.3.1 gimptool-1.3.1 gimp-remote-1.3.1
|
MAN1= gimp-1.3.1 gimptool-1.3.1 gimp-remote-1.3.1
|
||||||
MAN5= gimprc-1.3.5
|
MAN5= gimprc-1.3.5
|
||||||
|
|
||||||
|
.if defined(WITH_PYTHON)
|
||||||
|
USE_PYTHON= yes
|
||||||
|
BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/_gtkmodule.so:${PORTSDIR}/x11-toolkits/py-gtk2
|
||||||
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/_gtkmodule.so:${PORTSDIR}/x11-toolkits/py-gtk2
|
||||||
|
CONFIGURE_ARGS+= --enable-python
|
||||||
|
PLIST_SUB+= PYTHON:=""
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+= --disable-python
|
||||||
|
PLIST_SUB+= PYTHON:="@comment "
|
||||||
|
.endif
|
||||||
|
|
||||||
.if exists(${X11BASE}/libdata/pkgconfig/libpanelapplet-2.0.pc)
|
.if exists(${X11BASE}/libdata/pkgconfig/libpanelapplet-2.0.pc)
|
||||||
RUN_DEPENDS+= gnome-panel:${PORTSDIR}/x11/gnomepanel
|
RUN_DEPENDS+= gnome-panel:${PORTSDIR}/x11/gnomepanel
|
||||||
CONFIGURE_ARGS+= --with-gnome-desktop=${X11BASE}/share/gnome/applications
|
CONFIGURE_ARGS+= --with-gnome-datadir=${X11BASE}/share/gnome
|
||||||
PLIST_SUB+= GNOME:=""
|
PLIST_SUB+= GNOME:=""
|
||||||
.else
|
.else
|
||||||
PLIST_SUB+= GNOME:="@comment "
|
PLIST_SUB+= GNOME:="@comment "
|
||||||
|
@ -71,28 +79,11 @@ PLIST_SUB+= GNOME:="@comment "
|
||||||
#LIB_DEPENDS+= gtkhtml-2.0:${PORTSDIR}/www/libgtkhtml
|
#LIB_DEPENDS+= gtkhtml-2.0:${PORTSDIR}/www/libgtkhtml
|
||||||
#.endif
|
#.endif
|
||||||
|
|
||||||
do-extract:
|
pre-everything::
|
||||||
@${MKDIR} ${WRKDIR}
|
@${ECHO_MSG} ""
|
||||||
@(cd ${WRKDIR} && ${BZIP2_CMD} -dc ${GIMP_DISTFILE} | ${TAR} -xf -)
|
@${ECHO_MSG} "gimp-devel has the following tunable option(s):"
|
||||||
@(cd ${WRKDIR} && ${GZIP_CMD} -dc ${MPEG_DISTFILE} | ${TAR} -xf -)
|
@${ECHO_MSG} ""
|
||||||
@(${FIND} ${MPEG_WRKSRC} -type f | ${XARGS} ${CHMOD} u+w)
|
@${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support"
|
||||||
|
@${ECHO_MSG} ""
|
||||||
pre-configure:
|
|
||||||
@(cd ${MPEG_WRKSRC} && \
|
|
||||||
${SETENV} CC="${CC}" CXX="${CXX}" \
|
|
||||||
CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
|
|
||||||
INSTALL="/usr/bin/install -c -o ${BINOWN} -g ${BINGRP}" \
|
|
||||||
INSTALL_DATA="${INSTALL_DATA}" \
|
|
||||||
INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
|
|
||||||
INSTALL_SCRIPT="${INSTALL_SCRIPT}" \
|
|
||||||
${MPEG_CONFIGURE_ENV} ./configure ${MPEG_CONFIGURE_ARGS})
|
|
||||||
@(cd ${MPEG_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
|
|
||||||
|
|
||||||
post-patch:
|
|
||||||
@${REINPLACE_CMD} -e 's|-lmpeg|${MPEG_WRKSRC}/libmpeg.a|g' \
|
|
||||||
${WRKSRC}/configure
|
|
||||||
@(cd ${MPEG_WRKSRC} ; \
|
|
||||||
${GREP} -r -l "<malloc.h>" * | \
|
|
||||||
${XARGS} ${REINPLACE_CMD} -e "s/<malloc.h>/<stdlib.h>/")
|
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
MD5 (gimp-1.3.11.tar.bz2) = df2e753e1ad951b52f790b8392091a46
|
MD5 (gimp-1.3.12.tar.bz2) = 1f3eda10fc8e6379e5578f21a925e2be
|
||||||
MD5 (mpeg_lib-1.3.1.tar.gz) = 9d803be0073f42acf87d5fbb339a183b
|
MD5 (mpeg_lib-1.3.1.tar.gz) = 9d803be0073f42acf87d5fbb339a183b
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
--- ../mpeg_lib-1.3.1/Makefile.in.orig Thu Nov 26 11:03:29 1998
|
|
||||||
+++ ../mpeg_lib-1.3.1/Makefile.in Tue Jul 9 22:28:11 2002
|
|
||||||
@@ -19,7 +19,7 @@
|
|
||||||
exec_prefix = @exec_prefix@
|
|
||||||
INSTALL_INCLUDE = @includedir@
|
|
||||||
INSTALL_LIBRARY = @libdir@
|
|
||||||
-INSTALL = @INSTALL@
|
|
||||||
+INSTALL_DATA = @INSTALL_DATA@
|
|
||||||
|
|
||||||
# Other miscellaneous programs
|
|
||||||
AR = @AR@
|
|
||||||
@@ -67,10 +67,9 @@
|
|
||||||
$(CC) -shared -o $(SHLIB) $(LIBOBJ)
|
|
||||||
|
|
||||||
install: $(LIBRARY)
|
|
||||||
- $(INSTALL) -d $(INSTALL_INCLUDE) $(INSTALL_LIBRARY)
|
|
||||||
- $(INSTALL) -m 0644 $(HEADER) $(INSTALL_INCLUDE)/$(HEADER)
|
|
||||||
- $(INSTALL) -m 0644 $(LIBRARY) $(INSTALL_LIBRARY)/$(LIBRARY)
|
|
||||||
- @if test -f $(SHLIB) ; then echo "warning: $(SHLIB) *not* installed (installing shared libraries is too system-specific)" ; fi
|
|
||||||
+ $(MKDIR) $(INSTALL_INCLUDE) $(INSTALL_LIBRARY)
|
|
||||||
+ $(INSTALL_DATA) $(HEADER) $(INSTALL_INCLUDE)/$(HEADER)
|
|
||||||
+ $(INSTALL_DATA) $(LIBRARY) $(INSTALL_LIBRARY)/$(LIBRARY)
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f $(LIBRARY) $(EXTRAS) $(LIBOBJ) core
|
|
|
@ -1,23 +0,0 @@
|
||||||
--- ../mpeg_lib-1.3.1/video.c.orig Sat Jul 24 13:00:51 1999
|
|
||||||
+++ ../mpeg_lib-1.3.1/video.c Tue Aug 31 23:11:56 1999
|
|
||||||
@@ -49,6 +49,10 @@
|
|
||||||
#include "proto.h"
|
|
||||||
#include "my_dmalloc.h"
|
|
||||||
|
|
||||||
+#ifdef _HAVE_PARAM_H
|
|
||||||
+#include <sys/param.h>
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
/* Declarations of functions. */
|
|
||||||
static void ReconIMBlock(VidStream *,int);
|
|
||||||
static void ReconPMBlock(VidStream *,int,int,int,int);
|
|
||||||
@@ -445,7 +449,9 @@
|
|
||||||
static int num_calls = 0;
|
|
||||||
unsigned int data;
|
|
||||||
int i, status;
|
|
||||||
+#if BSD < 199103
|
|
||||||
long int ftell (FILE *stream);
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
/* If vid_stream is null, create new VidStream structure. */
|
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
|
|
||||||
$FreeBSD$
|
|
||||||
|
|
||||||
--- Makefile.in 2002/05/17 18:44:19 1.1
|
|
||||||
+++ Makefile.in 2002/05/17 18:44:46
|
|
||||||
@@ -185,7 +185,7 @@
|
|
||||||
|
|
||||||
bin_SCRIPTS = gimptool-1.3 @GIMPINSTALL@
|
|
||||||
|
|
||||||
-pkgconfigdir = $(libdir)/pkgconfig
|
|
||||||
+pkgconfigdir = $(prefix)/libdata/pkgconfig
|
|
||||||
pkgconfig_DATA = gimp-1.3.pc gimpui-1.3.pc
|
|
||||||
|
|
||||||
EXTRA_SCRIPTS = gimpinstall-1.3
|
|
10
graphics/gimp-app/files/patch-app_plug-in_plug-in-shm.c
Normal file
10
graphics/gimp-app/files/patch-app_plug-in_plug-in-shm.c
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
--- app/plug-in/plug-in-shm.c.orig Wed Feb 19 01:40:37 2003
|
||||||
|
+++ app/plug-in/plug-in-shm.c Wed Feb 19 01:40:49 2003
|
||||||
|
@@ -17,6 +17,7 @@
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
+#include <sys/types.h>
|
||||||
|
|
||||||
|
#ifdef HAVE_IPC_H
|
||||||
|
#include <sys/ipc.h>
|
|
@ -1 +0,0 @@
|
||||||
A GNU Image Manipulation Program (unstable development version)
|
|
|
@ -71,6 +71,7 @@ include/gimp-1.3/libgimpbase/gimpparasite.h
|
||||||
include/gimp-1.3/libgimpbase/gimpparasiteio.h
|
include/gimp-1.3/libgimpbase/gimpparasiteio.h
|
||||||
include/gimp-1.3/libgimpbase/gimpsignal.h
|
include/gimp-1.3/libgimpbase/gimpsignal.h
|
||||||
include/gimp-1.3/libgimpbase/gimpunit.h
|
include/gimp-1.3/libgimpbase/gimpunit.h
|
||||||
|
include/gimp-1.3/libgimpbase/gimputils.h
|
||||||
include/gimp-1.3/libgimpbase/gimpversion.h
|
include/gimp-1.3/libgimpbase/gimpversion.h
|
||||||
include/gimp-1.3/libgimpcolor/gimpadaptivesupersample.h
|
include/gimp-1.3/libgimpcolor/gimpadaptivesupersample.h
|
||||||
include/gimp-1.3/libgimpcolor/gimpbilinear.h
|
include/gimp-1.3/libgimpcolor/gimpbilinear.h
|
||||||
|
@ -107,6 +108,7 @@ include/gimp-1.3/libgimpwidgets/gimpcolorselector.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimpdialog.h
|
include/gimp-1.3/libgimpwidgets/gimpdialog.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimpfileselection.h
|
include/gimp-1.3/libgimpwidgets/gimpfileselection.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimphelpui.h
|
include/gimp-1.3/libgimpwidgets/gimphelpui.h
|
||||||
|
include/gimp-1.3/libgimpwidgets/gimpmemsizeentry.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimpoffsetarea.h
|
include/gimp-1.3/libgimpwidgets/gimpoffsetarea.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimppatheditor.h
|
include/gimp-1.3/libgimpwidgets/gimppatheditor.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimppickbutton.h
|
include/gimp-1.3/libgimpwidgets/gimppickbutton.h
|
||||||
|
@ -150,6 +152,7 @@ lib/libgimpwidgets-1.3.so.%%SHLIBVER%%
|
||||||
libdata/pkgconfig/gimp-1.3.pc
|
libdata/pkgconfig/gimp-1.3.pc
|
||||||
libdata/pkgconfig/gimpui-1.3.pc
|
libdata/pkgconfig/gimpui-1.3.pc
|
||||||
libexec/gimp/1.3/environ/default.env
|
libexec/gimp/1.3/environ/default.env
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/environ/pygimp.env
|
||||||
libexec/gimp/1.3/modules/libcdisplay_colorblind.so
|
libexec/gimp/1.3/modules/libcdisplay_colorblind.so
|
||||||
libexec/gimp/1.3/modules/libcdisplay_gamma.so
|
libexec/gimp/1.3/modules/libcdisplay_gamma.so
|
||||||
libexec/gimp/1.3/modules/libcdisplay_highcontrast.so
|
libexec/gimp/1.3/modules/libcdisplay_highcontrast.so
|
||||||
|
@ -177,7 +180,9 @@ libexec/gimp/1.3/plug-ins/bumpmap
|
||||||
libexec/gimp/1.3/plug-ins/bz2
|
libexec/gimp/1.3/plug-ins/bz2
|
||||||
libexec/gimp/1.3/plug-ins/c_astretch
|
libexec/gimp/1.3/plug-ins/c_astretch
|
||||||
libexec/gimp/1.3/plug-ins/checkerboard
|
libexec/gimp/1.3/plug-ins/checkerboard
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/clothify.py
|
||||||
libexec/gimp/1.3/plug-ins/color_enhance
|
libexec/gimp/1.3/plug-ins/color_enhance
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/colorhtml.py
|
||||||
libexec/gimp/1.3/plug-ins/colorify
|
libexec/gimp/1.3/plug-ins/colorify
|
||||||
libexec/gimp/1.3/plug-ins/colortoalpha
|
libexec/gimp/1.3/plug-ins/colortoalpha
|
||||||
libexec/gimp/1.3/plug-ins/compose
|
libexec/gimp/1.3/plug-ins/compose
|
||||||
|
@ -202,6 +207,7 @@ libexec/gimp/1.3/plug-ins/film
|
||||||
libexec/gimp/1.3/plug-ins/fits
|
libexec/gimp/1.3/plug-ins/fits
|
||||||
libexec/gimp/1.3/plug-ins/flame
|
libexec/gimp/1.3/plug-ins/flame
|
||||||
libexec/gimp/1.3/plug-ins/flarefx
|
libexec/gimp/1.3/plug-ins/flarefx
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/foggify.py
|
||||||
libexec/gimp/1.3/plug-ins/fp
|
libexec/gimp/1.3/plug-ins/fp
|
||||||
libexec/gimp/1.3/plug-ins/fractaltrace
|
libexec/gimp/1.3/plug-ins/fractaltrace
|
||||||
libexec/gimp/1.3/plug-ins/gauss_iir
|
libexec/gimp/1.3/plug-ins/gauss_iir
|
||||||
|
@ -216,11 +222,13 @@ libexec/gimp/1.3/plug-ins/gicon
|
||||||
libexec/gimp/1.3/plug-ins/gif
|
libexec/gimp/1.3/plug-ins/gif
|
||||||
libexec/gimp/1.3/plug-ins/gifload
|
libexec/gimp/1.3/plug-ins/gifload
|
||||||
libexec/gimp/1.3/plug-ins/gih
|
libexec/gimp/1.3/plug-ins/gih
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/gimpcons.py
|
||||||
libexec/gimp/1.3/plug-ins/gimpressionist
|
libexec/gimp/1.3/plug-ins/gimpressionist
|
||||||
libexec/gimp/1.3/plug-ins/glasstile
|
libexec/gimp/1.3/plug-ins/glasstile
|
||||||
libexec/gimp/1.3/plug-ins/gqbist
|
libexec/gimp/1.3/plug-ins/gqbist
|
||||||
libexec/gimp/1.3/plug-ins/gradmap
|
libexec/gimp/1.3/plug-ins/gradmap
|
||||||
libexec/gimp/1.3/plug-ins/grid
|
libexec/gimp/1.3/plug-ins/grid
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/gtkcons.py
|
||||||
libexec/gimp/1.3/plug-ins/gtm
|
libexec/gimp/1.3/plug-ins/gtm
|
||||||
libexec/gimp/1.3/plug-ins/guillotine
|
libexec/gimp/1.3/plug-ins/guillotine
|
||||||
libexec/gimp/1.3/plug-ins/gz
|
libexec/gimp/1.3/plug-ins/gz
|
||||||
|
@ -241,7 +249,6 @@ libexec/gimp/1.3/plug-ins/max_rgb
|
||||||
libexec/gimp/1.3/plug-ins/maze
|
libexec/gimp/1.3/plug-ins/maze
|
||||||
libexec/gimp/1.3/plug-ins/mblur
|
libexec/gimp/1.3/plug-ins/mblur
|
||||||
libexec/gimp/1.3/plug-ins/mosaic
|
libexec/gimp/1.3/plug-ins/mosaic
|
||||||
libexec/gimp/1.3/plug-ins/mpeg
|
|
||||||
libexec/gimp/1.3/plug-ins/newsprint
|
libexec/gimp/1.3/plug-ins/newsprint
|
||||||
libexec/gimp/1.3/plug-ins/nlfilt
|
libexec/gimp/1.3/plug-ins/nlfilt
|
||||||
libexec/gimp/1.3/plug-ins/noisify
|
libexec/gimp/1.3/plug-ins/noisify
|
||||||
|
@ -252,6 +259,7 @@ libexec/gimp/1.3/plug-ins/pagecurl
|
||||||
libexec/gimp/1.3/plug-ins/papertile
|
libexec/gimp/1.3/plug-ins/papertile
|
||||||
libexec/gimp/1.3/plug-ins/pat
|
libexec/gimp/1.3/plug-ins/pat
|
||||||
libexec/gimp/1.3/plug-ins/pcx
|
libexec/gimp/1.3/plug-ins/pcx
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/pdbbrowse.py
|
||||||
libexec/gimp/1.3/plug-ins/pix
|
libexec/gimp/1.3/plug-ins/pix
|
||||||
libexec/gimp/1.3/plug-ins/pixelize
|
libexec/gimp/1.3/plug-ins/pixelize
|
||||||
libexec/gimp/1.3/plug-ins/plasma
|
libexec/gimp/1.3/plug-ins/plasma
|
||||||
|
@ -262,6 +270,7 @@ libexec/gimp/1.3/plug-ins/polar
|
||||||
libexec/gimp/1.3/plug-ins/print
|
libexec/gimp/1.3/plug-ins/print
|
||||||
libexec/gimp/1.3/plug-ins/ps
|
libexec/gimp/1.3/plug-ins/ps
|
||||||
libexec/gimp/1.3/plug-ins/psd
|
libexec/gimp/1.3/plug-ins/psd
|
||||||
|
libexec/gimp/1.3/plug-ins/psd_save
|
||||||
libexec/gimp/1.3/plug-ins/psp
|
libexec/gimp/1.3/plug-ins/psp
|
||||||
libexec/gimp/1.3/plug-ins/randomize
|
libexec/gimp/1.3/plug-ins/randomize
|
||||||
libexec/gimp/1.3/plug-ins/rcm
|
libexec/gimp/1.3/plug-ins/rcm
|
||||||
|
@ -275,6 +284,7 @@ libexec/gimp/1.3/plug-ins/sel2path
|
||||||
libexec/gimp/1.3/plug-ins/sel_gauss
|
libexec/gimp/1.3/plug-ins/sel_gauss
|
||||||
libexec/gimp/1.3/plug-ins/semiflatten
|
libexec/gimp/1.3/plug-ins/semiflatten
|
||||||
libexec/gimp/1.3/plug-ins/sgi
|
libexec/gimp/1.3/plug-ins/sgi
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/shadow_bevel.py
|
||||||
libexec/gimp/1.3/plug-ins/sharpen
|
libexec/gimp/1.3/plug-ins/sharpen
|
||||||
libexec/gimp/1.3/plug-ins/shift
|
libexec/gimp/1.3/plug-ins/shift
|
||||||
libexec/gimp/1.3/plug-ins/sinus
|
libexec/gimp/1.3/plug-ins/sinus
|
||||||
|
@ -282,6 +292,8 @@ libexec/gimp/1.3/plug-ins/smooth_palette
|
||||||
libexec/gimp/1.3/plug-ins/snoise
|
libexec/gimp/1.3/plug-ins/snoise
|
||||||
libexec/gimp/1.3/plug-ins/sobel
|
libexec/gimp/1.3/plug-ins/sobel
|
||||||
libexec/gimp/1.3/plug-ins/sparkle
|
libexec/gimp/1.3/plug-ins/sparkle
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/sphere.py
|
||||||
|
libexec/gimp/1.3/plug-ins/spheredesigner
|
||||||
libexec/gimp/1.3/plug-ins/spread
|
libexec/gimp/1.3/plug-ins/spread
|
||||||
libexec/gimp/1.3/plug-ins/struc
|
libexec/gimp/1.3/plug-ins/struc
|
||||||
libexec/gimp/1.3/plug-ins/sunras
|
libexec/gimp/1.3/plug-ins/sunras
|
||||||
|
@ -302,6 +314,7 @@ libexec/gimp/1.3/plug-ins/warp
|
||||||
libexec/gimp/1.3/plug-ins/waves
|
libexec/gimp/1.3/plug-ins/waves
|
||||||
libexec/gimp/1.3/plug-ins/webbrowser
|
libexec/gimp/1.3/plug-ins/webbrowser
|
||||||
libexec/gimp/1.3/plug-ins/whirlpinch
|
libexec/gimp/1.3/plug-ins/whirlpinch
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/whirlpinch.py
|
||||||
libexec/gimp/1.3/plug-ins/wind
|
libexec/gimp/1.3/plug-ins/wind
|
||||||
libexec/gimp/1.3/plug-ins/wmf
|
libexec/gimp/1.3/plug-ins/wmf
|
||||||
libexec/gimp/1.3/plug-ins/xbm
|
libexec/gimp/1.3/plug-ins/xbm
|
||||||
|
@ -309,6 +322,22 @@ libexec/gimp/1.3/plug-ins/xjt
|
||||||
libexec/gimp/1.3/plug-ins/xpm
|
libexec/gimp/1.3/plug-ins/xpm
|
||||||
libexec/gimp/1.3/plug-ins/xwd
|
libexec/gimp/1.3/plug-ins/xwd
|
||||||
libexec/gimp/1.3/plug-ins/zealouscrop
|
libexec/gimp/1.3/plug-ins/zealouscrop
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpenums.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpenums.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpenums.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpfu.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpfu.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpfu.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpmodule.so
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpplugin.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpplugin.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpplugin.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpshelf.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpshelf.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpshelf.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpui.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpui.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpui.pyo
|
||||||
share/aclocal/gimp-1.4.m4
|
share/aclocal/gimp-1.4.m4
|
||||||
share/doc/gimp/libgimp/gimpdefinitions.html
|
share/doc/gimp/libgimp/gimpdefinitions.html
|
||||||
share/doc/gimp/libgimp/home.png
|
share/doc/gimp/libgimp/home.png
|
||||||
|
@ -335,7 +364,6 @@ share/doc/gimp/libgimp/libgimp-gimpimage.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimplayer.html
|
share/doc/gimp/libgimp/libgimp-gimplayer.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpmenu.html
|
share/doc/gimp/libgimp/libgimp-gimpmenu.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpmessage.html
|
share/doc/gimp/libgimp/libgimp-gimpmessage.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpmisc.html
|
|
||||||
share/doc/gimp/libgimp/libgimp-gimppalette.html
|
share/doc/gimp/libgimp/libgimp-gimppalette.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimppatterns.html
|
share/doc/gimp/libgimp/libgimp-gimppatterns.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimppixelrgn.html
|
share/doc/gimp/libgimp/libgimp-gimppixelrgn.html
|
||||||
|
@ -347,12 +375,15 @@ share/doc/gimp/libgimp/libgimp-gimptile.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimptools.html
|
share/doc/gimp/libgimp/libgimp-gimptools.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpui.html
|
share/doc/gimp/libgimp/libgimp-gimpui.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpundo.html
|
share/doc/gimp/libgimp/libgimp-gimpundo.html
|
||||||
|
share/doc/gimp/libgimp/libgimp.devhelp
|
||||||
share/doc/gimp/libgimp/libgimp.html
|
share/doc/gimp/libgimp/libgimp.html
|
||||||
share/doc/gimp/libgimp/libgimpui.html
|
share/doc/gimp/libgimp/libgimpui.html
|
||||||
share/doc/gimp/libgimp/right.png
|
share/doc/gimp/libgimp/right.png
|
||||||
share/doc/gimp/libgimp/up.png
|
share/doc/gimp/libgimp/up.png
|
||||||
|
share/doc/gimp/libgimpbase/home.png
|
||||||
share/doc/gimp/libgimpbase/index.html
|
share/doc/gimp/libgimpbase/index.html
|
||||||
share/doc/gimp/libgimpbase/index.sgml
|
share/doc/gimp/libgimpbase/index.sgml
|
||||||
|
share/doc/gimp/libgimpbase/left.png
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpenv.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpenv.html
|
||||||
|
@ -362,63 +393,180 @@ share/doc/gimp/libgimpbase/libgimpbase-gimpparasiteio.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpprotocol.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpprotocol.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpsignal.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpsignal.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html
|
||||||
|
share/doc/gimp/libgimpbase/libgimpbase-gimputils.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpwire.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpwire.html
|
||||||
|
share/doc/gimp/libgimpbase/libgimpbase.devhelp
|
||||||
share/doc/gimp/libgimpbase/libgimpbase.html
|
share/doc/gimp/libgimpbase/libgimpbase.html
|
||||||
|
share/doc/gimp/libgimpbase/right.png
|
||||||
|
share/doc/gimp/libgimpbase/up.png
|
||||||
|
share/doc/gimp/libgimpcolor/home.png
|
||||||
share/doc/gimp/libgimpcolor/index.html
|
share/doc/gimp/libgimpcolor/index.html
|
||||||
share/doc/gimp/libgimpcolor/index.sgml
|
share/doc/gimp/libgimpcolor/index.sgml
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimpadaptivesupersample.html
|
share/doc/gimp/libgimpcolor/left.png
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimpbilinear.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimpcolorspace.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpBilinear.html
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimphsv.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorSpace.html
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimprgb.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpHSV.html
|
||||||
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpRGB.html
|
||||||
|
share/doc/gimp/libgimpcolor/libgimpcolor.devhelp
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor.html
|
share/doc/gimp/libgimpcolor/libgimpcolor.html
|
||||||
|
share/doc/gimp/libgimpcolor/right.png
|
||||||
|
share/doc/gimp/libgimpcolor/up.png
|
||||||
|
share/doc/gimp/libgimpmath/home.png
|
||||||
share/doc/gimp/libgimpmath/index.html
|
share/doc/gimp/libgimpmath/index.html
|
||||||
share/doc/gimp/libgimpmath/index.sgml
|
share/doc/gimp/libgimpmath/index.sgml
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpmath.html
|
share/doc/gimp/libgimpmath/left.png
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpmatrix.html
|
share/doc/gimp/libgimpmath/libgimpmath-GimpMD5.html
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpmd5.html
|
share/doc/gimp/libgimpmath/libgimpmath-GimpMath.html
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpvector.html
|
share/doc/gimp/libgimpmath/libgimpmath-GimpMatrix.html
|
||||||
|
share/doc/gimp/libgimpmath/libgimpmath-GimpVector.html
|
||||||
|
share/doc/gimp/libgimpmath/libgimpmath.devhelp
|
||||||
share/doc/gimp/libgimpmath/libgimpmath.html
|
share/doc/gimp/libgimpmath/libgimpmath.html
|
||||||
share/doc/gimp/libgimpmodule/gimpmodule.html
|
share/doc/gimp/libgimpmath/right.png
|
||||||
share/doc/gimp/libgimpmodule/gimpmoduledb.html
|
share/doc/gimp/libgimpmath/up.png
|
||||||
|
share/doc/gimp/libgimpmodule/GimpModule.html
|
||||||
|
share/doc/gimp/libgimpmodule/GimpModuleDB.html
|
||||||
share/doc/gimp/libgimpmodule/home.png
|
share/doc/gimp/libgimpmodule/home.png
|
||||||
share/doc/gimp/libgimpmodule/index.html
|
share/doc/gimp/libgimpmodule/index.html
|
||||||
share/doc/gimp/libgimpmodule/index.sgml
|
share/doc/gimp/libgimpmodule/index.sgml
|
||||||
share/doc/gimp/libgimpmodule/left.png
|
share/doc/gimp/libgimpmodule/left.png
|
||||||
|
share/doc/gimp/libgimpmodule/libgimpmodule.devhelp
|
||||||
share/doc/gimp/libgimpmodule/libgimpmodule.html
|
share/doc/gimp/libgimpmodule/libgimpmodule.html
|
||||||
share/doc/gimp/libgimpmodule/right.png
|
share/doc/gimp/libgimpmodule/right.png
|
||||||
share/doc/gimp/libgimpmodule/up.png
|
share/doc/gimp/libgimpmodule/up.png
|
||||||
share/doc/gimp/libgimpwidgets/gimpbutton.html
|
share/doc/gimp/libgimpwidgets/GimpButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpchainbutton.html
|
share/doc/gimp/libgimpwidgets/GimpChainButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorbutton.html
|
share/doc/gimp/libgimpwidgets/GimpColorButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolordisplay.html
|
share/doc/gimp/libgimpwidgets/GimpColorDisplay.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolornotebook.html
|
share/doc/gimp/libgimpwidgets/GimpColorNotebook.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorscale.html
|
share/doc/gimp/libgimpwidgets/GimpColorScale.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorscales.html
|
share/doc/gimp/libgimpwidgets/GimpColorScales.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorselect.html
|
share/doc/gimp/libgimpwidgets/GimpColorSelect.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorselector.html
|
share/doc/gimp/libgimpwidgets/GimpColorSelector.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpdialog.html
|
share/doc/gimp/libgimpwidgets/GimpDialog.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpfileselection.html
|
share/doc/gimp/libgimpwidgets/GimpFileSelection.html
|
||||||
share/doc/gimp/libgimpwidgets/gimppatheditor.html
|
share/doc/gimp/libgimpwidgets/GimpMemsizeEntry.html
|
||||||
share/doc/gimp/libgimpwidgets/gimppickbutton.html
|
share/doc/gimp/libgimpwidgets/GimpPathEditor.html
|
||||||
share/doc/gimp/libgimpwidgets/gimppixmap.html
|
share/doc/gimp/libgimpwidgets/GimpPickButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpsizeentry.html
|
share/doc/gimp/libgimpwidgets/GimpPixmap.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpunitmenu.html
|
share/doc/gimp/libgimpwidgets/GimpSizeEntry.html
|
||||||
|
share/doc/gimp/libgimpwidgets/GimpUnitMenu.html
|
||||||
share/doc/gimp/libgimpwidgets/home.png
|
share/doc/gimp/libgimpwidgets/home.png
|
||||||
share/doc/gimp/libgimpwidgets/index.html
|
share/doc/gimp/libgimpwidgets/index.html
|
||||||
share/doc/gimp/libgimpwidgets/index.sgml
|
share/doc/gimp/libgimpwidgets/index.sgml
|
||||||
share/doc/gimp/libgimpwidgets/left.png
|
share/doc/gimp/libgimpwidgets/left.png
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpColorArea.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpHelpUI.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpQueryBox.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpStock.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpWidgets.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-colordisplay.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-colordisplay.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-colorselector.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-colorselector.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpcolorarea.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimphelpui.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpquerybox.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpstock.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpwidgets.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-utils.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-utils.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-widgets.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-widgets.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets.devhelp
|
||||||
share/doc/gimp/libgimpwidgets/right.png
|
share/doc/gimp/libgimpwidgets/right.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-anchor-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-char-picker-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-picker-black-18.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-picker-gray-18.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-picker-white-18.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-triangle-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-convert-grayscale-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-convert-indexed-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-convert-rgb-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-default-colors-12.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-duplicate-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-edit-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-eye-20.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-east-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-north-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-north-east-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-north-west-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-south-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-south-east-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-south-west-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-west-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-hchain-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-hchain-broken-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-info-64.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-invert-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-layer-to-imagesize-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-letter-spacing-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-line-spacing-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-linked-20.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-merge-down-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-navigation-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-paste-as-new-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-paste-into-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-path-stroke-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-plugin-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-qmask-off-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-qmask-on-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-reset-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-reshow-filter-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-resize-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-rotate-180-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-rotate-270-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-rotate-90-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-scale-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-add-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-all-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-grow-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-intersect-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-none-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-replace-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-shrink-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-stroke-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-subtract-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-to-channel-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-to-path-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-swap-colors-12.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-airbrush-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-bezier-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-blend-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-blur-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-brightness-contrast-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-bucket-fill-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-by-color-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-clone-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-color-balance-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-color-picker-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-crop-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-curves-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-dodge-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-ellipse-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-eraser-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-flip-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-free-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-fuzzy-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-histogram-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-hue-saturation-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-ink-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-iscissors-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-levels-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-measure-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-move-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-options-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-paintbrush-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-path-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-pencil-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-perspective-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-posterize-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-rect-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-rotate-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-scale-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-shear-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-smudge-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-text-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-threshold-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-zoom-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-vchain-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-vchain-broken-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-warning-64.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-wilber-64.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-wilber-eek-64.png
|
||||||
share/doc/gimp/libgimpwidgets/up.png
|
share/doc/gimp/libgimpwidgets/up.png
|
||||||
share/gimp/brushes/10x10square.gbr
|
share/gimp/brushes/10x10square.gbr
|
||||||
share/gimp/brushes/10x10squareBlur.gbr
|
share/gimp/brushes/10x10squareBlur.gbr
|
||||||
|
@ -695,7 +843,9 @@ share/gimp/images/gimp_splash.png
|
||||||
share/gimp/images/wilber-icon.png
|
share/gimp/images/wilber-icon.png
|
||||||
share/gimp/images/wilber-tips.png
|
share/gimp/images/wilber-tips.png
|
||||||
share/gimp/images/wilber-wizard.png
|
share/gimp/images/wilber-wizard.png
|
||||||
|
share/gimp/misc/gimp.applications
|
||||||
share/gimp/misc/gimp.desktop
|
share/gimp/misc/gimp.desktop
|
||||||
|
share/gimp/misc/gimp.keys
|
||||||
share/gimp/palettes/Bears.gpl
|
share/gimp/palettes/Bears.gpl
|
||||||
share/gimp/palettes/Bgold.gpl
|
share/gimp/palettes/Bgold.gpl
|
||||||
share/gimp/palettes/Blues.gpl
|
share/gimp/palettes/Blues.gpl
|
||||||
|
@ -829,7 +979,7 @@ share/gimp/scripts/comic-logo.scm
|
||||||
share/gimp/scripts/coolmetal-logo.scm
|
share/gimp/scripts/coolmetal-logo.scm
|
||||||
share/gimp/scripts/copy-visible.scm
|
share/gimp/scripts/copy-visible.scm
|
||||||
share/gimp/scripts/crystal-logo.scm
|
share/gimp/scripts/crystal-logo.scm
|
||||||
share/gimp/scripts/distress_selection.scm
|
share/gimp/scripts/distress-selection.scm
|
||||||
share/gimp/scripts/drop-shadow.scm
|
share/gimp/scripts/drop-shadow.scm
|
||||||
share/gimp/scripts/erase-rows.scm
|
share/gimp/scripts/erase-rows.scm
|
||||||
share/gimp/scripts/fade-outline.scm
|
share/gimp/scripts/fade-outline.scm
|
||||||
|
@ -853,21 +1003,22 @@ share/gimp/scripts/line-nova.scm
|
||||||
share/gimp/scripts/mkbrush.scm
|
share/gimp/scripts/mkbrush.scm
|
||||||
share/gimp/scripts/neon-logo.scm
|
share/gimp/scripts/neon-logo.scm
|
||||||
share/gimp/scripts/news-text.scm
|
share/gimp/scripts/news-text.scm
|
||||||
share/gimp/scripts/old_photo.scm
|
share/gimp/scripts/old-photo.scm
|
||||||
share/gimp/scripts/perspective-shadow.scm
|
share/gimp/scripts/perspective-shadow.scm
|
||||||
share/gimp/scripts/predator.scm
|
share/gimp/scripts/predator.scm
|
||||||
share/gimp/scripts/pupi-button.scm
|
share/gimp/scripts/pupi-button.scm
|
||||||
share/gimp/scripts/rendermap.scm
|
share/gimp/scripts/rendermap.scm
|
||||||
share/gimp/scripts/ripply-anim.scm
|
share/gimp/scripts/ripply-anim.scm
|
||||||
share/gimp/scripts/round-corners.scm
|
share/gimp/scripts/round-corners.scm
|
||||||
share/gimp/scripts/select_to_brush.scm
|
share/gimp/scripts/select-to-brush.scm
|
||||||
share/gimp/scripts/select_to_image.scm
|
share/gimp/scripts/select-to-image.scm
|
||||||
|
share/gimp/scripts/select-to-pattern.scm
|
||||||
share/gimp/scripts/selection-round.scm
|
share/gimp/scripts/selection-round.scm
|
||||||
share/gimp/scripts/slide.scm
|
share/gimp/scripts/slide.scm
|
||||||
share/gimp/scripts/sota-chrome-logo.scm
|
share/gimp/scripts/sota-chrome-logo.scm
|
||||||
share/gimp/scripts/speed-text.scm
|
share/gimp/scripts/speed-text.scm
|
||||||
share/gimp/scripts/sphere.scm
|
share/gimp/scripts/sphere.scm
|
||||||
share/gimp/scripts/spinning_globe.scm
|
share/gimp/scripts/spinning-globe.scm
|
||||||
share/gimp/scripts/starburst-logo.scm
|
share/gimp/scripts/starburst-logo.scm
|
||||||
share/gimp/scripts/starscape-logo.scm
|
share/gimp/scripts/starscape-logo.scm
|
||||||
share/gimp/scripts/swirltile.scm
|
share/gimp/scripts/swirltile.scm
|
||||||
|
@ -912,7 +1063,6 @@ share/gimp/themes/Default/images/preferences/interface.png
|
||||||
share/gimp/themes/Default/images/preferences/monitor.png
|
share/gimp/themes/Default/images/preferences/monitor.png
|
||||||
share/gimp/themes/Default/images/preferences/new-image.png
|
share/gimp/themes/Default/images/preferences/new-image.png
|
||||||
share/gimp/themes/Default/images/preferences/tool-options.png
|
share/gimp/themes/Default/images/preferences/tool-options.png
|
||||||
share/gimp/themes/Default/images/stock-all-16.png
|
|
||||||
share/gimp/themes/Default/images/stock-anchor-16.png
|
share/gimp/themes/Default/images/stock-anchor-16.png
|
||||||
share/gimp/themes/Default/images/stock-char-picker-22.png
|
share/gimp/themes/Default/images/stock-char-picker-22.png
|
||||||
share/gimp/themes/Default/images/stock-color-picker-black-18.png
|
share/gimp/themes/Default/images/stock-color-picker-black-18.png
|
||||||
|
@ -928,7 +1078,14 @@ share/gimp/themes/Default/images/stock-duplicate-16.png
|
||||||
share/gimp/themes/Default/images/stock-edit-16.png
|
share/gimp/themes/Default/images/stock-edit-16.png
|
||||||
share/gimp/themes/Default/images/stock-error-64.png
|
share/gimp/themes/Default/images/stock-error-64.png
|
||||||
share/gimp/themes/Default/images/stock-eye-20.png
|
share/gimp/themes/Default/images/stock-eye-20.png
|
||||||
share/gimp/themes/Default/images/stock-grow-16.png
|
share/gimp/themes/Default/images/stock-gravity-east-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-north-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-north-east-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-north-west-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-south-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-south-east-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-south-west-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-west-24.png
|
||||||
share/gimp/themes/Default/images/stock-hchain-24.png
|
share/gimp/themes/Default/images/stock-hchain-24.png
|
||||||
share/gimp/themes/Default/images/stock-hchain-broken-24.png
|
share/gimp/themes/Default/images/stock-hchain-broken-24.png
|
||||||
share/gimp/themes/Default/images/stock-info-16.png
|
share/gimp/themes/Default/images/stock-info-16.png
|
||||||
|
@ -943,7 +1100,6 @@ share/gimp/themes/Default/images/stock-lower-16.png
|
||||||
share/gimp/themes/Default/images/stock-merge-down-16.png
|
share/gimp/themes/Default/images/stock-merge-down-16.png
|
||||||
share/gimp/themes/Default/images/stock-navigation-16.png
|
share/gimp/themes/Default/images/stock-navigation-16.png
|
||||||
share/gimp/themes/Default/images/stock-new-16.png
|
share/gimp/themes/Default/images/stock-new-16.png
|
||||||
share/gimp/themes/Default/images/stock-none-16.png
|
|
||||||
share/gimp/themes/Default/images/stock-paste-16.png
|
share/gimp/themes/Default/images/stock-paste-16.png
|
||||||
share/gimp/themes/Default/images/stock-paste-as-new-16.png
|
share/gimp/themes/Default/images/stock-paste-as-new-16.png
|
||||||
share/gimp/themes/Default/images/stock-paste-into-16.png
|
share/gimp/themes/Default/images/stock-paste-into-16.png
|
||||||
|
@ -962,13 +1118,16 @@ share/gimp/themes/Default/images/stock-rotate-270-16.png
|
||||||
share/gimp/themes/Default/images/stock-rotate-90-16.png
|
share/gimp/themes/Default/images/stock-rotate-90-16.png
|
||||||
share/gimp/themes/Default/images/stock-scale-16.png
|
share/gimp/themes/Default/images/stock-scale-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-add-16.png
|
share/gimp/themes/Default/images/stock-selection-add-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-all-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-grow-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-intersect-16.png
|
share/gimp/themes/Default/images/stock-selection-intersect-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-none-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-replace-16.png
|
share/gimp/themes/Default/images/stock-selection-replace-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-shrink-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-stroke-16.png
|
share/gimp/themes/Default/images/stock-selection-stroke-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-subtract-16.png
|
share/gimp/themes/Default/images/stock-selection-subtract-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-to-channel-16.png
|
share/gimp/themes/Default/images/stock-selection-to-channel-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-to-path-16.png
|
share/gimp/themes/Default/images/stock-selection-to-path-16.png
|
||||||
share/gimp/themes/Default/images/stock-shrink-16.png
|
|
||||||
share/gimp/themes/Default/images/stock-swap-colors-12.png
|
share/gimp/themes/Default/images/stock-swap-colors-12.png
|
||||||
share/gimp/themes/Default/images/stock-tool-airbrush-22.png
|
share/gimp/themes/Default/images/stock-tool-airbrush-22.png
|
||||||
share/gimp/themes/Default/images/stock-tool-bezier-select-22.png
|
share/gimp/themes/Default/images/stock-tool-bezier-select-22.png
|
||||||
|
@ -1015,9 +1174,13 @@ share/gimp/themes/Default/images/stock-warning-16.png
|
||||||
share/gimp/themes/Default/images/stock-warning-24.png
|
share/gimp/themes/Default/images/stock-warning-24.png
|
||||||
share/gimp/themes/Default/images/stock-warning-64.png
|
share/gimp/themes/Default/images/stock-warning-64.png
|
||||||
share/gimp/themes/Default/images/stock-wilber-16.png
|
share/gimp/themes/Default/images/stock-wilber-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-wilber-64.png
|
||||||
share/gimp/themes/Default/images/stock-wilber-eek-64.png
|
share/gimp/themes/Default/images/stock-wilber-eek-64.png
|
||||||
share/gimp/tips/gimp-tips.xml
|
share/gimp/tips/gimp-tips.xml
|
||||||
|
%%GNOME:%%share/gnome/application-registry/gimp-1.3.applications
|
||||||
%%GNOME:%%share/gnome/applications/gimp-1.3.desktop
|
%%GNOME:%%share/gnome/applications/gimp-1.3.desktop
|
||||||
|
%%GNOME:%%share/gnome/mime-info/gimp-1.3.keys
|
||||||
|
%%GNOME:%%share/gnome/pixmaps/gnome-gimp.png
|
||||||
share/locale/ca/LC_MESSAGES/gimp14-libgimp.mo
|
share/locale/ca/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
share/locale/ca/LC_MESSAGES/gimp14-script-fu.mo
|
share/locale/ca/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
share/locale/ca/LC_MESSAGES/gimp14-std-plug-ins.mo
|
share/locale/ca/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
|
@ -1126,6 +1289,10 @@ share/locale/uk/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
share/locale/uk/LC_MESSAGES/gimp14-script-fu.mo
|
share/locale/uk/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
share/locale/uk/LC_MESSAGES/gimp14-std-plug-ins.mo
|
share/locale/uk/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
share/locale/uk/LC_MESSAGES/gimp14.mo
|
share/locale/uk/LC_MESSAGES/gimp14.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14.mo
|
||||||
share/locale/zh_CN/LC_MESSAGES/gimp14-libgimp.mo
|
share/locale/zh_CN/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
share/locale/zh_CN/LC_MESSAGES/gimp14-script-fu.mo
|
share/locale/zh_CN/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
share/locale/zh_CN/LC_MESSAGES/gimp14-std-plug-ins.mo
|
share/locale/zh_CN/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
|
@ -1161,6 +1328,7 @@ share/locale/zh_TW/LC_MESSAGES/gimp14.mo
|
||||||
@dirrm share/gimp/fractalexplorer
|
@dirrm share/gimp/fractalexplorer
|
||||||
@dirrm share/gimp/brushes
|
@dirrm share/gimp/brushes
|
||||||
@dirrm share/gimp
|
@dirrm share/gimp
|
||||||
|
%%PYTHON:%%@dirrm libexec/gimp/1.3/python
|
||||||
@dirrm libexec/gimp/1.3/plug-ins
|
@dirrm libexec/gimp/1.3/plug-ins
|
||||||
@dirrm libexec/gimp/1.3/modules
|
@dirrm libexec/gimp/1.3/modules
|
||||||
@dirrm libexec/gimp/1.3/environ
|
@dirrm libexec/gimp/1.3/environ
|
||||||
|
|
|
@ -39,6 +39,8 @@ USE_X_PREFIX= yes
|
||||||
USE_XPM= yes
|
USE_XPM= yes
|
||||||
USE_GMAKE= yes
|
USE_GMAKE= yes
|
||||||
USE_LIBTOOL= yes
|
USE_LIBTOOL= yes
|
||||||
|
USE_GNOMENG= yes
|
||||||
|
USE_GNOME= gnomehack
|
||||||
INSTALLS_SHLIB= yes
|
INSTALLS_SHLIB= yes
|
||||||
USE_REINPLACE= yes
|
USE_REINPLACE= yes
|
||||||
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
|
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
|
||||||
|
@ -46,22 +48,28 @@ PLIST_SUB= SHLIBVER="${SHLIBVER}"
|
||||||
CONFIGURE_ARGS= --disable-perl \
|
CONFIGURE_ARGS= --disable-perl \
|
||||||
--with-html-dir=${PREFIX}/share/doc/gimp \
|
--with-html-dir=${PREFIX}/share/doc/gimp \
|
||||||
--disable-gtk-doc
|
--disable-gtk-doc
|
||||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include -I${MPEG_WRKSRC}" \
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||||
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
||||||
|
|
||||||
GIMP_DISTFILE= ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
|
GIMP_DISTFILE= ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
|
||||||
MPEG_DISTFILE= ${DISTDIR}/mpeg_lib-1.3.1.tar.gz
|
|
||||||
MPEG_WRKSRC= ${WRKDIR}/mpeg_lib-1.3.1
|
|
||||||
MPEG_CONFIGURE_ENV= OPTIMIZE="${CFLAGS}"
|
|
||||||
MPEG_CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
||||||
--target=${ARCH}-unknown-freebsd${OSREL}
|
|
||||||
|
|
||||||
MAN1= gimp-1.3.1 gimptool-1.3.1 gimp-remote-1.3.1
|
MAN1= gimp-1.3.1 gimptool-1.3.1 gimp-remote-1.3.1
|
||||||
MAN5= gimprc-1.3.5
|
MAN5= gimprc-1.3.5
|
||||||
|
|
||||||
|
.if defined(WITH_PYTHON)
|
||||||
|
USE_PYTHON= yes
|
||||||
|
BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/_gtkmodule.so:${PORTSDIR}/x11-toolkits/py-gtk2
|
||||||
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/_gtkmodule.so:${PORTSDIR}/x11-toolkits/py-gtk2
|
||||||
|
CONFIGURE_ARGS+= --enable-python
|
||||||
|
PLIST_SUB+= PYTHON:=""
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+= --disable-python
|
||||||
|
PLIST_SUB+= PYTHON:="@comment "
|
||||||
|
.endif
|
||||||
|
|
||||||
.if exists(${X11BASE}/libdata/pkgconfig/libpanelapplet-2.0.pc)
|
.if exists(${X11BASE}/libdata/pkgconfig/libpanelapplet-2.0.pc)
|
||||||
RUN_DEPENDS+= gnome-panel:${PORTSDIR}/x11/gnomepanel
|
RUN_DEPENDS+= gnome-panel:${PORTSDIR}/x11/gnomepanel
|
||||||
CONFIGURE_ARGS+= --with-gnome-desktop=${X11BASE}/share/gnome/applications
|
CONFIGURE_ARGS+= --with-gnome-datadir=${X11BASE}/share/gnome
|
||||||
PLIST_SUB+= GNOME:=""
|
PLIST_SUB+= GNOME:=""
|
||||||
.else
|
.else
|
||||||
PLIST_SUB+= GNOME:="@comment "
|
PLIST_SUB+= GNOME:="@comment "
|
||||||
|
@ -71,28 +79,11 @@ PLIST_SUB+= GNOME:="@comment "
|
||||||
#LIB_DEPENDS+= gtkhtml-2.0:${PORTSDIR}/www/libgtkhtml
|
#LIB_DEPENDS+= gtkhtml-2.0:${PORTSDIR}/www/libgtkhtml
|
||||||
#.endif
|
#.endif
|
||||||
|
|
||||||
do-extract:
|
pre-everything::
|
||||||
@${MKDIR} ${WRKDIR}
|
@${ECHO_MSG} ""
|
||||||
@(cd ${WRKDIR} && ${BZIP2_CMD} -dc ${GIMP_DISTFILE} | ${TAR} -xf -)
|
@${ECHO_MSG} "gimp-devel has the following tunable option(s):"
|
||||||
@(cd ${WRKDIR} && ${GZIP_CMD} -dc ${MPEG_DISTFILE} | ${TAR} -xf -)
|
@${ECHO_MSG} ""
|
||||||
@(${FIND} ${MPEG_WRKSRC} -type f | ${XARGS} ${CHMOD} u+w)
|
@${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support"
|
||||||
|
@${ECHO_MSG} ""
|
||||||
pre-configure:
|
|
||||||
@(cd ${MPEG_WRKSRC} && \
|
|
||||||
${SETENV} CC="${CC}" CXX="${CXX}" \
|
|
||||||
CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
|
|
||||||
INSTALL="/usr/bin/install -c -o ${BINOWN} -g ${BINGRP}" \
|
|
||||||
INSTALL_DATA="${INSTALL_DATA}" \
|
|
||||||
INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
|
|
||||||
INSTALL_SCRIPT="${INSTALL_SCRIPT}" \
|
|
||||||
${MPEG_CONFIGURE_ENV} ./configure ${MPEG_CONFIGURE_ARGS})
|
|
||||||
@(cd ${MPEG_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
|
|
||||||
|
|
||||||
post-patch:
|
|
||||||
@${REINPLACE_CMD} -e 's|-lmpeg|${MPEG_WRKSRC}/libmpeg.a|g' \
|
|
||||||
${WRKSRC}/configure
|
|
||||||
@(cd ${MPEG_WRKSRC} ; \
|
|
||||||
${GREP} -r -l "<malloc.h>" * | \
|
|
||||||
${XARGS} ${REINPLACE_CMD} -e "s/<malloc.h>/<stdlib.h>/")
|
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
MD5 (gimp-1.3.11.tar.bz2) = df2e753e1ad951b52f790b8392091a46
|
MD5 (gimp-1.3.12.tar.bz2) = 1f3eda10fc8e6379e5578f21a925e2be
|
||||||
MD5 (mpeg_lib-1.3.1.tar.gz) = 9d803be0073f42acf87d5fbb339a183b
|
MD5 (mpeg_lib-1.3.1.tar.gz) = 9d803be0073f42acf87d5fbb339a183b
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
--- ../mpeg_lib-1.3.1/Makefile.in.orig Thu Nov 26 11:03:29 1998
|
|
||||||
+++ ../mpeg_lib-1.3.1/Makefile.in Tue Jul 9 22:28:11 2002
|
|
||||||
@@ -19,7 +19,7 @@
|
|
||||||
exec_prefix = @exec_prefix@
|
|
||||||
INSTALL_INCLUDE = @includedir@
|
|
||||||
INSTALL_LIBRARY = @libdir@
|
|
||||||
-INSTALL = @INSTALL@
|
|
||||||
+INSTALL_DATA = @INSTALL_DATA@
|
|
||||||
|
|
||||||
# Other miscellaneous programs
|
|
||||||
AR = @AR@
|
|
||||||
@@ -67,10 +67,9 @@
|
|
||||||
$(CC) -shared -o $(SHLIB) $(LIBOBJ)
|
|
||||||
|
|
||||||
install: $(LIBRARY)
|
|
||||||
- $(INSTALL) -d $(INSTALL_INCLUDE) $(INSTALL_LIBRARY)
|
|
||||||
- $(INSTALL) -m 0644 $(HEADER) $(INSTALL_INCLUDE)/$(HEADER)
|
|
||||||
- $(INSTALL) -m 0644 $(LIBRARY) $(INSTALL_LIBRARY)/$(LIBRARY)
|
|
||||||
- @if test -f $(SHLIB) ; then echo "warning: $(SHLIB) *not* installed (installing shared libraries is too system-specific)" ; fi
|
|
||||||
+ $(MKDIR) $(INSTALL_INCLUDE) $(INSTALL_LIBRARY)
|
|
||||||
+ $(INSTALL_DATA) $(HEADER) $(INSTALL_INCLUDE)/$(HEADER)
|
|
||||||
+ $(INSTALL_DATA) $(LIBRARY) $(INSTALL_LIBRARY)/$(LIBRARY)
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f $(LIBRARY) $(EXTRAS) $(LIBOBJ) core
|
|
|
@ -1,23 +0,0 @@
|
||||||
--- ../mpeg_lib-1.3.1/video.c.orig Sat Jul 24 13:00:51 1999
|
|
||||||
+++ ../mpeg_lib-1.3.1/video.c Tue Aug 31 23:11:56 1999
|
|
||||||
@@ -49,6 +49,10 @@
|
|
||||||
#include "proto.h"
|
|
||||||
#include "my_dmalloc.h"
|
|
||||||
|
|
||||||
+#ifdef _HAVE_PARAM_H
|
|
||||||
+#include <sys/param.h>
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
/* Declarations of functions. */
|
|
||||||
static void ReconIMBlock(VidStream *,int);
|
|
||||||
static void ReconPMBlock(VidStream *,int,int,int,int);
|
|
||||||
@@ -445,7 +449,9 @@
|
|
||||||
static int num_calls = 0;
|
|
||||||
unsigned int data;
|
|
||||||
int i, status;
|
|
||||||
+#if BSD < 199103
|
|
||||||
long int ftell (FILE *stream);
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
/* If vid_stream is null, create new VidStream structure. */
|
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
|
|
||||||
$FreeBSD$
|
|
||||||
|
|
||||||
--- Makefile.in 2002/05/17 18:44:19 1.1
|
|
||||||
+++ Makefile.in 2002/05/17 18:44:46
|
|
||||||
@@ -185,7 +185,7 @@
|
|
||||||
|
|
||||||
bin_SCRIPTS = gimptool-1.3 @GIMPINSTALL@
|
|
||||||
|
|
||||||
-pkgconfigdir = $(libdir)/pkgconfig
|
|
||||||
+pkgconfigdir = $(prefix)/libdata/pkgconfig
|
|
||||||
pkgconfig_DATA = gimp-1.3.pc gimpui-1.3.pc
|
|
||||||
|
|
||||||
EXTRA_SCRIPTS = gimpinstall-1.3
|
|
10
graphics/gimp-devel/files/patch-app_plug-in_plug-in-shm.c
Normal file
10
graphics/gimp-devel/files/patch-app_plug-in_plug-in-shm.c
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
--- app/plug-in/plug-in-shm.c.orig Wed Feb 19 01:40:37 2003
|
||||||
|
+++ app/plug-in/plug-in-shm.c Wed Feb 19 01:40:49 2003
|
||||||
|
@@ -17,6 +17,7 @@
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
+#include <sys/types.h>
|
||||||
|
|
||||||
|
#ifdef HAVE_IPC_H
|
||||||
|
#include <sys/ipc.h>
|
|
@ -1 +0,0 @@
|
||||||
A GNU Image Manipulation Program (unstable development version)
|
|
|
@ -71,6 +71,7 @@ include/gimp-1.3/libgimpbase/gimpparasite.h
|
||||||
include/gimp-1.3/libgimpbase/gimpparasiteio.h
|
include/gimp-1.3/libgimpbase/gimpparasiteio.h
|
||||||
include/gimp-1.3/libgimpbase/gimpsignal.h
|
include/gimp-1.3/libgimpbase/gimpsignal.h
|
||||||
include/gimp-1.3/libgimpbase/gimpunit.h
|
include/gimp-1.3/libgimpbase/gimpunit.h
|
||||||
|
include/gimp-1.3/libgimpbase/gimputils.h
|
||||||
include/gimp-1.3/libgimpbase/gimpversion.h
|
include/gimp-1.3/libgimpbase/gimpversion.h
|
||||||
include/gimp-1.3/libgimpcolor/gimpadaptivesupersample.h
|
include/gimp-1.3/libgimpcolor/gimpadaptivesupersample.h
|
||||||
include/gimp-1.3/libgimpcolor/gimpbilinear.h
|
include/gimp-1.3/libgimpcolor/gimpbilinear.h
|
||||||
|
@ -107,6 +108,7 @@ include/gimp-1.3/libgimpwidgets/gimpcolorselector.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimpdialog.h
|
include/gimp-1.3/libgimpwidgets/gimpdialog.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimpfileselection.h
|
include/gimp-1.3/libgimpwidgets/gimpfileselection.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimphelpui.h
|
include/gimp-1.3/libgimpwidgets/gimphelpui.h
|
||||||
|
include/gimp-1.3/libgimpwidgets/gimpmemsizeentry.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimpoffsetarea.h
|
include/gimp-1.3/libgimpwidgets/gimpoffsetarea.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimppatheditor.h
|
include/gimp-1.3/libgimpwidgets/gimppatheditor.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimppickbutton.h
|
include/gimp-1.3/libgimpwidgets/gimppickbutton.h
|
||||||
|
@ -150,6 +152,7 @@ lib/libgimpwidgets-1.3.so.%%SHLIBVER%%
|
||||||
libdata/pkgconfig/gimp-1.3.pc
|
libdata/pkgconfig/gimp-1.3.pc
|
||||||
libdata/pkgconfig/gimpui-1.3.pc
|
libdata/pkgconfig/gimpui-1.3.pc
|
||||||
libexec/gimp/1.3/environ/default.env
|
libexec/gimp/1.3/environ/default.env
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/environ/pygimp.env
|
||||||
libexec/gimp/1.3/modules/libcdisplay_colorblind.so
|
libexec/gimp/1.3/modules/libcdisplay_colorblind.so
|
||||||
libexec/gimp/1.3/modules/libcdisplay_gamma.so
|
libexec/gimp/1.3/modules/libcdisplay_gamma.so
|
||||||
libexec/gimp/1.3/modules/libcdisplay_highcontrast.so
|
libexec/gimp/1.3/modules/libcdisplay_highcontrast.so
|
||||||
|
@ -177,7 +180,9 @@ libexec/gimp/1.3/plug-ins/bumpmap
|
||||||
libexec/gimp/1.3/plug-ins/bz2
|
libexec/gimp/1.3/plug-ins/bz2
|
||||||
libexec/gimp/1.3/plug-ins/c_astretch
|
libexec/gimp/1.3/plug-ins/c_astretch
|
||||||
libexec/gimp/1.3/plug-ins/checkerboard
|
libexec/gimp/1.3/plug-ins/checkerboard
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/clothify.py
|
||||||
libexec/gimp/1.3/plug-ins/color_enhance
|
libexec/gimp/1.3/plug-ins/color_enhance
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/colorhtml.py
|
||||||
libexec/gimp/1.3/plug-ins/colorify
|
libexec/gimp/1.3/plug-ins/colorify
|
||||||
libexec/gimp/1.3/plug-ins/colortoalpha
|
libexec/gimp/1.3/plug-ins/colortoalpha
|
||||||
libexec/gimp/1.3/plug-ins/compose
|
libexec/gimp/1.3/plug-ins/compose
|
||||||
|
@ -202,6 +207,7 @@ libexec/gimp/1.3/plug-ins/film
|
||||||
libexec/gimp/1.3/plug-ins/fits
|
libexec/gimp/1.3/plug-ins/fits
|
||||||
libexec/gimp/1.3/plug-ins/flame
|
libexec/gimp/1.3/plug-ins/flame
|
||||||
libexec/gimp/1.3/plug-ins/flarefx
|
libexec/gimp/1.3/plug-ins/flarefx
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/foggify.py
|
||||||
libexec/gimp/1.3/plug-ins/fp
|
libexec/gimp/1.3/plug-ins/fp
|
||||||
libexec/gimp/1.3/plug-ins/fractaltrace
|
libexec/gimp/1.3/plug-ins/fractaltrace
|
||||||
libexec/gimp/1.3/plug-ins/gauss_iir
|
libexec/gimp/1.3/plug-ins/gauss_iir
|
||||||
|
@ -216,11 +222,13 @@ libexec/gimp/1.3/plug-ins/gicon
|
||||||
libexec/gimp/1.3/plug-ins/gif
|
libexec/gimp/1.3/plug-ins/gif
|
||||||
libexec/gimp/1.3/plug-ins/gifload
|
libexec/gimp/1.3/plug-ins/gifload
|
||||||
libexec/gimp/1.3/plug-ins/gih
|
libexec/gimp/1.3/plug-ins/gih
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/gimpcons.py
|
||||||
libexec/gimp/1.3/plug-ins/gimpressionist
|
libexec/gimp/1.3/plug-ins/gimpressionist
|
||||||
libexec/gimp/1.3/plug-ins/glasstile
|
libexec/gimp/1.3/plug-ins/glasstile
|
||||||
libexec/gimp/1.3/plug-ins/gqbist
|
libexec/gimp/1.3/plug-ins/gqbist
|
||||||
libexec/gimp/1.3/plug-ins/gradmap
|
libexec/gimp/1.3/plug-ins/gradmap
|
||||||
libexec/gimp/1.3/plug-ins/grid
|
libexec/gimp/1.3/plug-ins/grid
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/gtkcons.py
|
||||||
libexec/gimp/1.3/plug-ins/gtm
|
libexec/gimp/1.3/plug-ins/gtm
|
||||||
libexec/gimp/1.3/plug-ins/guillotine
|
libexec/gimp/1.3/plug-ins/guillotine
|
||||||
libexec/gimp/1.3/plug-ins/gz
|
libexec/gimp/1.3/plug-ins/gz
|
||||||
|
@ -241,7 +249,6 @@ libexec/gimp/1.3/plug-ins/max_rgb
|
||||||
libexec/gimp/1.3/plug-ins/maze
|
libexec/gimp/1.3/plug-ins/maze
|
||||||
libexec/gimp/1.3/plug-ins/mblur
|
libexec/gimp/1.3/plug-ins/mblur
|
||||||
libexec/gimp/1.3/plug-ins/mosaic
|
libexec/gimp/1.3/plug-ins/mosaic
|
||||||
libexec/gimp/1.3/plug-ins/mpeg
|
|
||||||
libexec/gimp/1.3/plug-ins/newsprint
|
libexec/gimp/1.3/plug-ins/newsprint
|
||||||
libexec/gimp/1.3/plug-ins/nlfilt
|
libexec/gimp/1.3/plug-ins/nlfilt
|
||||||
libexec/gimp/1.3/plug-ins/noisify
|
libexec/gimp/1.3/plug-ins/noisify
|
||||||
|
@ -252,6 +259,7 @@ libexec/gimp/1.3/plug-ins/pagecurl
|
||||||
libexec/gimp/1.3/plug-ins/papertile
|
libexec/gimp/1.3/plug-ins/papertile
|
||||||
libexec/gimp/1.3/plug-ins/pat
|
libexec/gimp/1.3/plug-ins/pat
|
||||||
libexec/gimp/1.3/plug-ins/pcx
|
libexec/gimp/1.3/plug-ins/pcx
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/pdbbrowse.py
|
||||||
libexec/gimp/1.3/plug-ins/pix
|
libexec/gimp/1.3/plug-ins/pix
|
||||||
libexec/gimp/1.3/plug-ins/pixelize
|
libexec/gimp/1.3/plug-ins/pixelize
|
||||||
libexec/gimp/1.3/plug-ins/plasma
|
libexec/gimp/1.3/plug-ins/plasma
|
||||||
|
@ -262,6 +270,7 @@ libexec/gimp/1.3/plug-ins/polar
|
||||||
libexec/gimp/1.3/plug-ins/print
|
libexec/gimp/1.3/plug-ins/print
|
||||||
libexec/gimp/1.3/plug-ins/ps
|
libexec/gimp/1.3/plug-ins/ps
|
||||||
libexec/gimp/1.3/plug-ins/psd
|
libexec/gimp/1.3/plug-ins/psd
|
||||||
|
libexec/gimp/1.3/plug-ins/psd_save
|
||||||
libexec/gimp/1.3/plug-ins/psp
|
libexec/gimp/1.3/plug-ins/psp
|
||||||
libexec/gimp/1.3/plug-ins/randomize
|
libexec/gimp/1.3/plug-ins/randomize
|
||||||
libexec/gimp/1.3/plug-ins/rcm
|
libexec/gimp/1.3/plug-ins/rcm
|
||||||
|
@ -275,6 +284,7 @@ libexec/gimp/1.3/plug-ins/sel2path
|
||||||
libexec/gimp/1.3/plug-ins/sel_gauss
|
libexec/gimp/1.3/plug-ins/sel_gauss
|
||||||
libexec/gimp/1.3/plug-ins/semiflatten
|
libexec/gimp/1.3/plug-ins/semiflatten
|
||||||
libexec/gimp/1.3/plug-ins/sgi
|
libexec/gimp/1.3/plug-ins/sgi
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/shadow_bevel.py
|
||||||
libexec/gimp/1.3/plug-ins/sharpen
|
libexec/gimp/1.3/plug-ins/sharpen
|
||||||
libexec/gimp/1.3/plug-ins/shift
|
libexec/gimp/1.3/plug-ins/shift
|
||||||
libexec/gimp/1.3/plug-ins/sinus
|
libexec/gimp/1.3/plug-ins/sinus
|
||||||
|
@ -282,6 +292,8 @@ libexec/gimp/1.3/plug-ins/smooth_palette
|
||||||
libexec/gimp/1.3/plug-ins/snoise
|
libexec/gimp/1.3/plug-ins/snoise
|
||||||
libexec/gimp/1.3/plug-ins/sobel
|
libexec/gimp/1.3/plug-ins/sobel
|
||||||
libexec/gimp/1.3/plug-ins/sparkle
|
libexec/gimp/1.3/plug-ins/sparkle
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/sphere.py
|
||||||
|
libexec/gimp/1.3/plug-ins/spheredesigner
|
||||||
libexec/gimp/1.3/plug-ins/spread
|
libexec/gimp/1.3/plug-ins/spread
|
||||||
libexec/gimp/1.3/plug-ins/struc
|
libexec/gimp/1.3/plug-ins/struc
|
||||||
libexec/gimp/1.3/plug-ins/sunras
|
libexec/gimp/1.3/plug-ins/sunras
|
||||||
|
@ -302,6 +314,7 @@ libexec/gimp/1.3/plug-ins/warp
|
||||||
libexec/gimp/1.3/plug-ins/waves
|
libexec/gimp/1.3/plug-ins/waves
|
||||||
libexec/gimp/1.3/plug-ins/webbrowser
|
libexec/gimp/1.3/plug-ins/webbrowser
|
||||||
libexec/gimp/1.3/plug-ins/whirlpinch
|
libexec/gimp/1.3/plug-ins/whirlpinch
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/whirlpinch.py
|
||||||
libexec/gimp/1.3/plug-ins/wind
|
libexec/gimp/1.3/plug-ins/wind
|
||||||
libexec/gimp/1.3/plug-ins/wmf
|
libexec/gimp/1.3/plug-ins/wmf
|
||||||
libexec/gimp/1.3/plug-ins/xbm
|
libexec/gimp/1.3/plug-ins/xbm
|
||||||
|
@ -309,6 +322,22 @@ libexec/gimp/1.3/plug-ins/xjt
|
||||||
libexec/gimp/1.3/plug-ins/xpm
|
libexec/gimp/1.3/plug-ins/xpm
|
||||||
libexec/gimp/1.3/plug-ins/xwd
|
libexec/gimp/1.3/plug-ins/xwd
|
||||||
libexec/gimp/1.3/plug-ins/zealouscrop
|
libexec/gimp/1.3/plug-ins/zealouscrop
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpenums.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpenums.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpenums.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpfu.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpfu.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpfu.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpmodule.so
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpplugin.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpplugin.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpplugin.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpshelf.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpshelf.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpshelf.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpui.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpui.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpui.pyo
|
||||||
share/aclocal/gimp-1.4.m4
|
share/aclocal/gimp-1.4.m4
|
||||||
share/doc/gimp/libgimp/gimpdefinitions.html
|
share/doc/gimp/libgimp/gimpdefinitions.html
|
||||||
share/doc/gimp/libgimp/home.png
|
share/doc/gimp/libgimp/home.png
|
||||||
|
@ -335,7 +364,6 @@ share/doc/gimp/libgimp/libgimp-gimpimage.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimplayer.html
|
share/doc/gimp/libgimp/libgimp-gimplayer.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpmenu.html
|
share/doc/gimp/libgimp/libgimp-gimpmenu.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpmessage.html
|
share/doc/gimp/libgimp/libgimp-gimpmessage.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpmisc.html
|
|
||||||
share/doc/gimp/libgimp/libgimp-gimppalette.html
|
share/doc/gimp/libgimp/libgimp-gimppalette.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimppatterns.html
|
share/doc/gimp/libgimp/libgimp-gimppatterns.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimppixelrgn.html
|
share/doc/gimp/libgimp/libgimp-gimppixelrgn.html
|
||||||
|
@ -347,12 +375,15 @@ share/doc/gimp/libgimp/libgimp-gimptile.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimptools.html
|
share/doc/gimp/libgimp/libgimp-gimptools.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpui.html
|
share/doc/gimp/libgimp/libgimp-gimpui.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpundo.html
|
share/doc/gimp/libgimp/libgimp-gimpundo.html
|
||||||
|
share/doc/gimp/libgimp/libgimp.devhelp
|
||||||
share/doc/gimp/libgimp/libgimp.html
|
share/doc/gimp/libgimp/libgimp.html
|
||||||
share/doc/gimp/libgimp/libgimpui.html
|
share/doc/gimp/libgimp/libgimpui.html
|
||||||
share/doc/gimp/libgimp/right.png
|
share/doc/gimp/libgimp/right.png
|
||||||
share/doc/gimp/libgimp/up.png
|
share/doc/gimp/libgimp/up.png
|
||||||
|
share/doc/gimp/libgimpbase/home.png
|
||||||
share/doc/gimp/libgimpbase/index.html
|
share/doc/gimp/libgimpbase/index.html
|
||||||
share/doc/gimp/libgimpbase/index.sgml
|
share/doc/gimp/libgimpbase/index.sgml
|
||||||
|
share/doc/gimp/libgimpbase/left.png
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpenv.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpenv.html
|
||||||
|
@ -362,63 +393,180 @@ share/doc/gimp/libgimpbase/libgimpbase-gimpparasiteio.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpprotocol.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpprotocol.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpsignal.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpsignal.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html
|
||||||
|
share/doc/gimp/libgimpbase/libgimpbase-gimputils.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpwire.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpwire.html
|
||||||
|
share/doc/gimp/libgimpbase/libgimpbase.devhelp
|
||||||
share/doc/gimp/libgimpbase/libgimpbase.html
|
share/doc/gimp/libgimpbase/libgimpbase.html
|
||||||
|
share/doc/gimp/libgimpbase/right.png
|
||||||
|
share/doc/gimp/libgimpbase/up.png
|
||||||
|
share/doc/gimp/libgimpcolor/home.png
|
||||||
share/doc/gimp/libgimpcolor/index.html
|
share/doc/gimp/libgimpcolor/index.html
|
||||||
share/doc/gimp/libgimpcolor/index.sgml
|
share/doc/gimp/libgimpcolor/index.sgml
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimpadaptivesupersample.html
|
share/doc/gimp/libgimpcolor/left.png
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimpbilinear.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimpcolorspace.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpBilinear.html
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimphsv.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorSpace.html
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimprgb.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpHSV.html
|
||||||
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpRGB.html
|
||||||
|
share/doc/gimp/libgimpcolor/libgimpcolor.devhelp
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor.html
|
share/doc/gimp/libgimpcolor/libgimpcolor.html
|
||||||
|
share/doc/gimp/libgimpcolor/right.png
|
||||||
|
share/doc/gimp/libgimpcolor/up.png
|
||||||
|
share/doc/gimp/libgimpmath/home.png
|
||||||
share/doc/gimp/libgimpmath/index.html
|
share/doc/gimp/libgimpmath/index.html
|
||||||
share/doc/gimp/libgimpmath/index.sgml
|
share/doc/gimp/libgimpmath/index.sgml
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpmath.html
|
share/doc/gimp/libgimpmath/left.png
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpmatrix.html
|
share/doc/gimp/libgimpmath/libgimpmath-GimpMD5.html
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpmd5.html
|
share/doc/gimp/libgimpmath/libgimpmath-GimpMath.html
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpvector.html
|
share/doc/gimp/libgimpmath/libgimpmath-GimpMatrix.html
|
||||||
|
share/doc/gimp/libgimpmath/libgimpmath-GimpVector.html
|
||||||
|
share/doc/gimp/libgimpmath/libgimpmath.devhelp
|
||||||
share/doc/gimp/libgimpmath/libgimpmath.html
|
share/doc/gimp/libgimpmath/libgimpmath.html
|
||||||
share/doc/gimp/libgimpmodule/gimpmodule.html
|
share/doc/gimp/libgimpmath/right.png
|
||||||
share/doc/gimp/libgimpmodule/gimpmoduledb.html
|
share/doc/gimp/libgimpmath/up.png
|
||||||
|
share/doc/gimp/libgimpmodule/GimpModule.html
|
||||||
|
share/doc/gimp/libgimpmodule/GimpModuleDB.html
|
||||||
share/doc/gimp/libgimpmodule/home.png
|
share/doc/gimp/libgimpmodule/home.png
|
||||||
share/doc/gimp/libgimpmodule/index.html
|
share/doc/gimp/libgimpmodule/index.html
|
||||||
share/doc/gimp/libgimpmodule/index.sgml
|
share/doc/gimp/libgimpmodule/index.sgml
|
||||||
share/doc/gimp/libgimpmodule/left.png
|
share/doc/gimp/libgimpmodule/left.png
|
||||||
|
share/doc/gimp/libgimpmodule/libgimpmodule.devhelp
|
||||||
share/doc/gimp/libgimpmodule/libgimpmodule.html
|
share/doc/gimp/libgimpmodule/libgimpmodule.html
|
||||||
share/doc/gimp/libgimpmodule/right.png
|
share/doc/gimp/libgimpmodule/right.png
|
||||||
share/doc/gimp/libgimpmodule/up.png
|
share/doc/gimp/libgimpmodule/up.png
|
||||||
share/doc/gimp/libgimpwidgets/gimpbutton.html
|
share/doc/gimp/libgimpwidgets/GimpButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpchainbutton.html
|
share/doc/gimp/libgimpwidgets/GimpChainButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorbutton.html
|
share/doc/gimp/libgimpwidgets/GimpColorButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolordisplay.html
|
share/doc/gimp/libgimpwidgets/GimpColorDisplay.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolornotebook.html
|
share/doc/gimp/libgimpwidgets/GimpColorNotebook.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorscale.html
|
share/doc/gimp/libgimpwidgets/GimpColorScale.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorscales.html
|
share/doc/gimp/libgimpwidgets/GimpColorScales.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorselect.html
|
share/doc/gimp/libgimpwidgets/GimpColorSelect.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorselector.html
|
share/doc/gimp/libgimpwidgets/GimpColorSelector.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpdialog.html
|
share/doc/gimp/libgimpwidgets/GimpDialog.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpfileselection.html
|
share/doc/gimp/libgimpwidgets/GimpFileSelection.html
|
||||||
share/doc/gimp/libgimpwidgets/gimppatheditor.html
|
share/doc/gimp/libgimpwidgets/GimpMemsizeEntry.html
|
||||||
share/doc/gimp/libgimpwidgets/gimppickbutton.html
|
share/doc/gimp/libgimpwidgets/GimpPathEditor.html
|
||||||
share/doc/gimp/libgimpwidgets/gimppixmap.html
|
share/doc/gimp/libgimpwidgets/GimpPickButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpsizeentry.html
|
share/doc/gimp/libgimpwidgets/GimpPixmap.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpunitmenu.html
|
share/doc/gimp/libgimpwidgets/GimpSizeEntry.html
|
||||||
|
share/doc/gimp/libgimpwidgets/GimpUnitMenu.html
|
||||||
share/doc/gimp/libgimpwidgets/home.png
|
share/doc/gimp/libgimpwidgets/home.png
|
||||||
share/doc/gimp/libgimpwidgets/index.html
|
share/doc/gimp/libgimpwidgets/index.html
|
||||||
share/doc/gimp/libgimpwidgets/index.sgml
|
share/doc/gimp/libgimpwidgets/index.sgml
|
||||||
share/doc/gimp/libgimpwidgets/left.png
|
share/doc/gimp/libgimpwidgets/left.png
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpColorArea.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpHelpUI.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpQueryBox.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpStock.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpWidgets.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-colordisplay.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-colordisplay.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-colorselector.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-colorselector.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpcolorarea.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimphelpui.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpquerybox.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpstock.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpwidgets.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-utils.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-utils.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-widgets.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-widgets.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets.devhelp
|
||||||
share/doc/gimp/libgimpwidgets/right.png
|
share/doc/gimp/libgimpwidgets/right.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-anchor-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-char-picker-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-picker-black-18.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-picker-gray-18.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-picker-white-18.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-triangle-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-convert-grayscale-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-convert-indexed-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-convert-rgb-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-default-colors-12.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-duplicate-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-edit-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-eye-20.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-east-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-north-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-north-east-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-north-west-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-south-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-south-east-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-south-west-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-west-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-hchain-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-hchain-broken-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-info-64.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-invert-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-layer-to-imagesize-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-letter-spacing-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-line-spacing-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-linked-20.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-merge-down-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-navigation-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-paste-as-new-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-paste-into-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-path-stroke-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-plugin-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-qmask-off-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-qmask-on-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-reset-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-reshow-filter-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-resize-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-rotate-180-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-rotate-270-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-rotate-90-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-scale-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-add-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-all-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-grow-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-intersect-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-none-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-replace-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-shrink-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-stroke-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-subtract-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-to-channel-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-to-path-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-swap-colors-12.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-airbrush-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-bezier-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-blend-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-blur-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-brightness-contrast-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-bucket-fill-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-by-color-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-clone-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-color-balance-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-color-picker-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-crop-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-curves-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-dodge-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-ellipse-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-eraser-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-flip-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-free-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-fuzzy-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-histogram-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-hue-saturation-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-ink-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-iscissors-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-levels-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-measure-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-move-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-options-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-paintbrush-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-path-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-pencil-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-perspective-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-posterize-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-rect-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-rotate-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-scale-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-shear-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-smudge-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-text-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-threshold-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-zoom-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-vchain-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-vchain-broken-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-warning-64.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-wilber-64.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-wilber-eek-64.png
|
||||||
share/doc/gimp/libgimpwidgets/up.png
|
share/doc/gimp/libgimpwidgets/up.png
|
||||||
share/gimp/brushes/10x10square.gbr
|
share/gimp/brushes/10x10square.gbr
|
||||||
share/gimp/brushes/10x10squareBlur.gbr
|
share/gimp/brushes/10x10squareBlur.gbr
|
||||||
|
@ -695,7 +843,9 @@ share/gimp/images/gimp_splash.png
|
||||||
share/gimp/images/wilber-icon.png
|
share/gimp/images/wilber-icon.png
|
||||||
share/gimp/images/wilber-tips.png
|
share/gimp/images/wilber-tips.png
|
||||||
share/gimp/images/wilber-wizard.png
|
share/gimp/images/wilber-wizard.png
|
||||||
|
share/gimp/misc/gimp.applications
|
||||||
share/gimp/misc/gimp.desktop
|
share/gimp/misc/gimp.desktop
|
||||||
|
share/gimp/misc/gimp.keys
|
||||||
share/gimp/palettes/Bears.gpl
|
share/gimp/palettes/Bears.gpl
|
||||||
share/gimp/palettes/Bgold.gpl
|
share/gimp/palettes/Bgold.gpl
|
||||||
share/gimp/palettes/Blues.gpl
|
share/gimp/palettes/Blues.gpl
|
||||||
|
@ -829,7 +979,7 @@ share/gimp/scripts/comic-logo.scm
|
||||||
share/gimp/scripts/coolmetal-logo.scm
|
share/gimp/scripts/coolmetal-logo.scm
|
||||||
share/gimp/scripts/copy-visible.scm
|
share/gimp/scripts/copy-visible.scm
|
||||||
share/gimp/scripts/crystal-logo.scm
|
share/gimp/scripts/crystal-logo.scm
|
||||||
share/gimp/scripts/distress_selection.scm
|
share/gimp/scripts/distress-selection.scm
|
||||||
share/gimp/scripts/drop-shadow.scm
|
share/gimp/scripts/drop-shadow.scm
|
||||||
share/gimp/scripts/erase-rows.scm
|
share/gimp/scripts/erase-rows.scm
|
||||||
share/gimp/scripts/fade-outline.scm
|
share/gimp/scripts/fade-outline.scm
|
||||||
|
@ -853,21 +1003,22 @@ share/gimp/scripts/line-nova.scm
|
||||||
share/gimp/scripts/mkbrush.scm
|
share/gimp/scripts/mkbrush.scm
|
||||||
share/gimp/scripts/neon-logo.scm
|
share/gimp/scripts/neon-logo.scm
|
||||||
share/gimp/scripts/news-text.scm
|
share/gimp/scripts/news-text.scm
|
||||||
share/gimp/scripts/old_photo.scm
|
share/gimp/scripts/old-photo.scm
|
||||||
share/gimp/scripts/perspective-shadow.scm
|
share/gimp/scripts/perspective-shadow.scm
|
||||||
share/gimp/scripts/predator.scm
|
share/gimp/scripts/predator.scm
|
||||||
share/gimp/scripts/pupi-button.scm
|
share/gimp/scripts/pupi-button.scm
|
||||||
share/gimp/scripts/rendermap.scm
|
share/gimp/scripts/rendermap.scm
|
||||||
share/gimp/scripts/ripply-anim.scm
|
share/gimp/scripts/ripply-anim.scm
|
||||||
share/gimp/scripts/round-corners.scm
|
share/gimp/scripts/round-corners.scm
|
||||||
share/gimp/scripts/select_to_brush.scm
|
share/gimp/scripts/select-to-brush.scm
|
||||||
share/gimp/scripts/select_to_image.scm
|
share/gimp/scripts/select-to-image.scm
|
||||||
|
share/gimp/scripts/select-to-pattern.scm
|
||||||
share/gimp/scripts/selection-round.scm
|
share/gimp/scripts/selection-round.scm
|
||||||
share/gimp/scripts/slide.scm
|
share/gimp/scripts/slide.scm
|
||||||
share/gimp/scripts/sota-chrome-logo.scm
|
share/gimp/scripts/sota-chrome-logo.scm
|
||||||
share/gimp/scripts/speed-text.scm
|
share/gimp/scripts/speed-text.scm
|
||||||
share/gimp/scripts/sphere.scm
|
share/gimp/scripts/sphere.scm
|
||||||
share/gimp/scripts/spinning_globe.scm
|
share/gimp/scripts/spinning-globe.scm
|
||||||
share/gimp/scripts/starburst-logo.scm
|
share/gimp/scripts/starburst-logo.scm
|
||||||
share/gimp/scripts/starscape-logo.scm
|
share/gimp/scripts/starscape-logo.scm
|
||||||
share/gimp/scripts/swirltile.scm
|
share/gimp/scripts/swirltile.scm
|
||||||
|
@ -912,7 +1063,6 @@ share/gimp/themes/Default/images/preferences/interface.png
|
||||||
share/gimp/themes/Default/images/preferences/monitor.png
|
share/gimp/themes/Default/images/preferences/monitor.png
|
||||||
share/gimp/themes/Default/images/preferences/new-image.png
|
share/gimp/themes/Default/images/preferences/new-image.png
|
||||||
share/gimp/themes/Default/images/preferences/tool-options.png
|
share/gimp/themes/Default/images/preferences/tool-options.png
|
||||||
share/gimp/themes/Default/images/stock-all-16.png
|
|
||||||
share/gimp/themes/Default/images/stock-anchor-16.png
|
share/gimp/themes/Default/images/stock-anchor-16.png
|
||||||
share/gimp/themes/Default/images/stock-char-picker-22.png
|
share/gimp/themes/Default/images/stock-char-picker-22.png
|
||||||
share/gimp/themes/Default/images/stock-color-picker-black-18.png
|
share/gimp/themes/Default/images/stock-color-picker-black-18.png
|
||||||
|
@ -928,7 +1078,14 @@ share/gimp/themes/Default/images/stock-duplicate-16.png
|
||||||
share/gimp/themes/Default/images/stock-edit-16.png
|
share/gimp/themes/Default/images/stock-edit-16.png
|
||||||
share/gimp/themes/Default/images/stock-error-64.png
|
share/gimp/themes/Default/images/stock-error-64.png
|
||||||
share/gimp/themes/Default/images/stock-eye-20.png
|
share/gimp/themes/Default/images/stock-eye-20.png
|
||||||
share/gimp/themes/Default/images/stock-grow-16.png
|
share/gimp/themes/Default/images/stock-gravity-east-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-north-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-north-east-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-north-west-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-south-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-south-east-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-south-west-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-west-24.png
|
||||||
share/gimp/themes/Default/images/stock-hchain-24.png
|
share/gimp/themes/Default/images/stock-hchain-24.png
|
||||||
share/gimp/themes/Default/images/stock-hchain-broken-24.png
|
share/gimp/themes/Default/images/stock-hchain-broken-24.png
|
||||||
share/gimp/themes/Default/images/stock-info-16.png
|
share/gimp/themes/Default/images/stock-info-16.png
|
||||||
|
@ -943,7 +1100,6 @@ share/gimp/themes/Default/images/stock-lower-16.png
|
||||||
share/gimp/themes/Default/images/stock-merge-down-16.png
|
share/gimp/themes/Default/images/stock-merge-down-16.png
|
||||||
share/gimp/themes/Default/images/stock-navigation-16.png
|
share/gimp/themes/Default/images/stock-navigation-16.png
|
||||||
share/gimp/themes/Default/images/stock-new-16.png
|
share/gimp/themes/Default/images/stock-new-16.png
|
||||||
share/gimp/themes/Default/images/stock-none-16.png
|
|
||||||
share/gimp/themes/Default/images/stock-paste-16.png
|
share/gimp/themes/Default/images/stock-paste-16.png
|
||||||
share/gimp/themes/Default/images/stock-paste-as-new-16.png
|
share/gimp/themes/Default/images/stock-paste-as-new-16.png
|
||||||
share/gimp/themes/Default/images/stock-paste-into-16.png
|
share/gimp/themes/Default/images/stock-paste-into-16.png
|
||||||
|
@ -962,13 +1118,16 @@ share/gimp/themes/Default/images/stock-rotate-270-16.png
|
||||||
share/gimp/themes/Default/images/stock-rotate-90-16.png
|
share/gimp/themes/Default/images/stock-rotate-90-16.png
|
||||||
share/gimp/themes/Default/images/stock-scale-16.png
|
share/gimp/themes/Default/images/stock-scale-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-add-16.png
|
share/gimp/themes/Default/images/stock-selection-add-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-all-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-grow-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-intersect-16.png
|
share/gimp/themes/Default/images/stock-selection-intersect-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-none-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-replace-16.png
|
share/gimp/themes/Default/images/stock-selection-replace-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-shrink-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-stroke-16.png
|
share/gimp/themes/Default/images/stock-selection-stroke-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-subtract-16.png
|
share/gimp/themes/Default/images/stock-selection-subtract-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-to-channel-16.png
|
share/gimp/themes/Default/images/stock-selection-to-channel-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-to-path-16.png
|
share/gimp/themes/Default/images/stock-selection-to-path-16.png
|
||||||
share/gimp/themes/Default/images/stock-shrink-16.png
|
|
||||||
share/gimp/themes/Default/images/stock-swap-colors-12.png
|
share/gimp/themes/Default/images/stock-swap-colors-12.png
|
||||||
share/gimp/themes/Default/images/stock-tool-airbrush-22.png
|
share/gimp/themes/Default/images/stock-tool-airbrush-22.png
|
||||||
share/gimp/themes/Default/images/stock-tool-bezier-select-22.png
|
share/gimp/themes/Default/images/stock-tool-bezier-select-22.png
|
||||||
|
@ -1015,9 +1174,13 @@ share/gimp/themes/Default/images/stock-warning-16.png
|
||||||
share/gimp/themes/Default/images/stock-warning-24.png
|
share/gimp/themes/Default/images/stock-warning-24.png
|
||||||
share/gimp/themes/Default/images/stock-warning-64.png
|
share/gimp/themes/Default/images/stock-warning-64.png
|
||||||
share/gimp/themes/Default/images/stock-wilber-16.png
|
share/gimp/themes/Default/images/stock-wilber-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-wilber-64.png
|
||||||
share/gimp/themes/Default/images/stock-wilber-eek-64.png
|
share/gimp/themes/Default/images/stock-wilber-eek-64.png
|
||||||
share/gimp/tips/gimp-tips.xml
|
share/gimp/tips/gimp-tips.xml
|
||||||
|
%%GNOME:%%share/gnome/application-registry/gimp-1.3.applications
|
||||||
%%GNOME:%%share/gnome/applications/gimp-1.3.desktop
|
%%GNOME:%%share/gnome/applications/gimp-1.3.desktop
|
||||||
|
%%GNOME:%%share/gnome/mime-info/gimp-1.3.keys
|
||||||
|
%%GNOME:%%share/gnome/pixmaps/gnome-gimp.png
|
||||||
share/locale/ca/LC_MESSAGES/gimp14-libgimp.mo
|
share/locale/ca/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
share/locale/ca/LC_MESSAGES/gimp14-script-fu.mo
|
share/locale/ca/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
share/locale/ca/LC_MESSAGES/gimp14-std-plug-ins.mo
|
share/locale/ca/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
|
@ -1126,6 +1289,10 @@ share/locale/uk/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
share/locale/uk/LC_MESSAGES/gimp14-script-fu.mo
|
share/locale/uk/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
share/locale/uk/LC_MESSAGES/gimp14-std-plug-ins.mo
|
share/locale/uk/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
share/locale/uk/LC_MESSAGES/gimp14.mo
|
share/locale/uk/LC_MESSAGES/gimp14.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14.mo
|
||||||
share/locale/zh_CN/LC_MESSAGES/gimp14-libgimp.mo
|
share/locale/zh_CN/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
share/locale/zh_CN/LC_MESSAGES/gimp14-script-fu.mo
|
share/locale/zh_CN/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
share/locale/zh_CN/LC_MESSAGES/gimp14-std-plug-ins.mo
|
share/locale/zh_CN/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
|
@ -1161,6 +1328,7 @@ share/locale/zh_TW/LC_MESSAGES/gimp14.mo
|
||||||
@dirrm share/gimp/fractalexplorer
|
@dirrm share/gimp/fractalexplorer
|
||||||
@dirrm share/gimp/brushes
|
@dirrm share/gimp/brushes
|
||||||
@dirrm share/gimp
|
@dirrm share/gimp
|
||||||
|
%%PYTHON:%%@dirrm libexec/gimp/1.3/python
|
||||||
@dirrm libexec/gimp/1.3/plug-ins
|
@dirrm libexec/gimp/1.3/plug-ins
|
||||||
@dirrm libexec/gimp/1.3/modules
|
@dirrm libexec/gimp/1.3/modules
|
||||||
@dirrm libexec/gimp/1.3/environ
|
@dirrm libexec/gimp/1.3/environ
|
||||||
|
|
|
@ -39,6 +39,8 @@ USE_X_PREFIX= yes
|
||||||
USE_XPM= yes
|
USE_XPM= yes
|
||||||
USE_GMAKE= yes
|
USE_GMAKE= yes
|
||||||
USE_LIBTOOL= yes
|
USE_LIBTOOL= yes
|
||||||
|
USE_GNOMENG= yes
|
||||||
|
USE_GNOME= gnomehack
|
||||||
INSTALLS_SHLIB= yes
|
INSTALLS_SHLIB= yes
|
||||||
USE_REINPLACE= yes
|
USE_REINPLACE= yes
|
||||||
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
|
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
|
||||||
|
@ -46,22 +48,28 @@ PLIST_SUB= SHLIBVER="${SHLIBVER}"
|
||||||
CONFIGURE_ARGS= --disable-perl \
|
CONFIGURE_ARGS= --disable-perl \
|
||||||
--with-html-dir=${PREFIX}/share/doc/gimp \
|
--with-html-dir=${PREFIX}/share/doc/gimp \
|
||||||
--disable-gtk-doc
|
--disable-gtk-doc
|
||||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include -I${MPEG_WRKSRC}" \
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||||
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
||||||
|
|
||||||
GIMP_DISTFILE= ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
|
GIMP_DISTFILE= ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
|
||||||
MPEG_DISTFILE= ${DISTDIR}/mpeg_lib-1.3.1.tar.gz
|
|
||||||
MPEG_WRKSRC= ${WRKDIR}/mpeg_lib-1.3.1
|
|
||||||
MPEG_CONFIGURE_ENV= OPTIMIZE="${CFLAGS}"
|
|
||||||
MPEG_CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
||||||
--target=${ARCH}-unknown-freebsd${OSREL}
|
|
||||||
|
|
||||||
MAN1= gimp-1.3.1 gimptool-1.3.1 gimp-remote-1.3.1
|
MAN1= gimp-1.3.1 gimptool-1.3.1 gimp-remote-1.3.1
|
||||||
MAN5= gimprc-1.3.5
|
MAN5= gimprc-1.3.5
|
||||||
|
|
||||||
|
.if defined(WITH_PYTHON)
|
||||||
|
USE_PYTHON= yes
|
||||||
|
BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/_gtkmodule.so:${PORTSDIR}/x11-toolkits/py-gtk2
|
||||||
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/_gtkmodule.so:${PORTSDIR}/x11-toolkits/py-gtk2
|
||||||
|
CONFIGURE_ARGS+= --enable-python
|
||||||
|
PLIST_SUB+= PYTHON:=""
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+= --disable-python
|
||||||
|
PLIST_SUB+= PYTHON:="@comment "
|
||||||
|
.endif
|
||||||
|
|
||||||
.if exists(${X11BASE}/libdata/pkgconfig/libpanelapplet-2.0.pc)
|
.if exists(${X11BASE}/libdata/pkgconfig/libpanelapplet-2.0.pc)
|
||||||
RUN_DEPENDS+= gnome-panel:${PORTSDIR}/x11/gnomepanel
|
RUN_DEPENDS+= gnome-panel:${PORTSDIR}/x11/gnomepanel
|
||||||
CONFIGURE_ARGS+= --with-gnome-desktop=${X11BASE}/share/gnome/applications
|
CONFIGURE_ARGS+= --with-gnome-datadir=${X11BASE}/share/gnome
|
||||||
PLIST_SUB+= GNOME:=""
|
PLIST_SUB+= GNOME:=""
|
||||||
.else
|
.else
|
||||||
PLIST_SUB+= GNOME:="@comment "
|
PLIST_SUB+= GNOME:="@comment "
|
||||||
|
@ -71,28 +79,11 @@ PLIST_SUB+= GNOME:="@comment "
|
||||||
#LIB_DEPENDS+= gtkhtml-2.0:${PORTSDIR}/www/libgtkhtml
|
#LIB_DEPENDS+= gtkhtml-2.0:${PORTSDIR}/www/libgtkhtml
|
||||||
#.endif
|
#.endif
|
||||||
|
|
||||||
do-extract:
|
pre-everything::
|
||||||
@${MKDIR} ${WRKDIR}
|
@${ECHO_MSG} ""
|
||||||
@(cd ${WRKDIR} && ${BZIP2_CMD} -dc ${GIMP_DISTFILE} | ${TAR} -xf -)
|
@${ECHO_MSG} "gimp-devel has the following tunable option(s):"
|
||||||
@(cd ${WRKDIR} && ${GZIP_CMD} -dc ${MPEG_DISTFILE} | ${TAR} -xf -)
|
@${ECHO_MSG} ""
|
||||||
@(${FIND} ${MPEG_WRKSRC} -type f | ${XARGS} ${CHMOD} u+w)
|
@${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support"
|
||||||
|
@${ECHO_MSG} ""
|
||||||
pre-configure:
|
|
||||||
@(cd ${MPEG_WRKSRC} && \
|
|
||||||
${SETENV} CC="${CC}" CXX="${CXX}" \
|
|
||||||
CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
|
|
||||||
INSTALL="/usr/bin/install -c -o ${BINOWN} -g ${BINGRP}" \
|
|
||||||
INSTALL_DATA="${INSTALL_DATA}" \
|
|
||||||
INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
|
|
||||||
INSTALL_SCRIPT="${INSTALL_SCRIPT}" \
|
|
||||||
${MPEG_CONFIGURE_ENV} ./configure ${MPEG_CONFIGURE_ARGS})
|
|
||||||
@(cd ${MPEG_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
|
|
||||||
|
|
||||||
post-patch:
|
|
||||||
@${REINPLACE_CMD} -e 's|-lmpeg|${MPEG_WRKSRC}/libmpeg.a|g' \
|
|
||||||
${WRKSRC}/configure
|
|
||||||
@(cd ${MPEG_WRKSRC} ; \
|
|
||||||
${GREP} -r -l "<malloc.h>" * | \
|
|
||||||
${XARGS} ${REINPLACE_CMD} -e "s/<malloc.h>/<stdlib.h>/")
|
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
MD5 (gimp-1.3.11.tar.bz2) = df2e753e1ad951b52f790b8392091a46
|
MD5 (gimp-1.3.12.tar.bz2) = 1f3eda10fc8e6379e5578f21a925e2be
|
||||||
MD5 (mpeg_lib-1.3.1.tar.gz) = 9d803be0073f42acf87d5fbb339a183b
|
MD5 (mpeg_lib-1.3.1.tar.gz) = 9d803be0073f42acf87d5fbb339a183b
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
--- ../mpeg_lib-1.3.1/Makefile.in.orig Thu Nov 26 11:03:29 1998
|
|
||||||
+++ ../mpeg_lib-1.3.1/Makefile.in Tue Jul 9 22:28:11 2002
|
|
||||||
@@ -19,7 +19,7 @@
|
|
||||||
exec_prefix = @exec_prefix@
|
|
||||||
INSTALL_INCLUDE = @includedir@
|
|
||||||
INSTALL_LIBRARY = @libdir@
|
|
||||||
-INSTALL = @INSTALL@
|
|
||||||
+INSTALL_DATA = @INSTALL_DATA@
|
|
||||||
|
|
||||||
# Other miscellaneous programs
|
|
||||||
AR = @AR@
|
|
||||||
@@ -67,10 +67,9 @@
|
|
||||||
$(CC) -shared -o $(SHLIB) $(LIBOBJ)
|
|
||||||
|
|
||||||
install: $(LIBRARY)
|
|
||||||
- $(INSTALL) -d $(INSTALL_INCLUDE) $(INSTALL_LIBRARY)
|
|
||||||
- $(INSTALL) -m 0644 $(HEADER) $(INSTALL_INCLUDE)/$(HEADER)
|
|
||||||
- $(INSTALL) -m 0644 $(LIBRARY) $(INSTALL_LIBRARY)/$(LIBRARY)
|
|
||||||
- @if test -f $(SHLIB) ; then echo "warning: $(SHLIB) *not* installed (installing shared libraries is too system-specific)" ; fi
|
|
||||||
+ $(MKDIR) $(INSTALL_INCLUDE) $(INSTALL_LIBRARY)
|
|
||||||
+ $(INSTALL_DATA) $(HEADER) $(INSTALL_INCLUDE)/$(HEADER)
|
|
||||||
+ $(INSTALL_DATA) $(LIBRARY) $(INSTALL_LIBRARY)/$(LIBRARY)
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f $(LIBRARY) $(EXTRAS) $(LIBOBJ) core
|
|
|
@ -1,23 +0,0 @@
|
||||||
--- ../mpeg_lib-1.3.1/video.c.orig Sat Jul 24 13:00:51 1999
|
|
||||||
+++ ../mpeg_lib-1.3.1/video.c Tue Aug 31 23:11:56 1999
|
|
||||||
@@ -49,6 +49,10 @@
|
|
||||||
#include "proto.h"
|
|
||||||
#include "my_dmalloc.h"
|
|
||||||
|
|
||||||
+#ifdef _HAVE_PARAM_H
|
|
||||||
+#include <sys/param.h>
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
/* Declarations of functions. */
|
|
||||||
static void ReconIMBlock(VidStream *,int);
|
|
||||||
static void ReconPMBlock(VidStream *,int,int,int,int);
|
|
||||||
@@ -445,7 +449,9 @@
|
|
||||||
static int num_calls = 0;
|
|
||||||
unsigned int data;
|
|
||||||
int i, status;
|
|
||||||
+#if BSD < 199103
|
|
||||||
long int ftell (FILE *stream);
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
/* If vid_stream is null, create new VidStream structure. */
|
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
|
|
||||||
$FreeBSD$
|
|
||||||
|
|
||||||
--- Makefile.in 2002/05/17 18:44:19 1.1
|
|
||||||
+++ Makefile.in 2002/05/17 18:44:46
|
|
||||||
@@ -185,7 +185,7 @@
|
|
||||||
|
|
||||||
bin_SCRIPTS = gimptool-1.3 @GIMPINSTALL@
|
|
||||||
|
|
||||||
-pkgconfigdir = $(libdir)/pkgconfig
|
|
||||||
+pkgconfigdir = $(prefix)/libdata/pkgconfig
|
|
||||||
pkgconfig_DATA = gimp-1.3.pc gimpui-1.3.pc
|
|
||||||
|
|
||||||
EXTRA_SCRIPTS = gimpinstall-1.3
|
|
10
graphics/gimp/files/patch-app_plug-in_plug-in-shm.c
Normal file
10
graphics/gimp/files/patch-app_plug-in_plug-in-shm.c
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
--- app/plug-in/plug-in-shm.c.orig Wed Feb 19 01:40:37 2003
|
||||||
|
+++ app/plug-in/plug-in-shm.c Wed Feb 19 01:40:49 2003
|
||||||
|
@@ -17,6 +17,7 @@
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
+#include <sys/types.h>
|
||||||
|
|
||||||
|
#ifdef HAVE_IPC_H
|
||||||
|
#include <sys/ipc.h>
|
|
@ -1 +0,0 @@
|
||||||
A GNU Image Manipulation Program (unstable development version)
|
|
|
@ -71,6 +71,7 @@ include/gimp-1.3/libgimpbase/gimpparasite.h
|
||||||
include/gimp-1.3/libgimpbase/gimpparasiteio.h
|
include/gimp-1.3/libgimpbase/gimpparasiteio.h
|
||||||
include/gimp-1.3/libgimpbase/gimpsignal.h
|
include/gimp-1.3/libgimpbase/gimpsignal.h
|
||||||
include/gimp-1.3/libgimpbase/gimpunit.h
|
include/gimp-1.3/libgimpbase/gimpunit.h
|
||||||
|
include/gimp-1.3/libgimpbase/gimputils.h
|
||||||
include/gimp-1.3/libgimpbase/gimpversion.h
|
include/gimp-1.3/libgimpbase/gimpversion.h
|
||||||
include/gimp-1.3/libgimpcolor/gimpadaptivesupersample.h
|
include/gimp-1.3/libgimpcolor/gimpadaptivesupersample.h
|
||||||
include/gimp-1.3/libgimpcolor/gimpbilinear.h
|
include/gimp-1.3/libgimpcolor/gimpbilinear.h
|
||||||
|
@ -107,6 +108,7 @@ include/gimp-1.3/libgimpwidgets/gimpcolorselector.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimpdialog.h
|
include/gimp-1.3/libgimpwidgets/gimpdialog.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimpfileselection.h
|
include/gimp-1.3/libgimpwidgets/gimpfileselection.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimphelpui.h
|
include/gimp-1.3/libgimpwidgets/gimphelpui.h
|
||||||
|
include/gimp-1.3/libgimpwidgets/gimpmemsizeentry.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimpoffsetarea.h
|
include/gimp-1.3/libgimpwidgets/gimpoffsetarea.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimppatheditor.h
|
include/gimp-1.3/libgimpwidgets/gimppatheditor.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimppickbutton.h
|
include/gimp-1.3/libgimpwidgets/gimppickbutton.h
|
||||||
|
@ -150,6 +152,7 @@ lib/libgimpwidgets-1.3.so.%%SHLIBVER%%
|
||||||
libdata/pkgconfig/gimp-1.3.pc
|
libdata/pkgconfig/gimp-1.3.pc
|
||||||
libdata/pkgconfig/gimpui-1.3.pc
|
libdata/pkgconfig/gimpui-1.3.pc
|
||||||
libexec/gimp/1.3/environ/default.env
|
libexec/gimp/1.3/environ/default.env
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/environ/pygimp.env
|
||||||
libexec/gimp/1.3/modules/libcdisplay_colorblind.so
|
libexec/gimp/1.3/modules/libcdisplay_colorblind.so
|
||||||
libexec/gimp/1.3/modules/libcdisplay_gamma.so
|
libexec/gimp/1.3/modules/libcdisplay_gamma.so
|
||||||
libexec/gimp/1.3/modules/libcdisplay_highcontrast.so
|
libexec/gimp/1.3/modules/libcdisplay_highcontrast.so
|
||||||
|
@ -177,7 +180,9 @@ libexec/gimp/1.3/plug-ins/bumpmap
|
||||||
libexec/gimp/1.3/plug-ins/bz2
|
libexec/gimp/1.3/plug-ins/bz2
|
||||||
libexec/gimp/1.3/plug-ins/c_astretch
|
libexec/gimp/1.3/plug-ins/c_astretch
|
||||||
libexec/gimp/1.3/plug-ins/checkerboard
|
libexec/gimp/1.3/plug-ins/checkerboard
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/clothify.py
|
||||||
libexec/gimp/1.3/plug-ins/color_enhance
|
libexec/gimp/1.3/plug-ins/color_enhance
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/colorhtml.py
|
||||||
libexec/gimp/1.3/plug-ins/colorify
|
libexec/gimp/1.3/plug-ins/colorify
|
||||||
libexec/gimp/1.3/plug-ins/colortoalpha
|
libexec/gimp/1.3/plug-ins/colortoalpha
|
||||||
libexec/gimp/1.3/plug-ins/compose
|
libexec/gimp/1.3/plug-ins/compose
|
||||||
|
@ -202,6 +207,7 @@ libexec/gimp/1.3/plug-ins/film
|
||||||
libexec/gimp/1.3/plug-ins/fits
|
libexec/gimp/1.3/plug-ins/fits
|
||||||
libexec/gimp/1.3/plug-ins/flame
|
libexec/gimp/1.3/plug-ins/flame
|
||||||
libexec/gimp/1.3/plug-ins/flarefx
|
libexec/gimp/1.3/plug-ins/flarefx
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/foggify.py
|
||||||
libexec/gimp/1.3/plug-ins/fp
|
libexec/gimp/1.3/plug-ins/fp
|
||||||
libexec/gimp/1.3/plug-ins/fractaltrace
|
libexec/gimp/1.3/plug-ins/fractaltrace
|
||||||
libexec/gimp/1.3/plug-ins/gauss_iir
|
libexec/gimp/1.3/plug-ins/gauss_iir
|
||||||
|
@ -216,11 +222,13 @@ libexec/gimp/1.3/plug-ins/gicon
|
||||||
libexec/gimp/1.3/plug-ins/gif
|
libexec/gimp/1.3/plug-ins/gif
|
||||||
libexec/gimp/1.3/plug-ins/gifload
|
libexec/gimp/1.3/plug-ins/gifload
|
||||||
libexec/gimp/1.3/plug-ins/gih
|
libexec/gimp/1.3/plug-ins/gih
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/gimpcons.py
|
||||||
libexec/gimp/1.3/plug-ins/gimpressionist
|
libexec/gimp/1.3/plug-ins/gimpressionist
|
||||||
libexec/gimp/1.3/plug-ins/glasstile
|
libexec/gimp/1.3/plug-ins/glasstile
|
||||||
libexec/gimp/1.3/plug-ins/gqbist
|
libexec/gimp/1.3/plug-ins/gqbist
|
||||||
libexec/gimp/1.3/plug-ins/gradmap
|
libexec/gimp/1.3/plug-ins/gradmap
|
||||||
libexec/gimp/1.3/plug-ins/grid
|
libexec/gimp/1.3/plug-ins/grid
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/gtkcons.py
|
||||||
libexec/gimp/1.3/plug-ins/gtm
|
libexec/gimp/1.3/plug-ins/gtm
|
||||||
libexec/gimp/1.3/plug-ins/guillotine
|
libexec/gimp/1.3/plug-ins/guillotine
|
||||||
libexec/gimp/1.3/plug-ins/gz
|
libexec/gimp/1.3/plug-ins/gz
|
||||||
|
@ -241,7 +249,6 @@ libexec/gimp/1.3/plug-ins/max_rgb
|
||||||
libexec/gimp/1.3/plug-ins/maze
|
libexec/gimp/1.3/plug-ins/maze
|
||||||
libexec/gimp/1.3/plug-ins/mblur
|
libexec/gimp/1.3/plug-ins/mblur
|
||||||
libexec/gimp/1.3/plug-ins/mosaic
|
libexec/gimp/1.3/plug-ins/mosaic
|
||||||
libexec/gimp/1.3/plug-ins/mpeg
|
|
||||||
libexec/gimp/1.3/plug-ins/newsprint
|
libexec/gimp/1.3/plug-ins/newsprint
|
||||||
libexec/gimp/1.3/plug-ins/nlfilt
|
libexec/gimp/1.3/plug-ins/nlfilt
|
||||||
libexec/gimp/1.3/plug-ins/noisify
|
libexec/gimp/1.3/plug-ins/noisify
|
||||||
|
@ -252,6 +259,7 @@ libexec/gimp/1.3/plug-ins/pagecurl
|
||||||
libexec/gimp/1.3/plug-ins/papertile
|
libexec/gimp/1.3/plug-ins/papertile
|
||||||
libexec/gimp/1.3/plug-ins/pat
|
libexec/gimp/1.3/plug-ins/pat
|
||||||
libexec/gimp/1.3/plug-ins/pcx
|
libexec/gimp/1.3/plug-ins/pcx
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/pdbbrowse.py
|
||||||
libexec/gimp/1.3/plug-ins/pix
|
libexec/gimp/1.3/plug-ins/pix
|
||||||
libexec/gimp/1.3/plug-ins/pixelize
|
libexec/gimp/1.3/plug-ins/pixelize
|
||||||
libexec/gimp/1.3/plug-ins/plasma
|
libexec/gimp/1.3/plug-ins/plasma
|
||||||
|
@ -262,6 +270,7 @@ libexec/gimp/1.3/plug-ins/polar
|
||||||
libexec/gimp/1.3/plug-ins/print
|
libexec/gimp/1.3/plug-ins/print
|
||||||
libexec/gimp/1.3/plug-ins/ps
|
libexec/gimp/1.3/plug-ins/ps
|
||||||
libexec/gimp/1.3/plug-ins/psd
|
libexec/gimp/1.3/plug-ins/psd
|
||||||
|
libexec/gimp/1.3/plug-ins/psd_save
|
||||||
libexec/gimp/1.3/plug-ins/psp
|
libexec/gimp/1.3/plug-ins/psp
|
||||||
libexec/gimp/1.3/plug-ins/randomize
|
libexec/gimp/1.3/plug-ins/randomize
|
||||||
libexec/gimp/1.3/plug-ins/rcm
|
libexec/gimp/1.3/plug-ins/rcm
|
||||||
|
@ -275,6 +284,7 @@ libexec/gimp/1.3/plug-ins/sel2path
|
||||||
libexec/gimp/1.3/plug-ins/sel_gauss
|
libexec/gimp/1.3/plug-ins/sel_gauss
|
||||||
libexec/gimp/1.3/plug-ins/semiflatten
|
libexec/gimp/1.3/plug-ins/semiflatten
|
||||||
libexec/gimp/1.3/plug-ins/sgi
|
libexec/gimp/1.3/plug-ins/sgi
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/shadow_bevel.py
|
||||||
libexec/gimp/1.3/plug-ins/sharpen
|
libexec/gimp/1.3/plug-ins/sharpen
|
||||||
libexec/gimp/1.3/plug-ins/shift
|
libexec/gimp/1.3/plug-ins/shift
|
||||||
libexec/gimp/1.3/plug-ins/sinus
|
libexec/gimp/1.3/plug-ins/sinus
|
||||||
|
@ -282,6 +292,8 @@ libexec/gimp/1.3/plug-ins/smooth_palette
|
||||||
libexec/gimp/1.3/plug-ins/snoise
|
libexec/gimp/1.3/plug-ins/snoise
|
||||||
libexec/gimp/1.3/plug-ins/sobel
|
libexec/gimp/1.3/plug-ins/sobel
|
||||||
libexec/gimp/1.3/plug-ins/sparkle
|
libexec/gimp/1.3/plug-ins/sparkle
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/sphere.py
|
||||||
|
libexec/gimp/1.3/plug-ins/spheredesigner
|
||||||
libexec/gimp/1.3/plug-ins/spread
|
libexec/gimp/1.3/plug-ins/spread
|
||||||
libexec/gimp/1.3/plug-ins/struc
|
libexec/gimp/1.3/plug-ins/struc
|
||||||
libexec/gimp/1.3/plug-ins/sunras
|
libexec/gimp/1.3/plug-ins/sunras
|
||||||
|
@ -302,6 +314,7 @@ libexec/gimp/1.3/plug-ins/warp
|
||||||
libexec/gimp/1.3/plug-ins/waves
|
libexec/gimp/1.3/plug-ins/waves
|
||||||
libexec/gimp/1.3/plug-ins/webbrowser
|
libexec/gimp/1.3/plug-ins/webbrowser
|
||||||
libexec/gimp/1.3/plug-ins/whirlpinch
|
libexec/gimp/1.3/plug-ins/whirlpinch
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/whirlpinch.py
|
||||||
libexec/gimp/1.3/plug-ins/wind
|
libexec/gimp/1.3/plug-ins/wind
|
||||||
libexec/gimp/1.3/plug-ins/wmf
|
libexec/gimp/1.3/plug-ins/wmf
|
||||||
libexec/gimp/1.3/plug-ins/xbm
|
libexec/gimp/1.3/plug-ins/xbm
|
||||||
|
@ -309,6 +322,22 @@ libexec/gimp/1.3/plug-ins/xjt
|
||||||
libexec/gimp/1.3/plug-ins/xpm
|
libexec/gimp/1.3/plug-ins/xpm
|
||||||
libexec/gimp/1.3/plug-ins/xwd
|
libexec/gimp/1.3/plug-ins/xwd
|
||||||
libexec/gimp/1.3/plug-ins/zealouscrop
|
libexec/gimp/1.3/plug-ins/zealouscrop
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpenums.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpenums.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpenums.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpfu.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpfu.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpfu.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpmodule.so
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpplugin.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpplugin.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpplugin.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpshelf.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpshelf.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpshelf.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpui.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpui.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpui.pyo
|
||||||
share/aclocal/gimp-1.4.m4
|
share/aclocal/gimp-1.4.m4
|
||||||
share/doc/gimp/libgimp/gimpdefinitions.html
|
share/doc/gimp/libgimp/gimpdefinitions.html
|
||||||
share/doc/gimp/libgimp/home.png
|
share/doc/gimp/libgimp/home.png
|
||||||
|
@ -335,7 +364,6 @@ share/doc/gimp/libgimp/libgimp-gimpimage.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimplayer.html
|
share/doc/gimp/libgimp/libgimp-gimplayer.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpmenu.html
|
share/doc/gimp/libgimp/libgimp-gimpmenu.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpmessage.html
|
share/doc/gimp/libgimp/libgimp-gimpmessage.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpmisc.html
|
|
||||||
share/doc/gimp/libgimp/libgimp-gimppalette.html
|
share/doc/gimp/libgimp/libgimp-gimppalette.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimppatterns.html
|
share/doc/gimp/libgimp/libgimp-gimppatterns.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimppixelrgn.html
|
share/doc/gimp/libgimp/libgimp-gimppixelrgn.html
|
||||||
|
@ -347,12 +375,15 @@ share/doc/gimp/libgimp/libgimp-gimptile.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimptools.html
|
share/doc/gimp/libgimp/libgimp-gimptools.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpui.html
|
share/doc/gimp/libgimp/libgimp-gimpui.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpundo.html
|
share/doc/gimp/libgimp/libgimp-gimpundo.html
|
||||||
|
share/doc/gimp/libgimp/libgimp.devhelp
|
||||||
share/doc/gimp/libgimp/libgimp.html
|
share/doc/gimp/libgimp/libgimp.html
|
||||||
share/doc/gimp/libgimp/libgimpui.html
|
share/doc/gimp/libgimp/libgimpui.html
|
||||||
share/doc/gimp/libgimp/right.png
|
share/doc/gimp/libgimp/right.png
|
||||||
share/doc/gimp/libgimp/up.png
|
share/doc/gimp/libgimp/up.png
|
||||||
|
share/doc/gimp/libgimpbase/home.png
|
||||||
share/doc/gimp/libgimpbase/index.html
|
share/doc/gimp/libgimpbase/index.html
|
||||||
share/doc/gimp/libgimpbase/index.sgml
|
share/doc/gimp/libgimpbase/index.sgml
|
||||||
|
share/doc/gimp/libgimpbase/left.png
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpenv.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpenv.html
|
||||||
|
@ -362,63 +393,180 @@ share/doc/gimp/libgimpbase/libgimpbase-gimpparasiteio.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpprotocol.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpprotocol.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpsignal.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpsignal.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html
|
||||||
|
share/doc/gimp/libgimpbase/libgimpbase-gimputils.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpwire.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpwire.html
|
||||||
|
share/doc/gimp/libgimpbase/libgimpbase.devhelp
|
||||||
share/doc/gimp/libgimpbase/libgimpbase.html
|
share/doc/gimp/libgimpbase/libgimpbase.html
|
||||||
|
share/doc/gimp/libgimpbase/right.png
|
||||||
|
share/doc/gimp/libgimpbase/up.png
|
||||||
|
share/doc/gimp/libgimpcolor/home.png
|
||||||
share/doc/gimp/libgimpcolor/index.html
|
share/doc/gimp/libgimpcolor/index.html
|
||||||
share/doc/gimp/libgimpcolor/index.sgml
|
share/doc/gimp/libgimpcolor/index.sgml
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimpadaptivesupersample.html
|
share/doc/gimp/libgimpcolor/left.png
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimpbilinear.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimpcolorspace.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpBilinear.html
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimphsv.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorSpace.html
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimprgb.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpHSV.html
|
||||||
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpRGB.html
|
||||||
|
share/doc/gimp/libgimpcolor/libgimpcolor.devhelp
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor.html
|
share/doc/gimp/libgimpcolor/libgimpcolor.html
|
||||||
|
share/doc/gimp/libgimpcolor/right.png
|
||||||
|
share/doc/gimp/libgimpcolor/up.png
|
||||||
|
share/doc/gimp/libgimpmath/home.png
|
||||||
share/doc/gimp/libgimpmath/index.html
|
share/doc/gimp/libgimpmath/index.html
|
||||||
share/doc/gimp/libgimpmath/index.sgml
|
share/doc/gimp/libgimpmath/index.sgml
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpmath.html
|
share/doc/gimp/libgimpmath/left.png
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpmatrix.html
|
share/doc/gimp/libgimpmath/libgimpmath-GimpMD5.html
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpmd5.html
|
share/doc/gimp/libgimpmath/libgimpmath-GimpMath.html
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpvector.html
|
share/doc/gimp/libgimpmath/libgimpmath-GimpMatrix.html
|
||||||
|
share/doc/gimp/libgimpmath/libgimpmath-GimpVector.html
|
||||||
|
share/doc/gimp/libgimpmath/libgimpmath.devhelp
|
||||||
share/doc/gimp/libgimpmath/libgimpmath.html
|
share/doc/gimp/libgimpmath/libgimpmath.html
|
||||||
share/doc/gimp/libgimpmodule/gimpmodule.html
|
share/doc/gimp/libgimpmath/right.png
|
||||||
share/doc/gimp/libgimpmodule/gimpmoduledb.html
|
share/doc/gimp/libgimpmath/up.png
|
||||||
|
share/doc/gimp/libgimpmodule/GimpModule.html
|
||||||
|
share/doc/gimp/libgimpmodule/GimpModuleDB.html
|
||||||
share/doc/gimp/libgimpmodule/home.png
|
share/doc/gimp/libgimpmodule/home.png
|
||||||
share/doc/gimp/libgimpmodule/index.html
|
share/doc/gimp/libgimpmodule/index.html
|
||||||
share/doc/gimp/libgimpmodule/index.sgml
|
share/doc/gimp/libgimpmodule/index.sgml
|
||||||
share/doc/gimp/libgimpmodule/left.png
|
share/doc/gimp/libgimpmodule/left.png
|
||||||
|
share/doc/gimp/libgimpmodule/libgimpmodule.devhelp
|
||||||
share/doc/gimp/libgimpmodule/libgimpmodule.html
|
share/doc/gimp/libgimpmodule/libgimpmodule.html
|
||||||
share/doc/gimp/libgimpmodule/right.png
|
share/doc/gimp/libgimpmodule/right.png
|
||||||
share/doc/gimp/libgimpmodule/up.png
|
share/doc/gimp/libgimpmodule/up.png
|
||||||
share/doc/gimp/libgimpwidgets/gimpbutton.html
|
share/doc/gimp/libgimpwidgets/GimpButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpchainbutton.html
|
share/doc/gimp/libgimpwidgets/GimpChainButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorbutton.html
|
share/doc/gimp/libgimpwidgets/GimpColorButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolordisplay.html
|
share/doc/gimp/libgimpwidgets/GimpColorDisplay.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolornotebook.html
|
share/doc/gimp/libgimpwidgets/GimpColorNotebook.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorscale.html
|
share/doc/gimp/libgimpwidgets/GimpColorScale.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorscales.html
|
share/doc/gimp/libgimpwidgets/GimpColorScales.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorselect.html
|
share/doc/gimp/libgimpwidgets/GimpColorSelect.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorselector.html
|
share/doc/gimp/libgimpwidgets/GimpColorSelector.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpdialog.html
|
share/doc/gimp/libgimpwidgets/GimpDialog.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpfileselection.html
|
share/doc/gimp/libgimpwidgets/GimpFileSelection.html
|
||||||
share/doc/gimp/libgimpwidgets/gimppatheditor.html
|
share/doc/gimp/libgimpwidgets/GimpMemsizeEntry.html
|
||||||
share/doc/gimp/libgimpwidgets/gimppickbutton.html
|
share/doc/gimp/libgimpwidgets/GimpPathEditor.html
|
||||||
share/doc/gimp/libgimpwidgets/gimppixmap.html
|
share/doc/gimp/libgimpwidgets/GimpPickButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpsizeentry.html
|
share/doc/gimp/libgimpwidgets/GimpPixmap.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpunitmenu.html
|
share/doc/gimp/libgimpwidgets/GimpSizeEntry.html
|
||||||
|
share/doc/gimp/libgimpwidgets/GimpUnitMenu.html
|
||||||
share/doc/gimp/libgimpwidgets/home.png
|
share/doc/gimp/libgimpwidgets/home.png
|
||||||
share/doc/gimp/libgimpwidgets/index.html
|
share/doc/gimp/libgimpwidgets/index.html
|
||||||
share/doc/gimp/libgimpwidgets/index.sgml
|
share/doc/gimp/libgimpwidgets/index.sgml
|
||||||
share/doc/gimp/libgimpwidgets/left.png
|
share/doc/gimp/libgimpwidgets/left.png
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpColorArea.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpHelpUI.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpQueryBox.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpStock.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpWidgets.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-colordisplay.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-colordisplay.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-colorselector.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-colorselector.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpcolorarea.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimphelpui.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpquerybox.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpstock.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpwidgets.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-utils.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-utils.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-widgets.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-widgets.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets.devhelp
|
||||||
share/doc/gimp/libgimpwidgets/right.png
|
share/doc/gimp/libgimpwidgets/right.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-anchor-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-char-picker-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-picker-black-18.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-picker-gray-18.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-picker-white-18.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-triangle-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-convert-grayscale-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-convert-indexed-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-convert-rgb-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-default-colors-12.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-duplicate-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-edit-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-eye-20.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-east-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-north-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-north-east-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-north-west-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-south-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-south-east-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-south-west-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-west-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-hchain-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-hchain-broken-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-info-64.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-invert-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-layer-to-imagesize-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-letter-spacing-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-line-spacing-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-linked-20.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-merge-down-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-navigation-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-paste-as-new-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-paste-into-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-path-stroke-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-plugin-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-qmask-off-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-qmask-on-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-reset-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-reshow-filter-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-resize-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-rotate-180-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-rotate-270-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-rotate-90-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-scale-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-add-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-all-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-grow-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-intersect-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-none-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-replace-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-shrink-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-stroke-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-subtract-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-to-channel-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-to-path-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-swap-colors-12.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-airbrush-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-bezier-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-blend-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-blur-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-brightness-contrast-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-bucket-fill-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-by-color-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-clone-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-color-balance-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-color-picker-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-crop-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-curves-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-dodge-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-ellipse-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-eraser-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-flip-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-free-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-fuzzy-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-histogram-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-hue-saturation-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-ink-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-iscissors-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-levels-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-measure-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-move-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-options-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-paintbrush-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-path-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-pencil-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-perspective-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-posterize-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-rect-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-rotate-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-scale-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-shear-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-smudge-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-text-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-threshold-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-zoom-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-vchain-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-vchain-broken-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-warning-64.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-wilber-64.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-wilber-eek-64.png
|
||||||
share/doc/gimp/libgimpwidgets/up.png
|
share/doc/gimp/libgimpwidgets/up.png
|
||||||
share/gimp/brushes/10x10square.gbr
|
share/gimp/brushes/10x10square.gbr
|
||||||
share/gimp/brushes/10x10squareBlur.gbr
|
share/gimp/brushes/10x10squareBlur.gbr
|
||||||
|
@ -695,7 +843,9 @@ share/gimp/images/gimp_splash.png
|
||||||
share/gimp/images/wilber-icon.png
|
share/gimp/images/wilber-icon.png
|
||||||
share/gimp/images/wilber-tips.png
|
share/gimp/images/wilber-tips.png
|
||||||
share/gimp/images/wilber-wizard.png
|
share/gimp/images/wilber-wizard.png
|
||||||
|
share/gimp/misc/gimp.applications
|
||||||
share/gimp/misc/gimp.desktop
|
share/gimp/misc/gimp.desktop
|
||||||
|
share/gimp/misc/gimp.keys
|
||||||
share/gimp/palettes/Bears.gpl
|
share/gimp/palettes/Bears.gpl
|
||||||
share/gimp/palettes/Bgold.gpl
|
share/gimp/palettes/Bgold.gpl
|
||||||
share/gimp/palettes/Blues.gpl
|
share/gimp/palettes/Blues.gpl
|
||||||
|
@ -829,7 +979,7 @@ share/gimp/scripts/comic-logo.scm
|
||||||
share/gimp/scripts/coolmetal-logo.scm
|
share/gimp/scripts/coolmetal-logo.scm
|
||||||
share/gimp/scripts/copy-visible.scm
|
share/gimp/scripts/copy-visible.scm
|
||||||
share/gimp/scripts/crystal-logo.scm
|
share/gimp/scripts/crystal-logo.scm
|
||||||
share/gimp/scripts/distress_selection.scm
|
share/gimp/scripts/distress-selection.scm
|
||||||
share/gimp/scripts/drop-shadow.scm
|
share/gimp/scripts/drop-shadow.scm
|
||||||
share/gimp/scripts/erase-rows.scm
|
share/gimp/scripts/erase-rows.scm
|
||||||
share/gimp/scripts/fade-outline.scm
|
share/gimp/scripts/fade-outline.scm
|
||||||
|
@ -853,21 +1003,22 @@ share/gimp/scripts/line-nova.scm
|
||||||
share/gimp/scripts/mkbrush.scm
|
share/gimp/scripts/mkbrush.scm
|
||||||
share/gimp/scripts/neon-logo.scm
|
share/gimp/scripts/neon-logo.scm
|
||||||
share/gimp/scripts/news-text.scm
|
share/gimp/scripts/news-text.scm
|
||||||
share/gimp/scripts/old_photo.scm
|
share/gimp/scripts/old-photo.scm
|
||||||
share/gimp/scripts/perspective-shadow.scm
|
share/gimp/scripts/perspective-shadow.scm
|
||||||
share/gimp/scripts/predator.scm
|
share/gimp/scripts/predator.scm
|
||||||
share/gimp/scripts/pupi-button.scm
|
share/gimp/scripts/pupi-button.scm
|
||||||
share/gimp/scripts/rendermap.scm
|
share/gimp/scripts/rendermap.scm
|
||||||
share/gimp/scripts/ripply-anim.scm
|
share/gimp/scripts/ripply-anim.scm
|
||||||
share/gimp/scripts/round-corners.scm
|
share/gimp/scripts/round-corners.scm
|
||||||
share/gimp/scripts/select_to_brush.scm
|
share/gimp/scripts/select-to-brush.scm
|
||||||
share/gimp/scripts/select_to_image.scm
|
share/gimp/scripts/select-to-image.scm
|
||||||
|
share/gimp/scripts/select-to-pattern.scm
|
||||||
share/gimp/scripts/selection-round.scm
|
share/gimp/scripts/selection-round.scm
|
||||||
share/gimp/scripts/slide.scm
|
share/gimp/scripts/slide.scm
|
||||||
share/gimp/scripts/sota-chrome-logo.scm
|
share/gimp/scripts/sota-chrome-logo.scm
|
||||||
share/gimp/scripts/speed-text.scm
|
share/gimp/scripts/speed-text.scm
|
||||||
share/gimp/scripts/sphere.scm
|
share/gimp/scripts/sphere.scm
|
||||||
share/gimp/scripts/spinning_globe.scm
|
share/gimp/scripts/spinning-globe.scm
|
||||||
share/gimp/scripts/starburst-logo.scm
|
share/gimp/scripts/starburst-logo.scm
|
||||||
share/gimp/scripts/starscape-logo.scm
|
share/gimp/scripts/starscape-logo.scm
|
||||||
share/gimp/scripts/swirltile.scm
|
share/gimp/scripts/swirltile.scm
|
||||||
|
@ -912,7 +1063,6 @@ share/gimp/themes/Default/images/preferences/interface.png
|
||||||
share/gimp/themes/Default/images/preferences/monitor.png
|
share/gimp/themes/Default/images/preferences/monitor.png
|
||||||
share/gimp/themes/Default/images/preferences/new-image.png
|
share/gimp/themes/Default/images/preferences/new-image.png
|
||||||
share/gimp/themes/Default/images/preferences/tool-options.png
|
share/gimp/themes/Default/images/preferences/tool-options.png
|
||||||
share/gimp/themes/Default/images/stock-all-16.png
|
|
||||||
share/gimp/themes/Default/images/stock-anchor-16.png
|
share/gimp/themes/Default/images/stock-anchor-16.png
|
||||||
share/gimp/themes/Default/images/stock-char-picker-22.png
|
share/gimp/themes/Default/images/stock-char-picker-22.png
|
||||||
share/gimp/themes/Default/images/stock-color-picker-black-18.png
|
share/gimp/themes/Default/images/stock-color-picker-black-18.png
|
||||||
|
@ -928,7 +1078,14 @@ share/gimp/themes/Default/images/stock-duplicate-16.png
|
||||||
share/gimp/themes/Default/images/stock-edit-16.png
|
share/gimp/themes/Default/images/stock-edit-16.png
|
||||||
share/gimp/themes/Default/images/stock-error-64.png
|
share/gimp/themes/Default/images/stock-error-64.png
|
||||||
share/gimp/themes/Default/images/stock-eye-20.png
|
share/gimp/themes/Default/images/stock-eye-20.png
|
||||||
share/gimp/themes/Default/images/stock-grow-16.png
|
share/gimp/themes/Default/images/stock-gravity-east-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-north-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-north-east-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-north-west-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-south-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-south-east-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-south-west-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-west-24.png
|
||||||
share/gimp/themes/Default/images/stock-hchain-24.png
|
share/gimp/themes/Default/images/stock-hchain-24.png
|
||||||
share/gimp/themes/Default/images/stock-hchain-broken-24.png
|
share/gimp/themes/Default/images/stock-hchain-broken-24.png
|
||||||
share/gimp/themes/Default/images/stock-info-16.png
|
share/gimp/themes/Default/images/stock-info-16.png
|
||||||
|
@ -943,7 +1100,6 @@ share/gimp/themes/Default/images/stock-lower-16.png
|
||||||
share/gimp/themes/Default/images/stock-merge-down-16.png
|
share/gimp/themes/Default/images/stock-merge-down-16.png
|
||||||
share/gimp/themes/Default/images/stock-navigation-16.png
|
share/gimp/themes/Default/images/stock-navigation-16.png
|
||||||
share/gimp/themes/Default/images/stock-new-16.png
|
share/gimp/themes/Default/images/stock-new-16.png
|
||||||
share/gimp/themes/Default/images/stock-none-16.png
|
|
||||||
share/gimp/themes/Default/images/stock-paste-16.png
|
share/gimp/themes/Default/images/stock-paste-16.png
|
||||||
share/gimp/themes/Default/images/stock-paste-as-new-16.png
|
share/gimp/themes/Default/images/stock-paste-as-new-16.png
|
||||||
share/gimp/themes/Default/images/stock-paste-into-16.png
|
share/gimp/themes/Default/images/stock-paste-into-16.png
|
||||||
|
@ -962,13 +1118,16 @@ share/gimp/themes/Default/images/stock-rotate-270-16.png
|
||||||
share/gimp/themes/Default/images/stock-rotate-90-16.png
|
share/gimp/themes/Default/images/stock-rotate-90-16.png
|
||||||
share/gimp/themes/Default/images/stock-scale-16.png
|
share/gimp/themes/Default/images/stock-scale-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-add-16.png
|
share/gimp/themes/Default/images/stock-selection-add-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-all-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-grow-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-intersect-16.png
|
share/gimp/themes/Default/images/stock-selection-intersect-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-none-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-replace-16.png
|
share/gimp/themes/Default/images/stock-selection-replace-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-shrink-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-stroke-16.png
|
share/gimp/themes/Default/images/stock-selection-stroke-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-subtract-16.png
|
share/gimp/themes/Default/images/stock-selection-subtract-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-to-channel-16.png
|
share/gimp/themes/Default/images/stock-selection-to-channel-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-to-path-16.png
|
share/gimp/themes/Default/images/stock-selection-to-path-16.png
|
||||||
share/gimp/themes/Default/images/stock-shrink-16.png
|
|
||||||
share/gimp/themes/Default/images/stock-swap-colors-12.png
|
share/gimp/themes/Default/images/stock-swap-colors-12.png
|
||||||
share/gimp/themes/Default/images/stock-tool-airbrush-22.png
|
share/gimp/themes/Default/images/stock-tool-airbrush-22.png
|
||||||
share/gimp/themes/Default/images/stock-tool-bezier-select-22.png
|
share/gimp/themes/Default/images/stock-tool-bezier-select-22.png
|
||||||
|
@ -1015,9 +1174,13 @@ share/gimp/themes/Default/images/stock-warning-16.png
|
||||||
share/gimp/themes/Default/images/stock-warning-24.png
|
share/gimp/themes/Default/images/stock-warning-24.png
|
||||||
share/gimp/themes/Default/images/stock-warning-64.png
|
share/gimp/themes/Default/images/stock-warning-64.png
|
||||||
share/gimp/themes/Default/images/stock-wilber-16.png
|
share/gimp/themes/Default/images/stock-wilber-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-wilber-64.png
|
||||||
share/gimp/themes/Default/images/stock-wilber-eek-64.png
|
share/gimp/themes/Default/images/stock-wilber-eek-64.png
|
||||||
share/gimp/tips/gimp-tips.xml
|
share/gimp/tips/gimp-tips.xml
|
||||||
|
%%GNOME:%%share/gnome/application-registry/gimp-1.3.applications
|
||||||
%%GNOME:%%share/gnome/applications/gimp-1.3.desktop
|
%%GNOME:%%share/gnome/applications/gimp-1.3.desktop
|
||||||
|
%%GNOME:%%share/gnome/mime-info/gimp-1.3.keys
|
||||||
|
%%GNOME:%%share/gnome/pixmaps/gnome-gimp.png
|
||||||
share/locale/ca/LC_MESSAGES/gimp14-libgimp.mo
|
share/locale/ca/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
share/locale/ca/LC_MESSAGES/gimp14-script-fu.mo
|
share/locale/ca/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
share/locale/ca/LC_MESSAGES/gimp14-std-plug-ins.mo
|
share/locale/ca/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
|
@ -1126,6 +1289,10 @@ share/locale/uk/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
share/locale/uk/LC_MESSAGES/gimp14-script-fu.mo
|
share/locale/uk/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
share/locale/uk/LC_MESSAGES/gimp14-std-plug-ins.mo
|
share/locale/uk/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
share/locale/uk/LC_MESSAGES/gimp14.mo
|
share/locale/uk/LC_MESSAGES/gimp14.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14.mo
|
||||||
share/locale/zh_CN/LC_MESSAGES/gimp14-libgimp.mo
|
share/locale/zh_CN/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
share/locale/zh_CN/LC_MESSAGES/gimp14-script-fu.mo
|
share/locale/zh_CN/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
share/locale/zh_CN/LC_MESSAGES/gimp14-std-plug-ins.mo
|
share/locale/zh_CN/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
|
@ -1161,6 +1328,7 @@ share/locale/zh_TW/LC_MESSAGES/gimp14.mo
|
||||||
@dirrm share/gimp/fractalexplorer
|
@dirrm share/gimp/fractalexplorer
|
||||||
@dirrm share/gimp/brushes
|
@dirrm share/gimp/brushes
|
||||||
@dirrm share/gimp
|
@dirrm share/gimp
|
||||||
|
%%PYTHON:%%@dirrm libexec/gimp/1.3/python
|
||||||
@dirrm libexec/gimp/1.3/plug-ins
|
@dirrm libexec/gimp/1.3/plug-ins
|
||||||
@dirrm libexec/gimp/1.3/modules
|
@dirrm libexec/gimp/1.3/modules
|
||||||
@dirrm libexec/gimp/1.3/environ
|
@dirrm libexec/gimp/1.3/environ
|
||||||
|
|
|
@ -39,6 +39,8 @@ USE_X_PREFIX= yes
|
||||||
USE_XPM= yes
|
USE_XPM= yes
|
||||||
USE_GMAKE= yes
|
USE_GMAKE= yes
|
||||||
USE_LIBTOOL= yes
|
USE_LIBTOOL= yes
|
||||||
|
USE_GNOMENG= yes
|
||||||
|
USE_GNOME= gnomehack
|
||||||
INSTALLS_SHLIB= yes
|
INSTALLS_SHLIB= yes
|
||||||
USE_REINPLACE= yes
|
USE_REINPLACE= yes
|
||||||
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
|
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
|
||||||
|
@ -46,22 +48,28 @@ PLIST_SUB= SHLIBVER="${SHLIBVER}"
|
||||||
CONFIGURE_ARGS= --disable-perl \
|
CONFIGURE_ARGS= --disable-perl \
|
||||||
--with-html-dir=${PREFIX}/share/doc/gimp \
|
--with-html-dir=${PREFIX}/share/doc/gimp \
|
||||||
--disable-gtk-doc
|
--disable-gtk-doc
|
||||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include -I${MPEG_WRKSRC}" \
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||||
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
||||||
|
|
||||||
GIMP_DISTFILE= ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
|
GIMP_DISTFILE= ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
|
||||||
MPEG_DISTFILE= ${DISTDIR}/mpeg_lib-1.3.1.tar.gz
|
|
||||||
MPEG_WRKSRC= ${WRKDIR}/mpeg_lib-1.3.1
|
|
||||||
MPEG_CONFIGURE_ENV= OPTIMIZE="${CFLAGS}"
|
|
||||||
MPEG_CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
||||||
--target=${ARCH}-unknown-freebsd${OSREL}
|
|
||||||
|
|
||||||
MAN1= gimp-1.3.1 gimptool-1.3.1 gimp-remote-1.3.1
|
MAN1= gimp-1.3.1 gimptool-1.3.1 gimp-remote-1.3.1
|
||||||
MAN5= gimprc-1.3.5
|
MAN5= gimprc-1.3.5
|
||||||
|
|
||||||
|
.if defined(WITH_PYTHON)
|
||||||
|
USE_PYTHON= yes
|
||||||
|
BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/_gtkmodule.so:${PORTSDIR}/x11-toolkits/py-gtk2
|
||||||
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/_gtkmodule.so:${PORTSDIR}/x11-toolkits/py-gtk2
|
||||||
|
CONFIGURE_ARGS+= --enable-python
|
||||||
|
PLIST_SUB+= PYTHON:=""
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+= --disable-python
|
||||||
|
PLIST_SUB+= PYTHON:="@comment "
|
||||||
|
.endif
|
||||||
|
|
||||||
.if exists(${X11BASE}/libdata/pkgconfig/libpanelapplet-2.0.pc)
|
.if exists(${X11BASE}/libdata/pkgconfig/libpanelapplet-2.0.pc)
|
||||||
RUN_DEPENDS+= gnome-panel:${PORTSDIR}/x11/gnomepanel
|
RUN_DEPENDS+= gnome-panel:${PORTSDIR}/x11/gnomepanel
|
||||||
CONFIGURE_ARGS+= --with-gnome-desktop=${X11BASE}/share/gnome/applications
|
CONFIGURE_ARGS+= --with-gnome-datadir=${X11BASE}/share/gnome
|
||||||
PLIST_SUB+= GNOME:=""
|
PLIST_SUB+= GNOME:=""
|
||||||
.else
|
.else
|
||||||
PLIST_SUB+= GNOME:="@comment "
|
PLIST_SUB+= GNOME:="@comment "
|
||||||
|
@ -71,28 +79,11 @@ PLIST_SUB+= GNOME:="@comment "
|
||||||
#LIB_DEPENDS+= gtkhtml-2.0:${PORTSDIR}/www/libgtkhtml
|
#LIB_DEPENDS+= gtkhtml-2.0:${PORTSDIR}/www/libgtkhtml
|
||||||
#.endif
|
#.endif
|
||||||
|
|
||||||
do-extract:
|
pre-everything::
|
||||||
@${MKDIR} ${WRKDIR}
|
@${ECHO_MSG} ""
|
||||||
@(cd ${WRKDIR} && ${BZIP2_CMD} -dc ${GIMP_DISTFILE} | ${TAR} -xf -)
|
@${ECHO_MSG} "gimp-devel has the following tunable option(s):"
|
||||||
@(cd ${WRKDIR} && ${GZIP_CMD} -dc ${MPEG_DISTFILE} | ${TAR} -xf -)
|
@${ECHO_MSG} ""
|
||||||
@(${FIND} ${MPEG_WRKSRC} -type f | ${XARGS} ${CHMOD} u+w)
|
@${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support"
|
||||||
|
@${ECHO_MSG} ""
|
||||||
pre-configure:
|
|
||||||
@(cd ${MPEG_WRKSRC} && \
|
|
||||||
${SETENV} CC="${CC}" CXX="${CXX}" \
|
|
||||||
CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
|
|
||||||
INSTALL="/usr/bin/install -c -o ${BINOWN} -g ${BINGRP}" \
|
|
||||||
INSTALL_DATA="${INSTALL_DATA}" \
|
|
||||||
INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
|
|
||||||
INSTALL_SCRIPT="${INSTALL_SCRIPT}" \
|
|
||||||
${MPEG_CONFIGURE_ENV} ./configure ${MPEG_CONFIGURE_ARGS})
|
|
||||||
@(cd ${MPEG_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
|
|
||||||
|
|
||||||
post-patch:
|
|
||||||
@${REINPLACE_CMD} -e 's|-lmpeg|${MPEG_WRKSRC}/libmpeg.a|g' \
|
|
||||||
${WRKSRC}/configure
|
|
||||||
@(cd ${MPEG_WRKSRC} ; \
|
|
||||||
${GREP} -r -l "<malloc.h>" * | \
|
|
||||||
${XARGS} ${REINPLACE_CMD} -e "s/<malloc.h>/<stdlib.h>/")
|
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
MD5 (gimp-1.3.11.tar.bz2) = df2e753e1ad951b52f790b8392091a46
|
MD5 (gimp-1.3.12.tar.bz2) = 1f3eda10fc8e6379e5578f21a925e2be
|
||||||
MD5 (mpeg_lib-1.3.1.tar.gz) = 9d803be0073f42acf87d5fbb339a183b
|
MD5 (mpeg_lib-1.3.1.tar.gz) = 9d803be0073f42acf87d5fbb339a183b
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
--- ../mpeg_lib-1.3.1/Makefile.in.orig Thu Nov 26 11:03:29 1998
|
|
||||||
+++ ../mpeg_lib-1.3.1/Makefile.in Tue Jul 9 22:28:11 2002
|
|
||||||
@@ -19,7 +19,7 @@
|
|
||||||
exec_prefix = @exec_prefix@
|
|
||||||
INSTALL_INCLUDE = @includedir@
|
|
||||||
INSTALL_LIBRARY = @libdir@
|
|
||||||
-INSTALL = @INSTALL@
|
|
||||||
+INSTALL_DATA = @INSTALL_DATA@
|
|
||||||
|
|
||||||
# Other miscellaneous programs
|
|
||||||
AR = @AR@
|
|
||||||
@@ -67,10 +67,9 @@
|
|
||||||
$(CC) -shared -o $(SHLIB) $(LIBOBJ)
|
|
||||||
|
|
||||||
install: $(LIBRARY)
|
|
||||||
- $(INSTALL) -d $(INSTALL_INCLUDE) $(INSTALL_LIBRARY)
|
|
||||||
- $(INSTALL) -m 0644 $(HEADER) $(INSTALL_INCLUDE)/$(HEADER)
|
|
||||||
- $(INSTALL) -m 0644 $(LIBRARY) $(INSTALL_LIBRARY)/$(LIBRARY)
|
|
||||||
- @if test -f $(SHLIB) ; then echo "warning: $(SHLIB) *not* installed (installing shared libraries is too system-specific)" ; fi
|
|
||||||
+ $(MKDIR) $(INSTALL_INCLUDE) $(INSTALL_LIBRARY)
|
|
||||||
+ $(INSTALL_DATA) $(HEADER) $(INSTALL_INCLUDE)/$(HEADER)
|
|
||||||
+ $(INSTALL_DATA) $(LIBRARY) $(INSTALL_LIBRARY)/$(LIBRARY)
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f $(LIBRARY) $(EXTRAS) $(LIBOBJ) core
|
|
|
@ -1,23 +0,0 @@
|
||||||
--- ../mpeg_lib-1.3.1/video.c.orig Sat Jul 24 13:00:51 1999
|
|
||||||
+++ ../mpeg_lib-1.3.1/video.c Tue Aug 31 23:11:56 1999
|
|
||||||
@@ -49,6 +49,10 @@
|
|
||||||
#include "proto.h"
|
|
||||||
#include "my_dmalloc.h"
|
|
||||||
|
|
||||||
+#ifdef _HAVE_PARAM_H
|
|
||||||
+#include <sys/param.h>
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
/* Declarations of functions. */
|
|
||||||
static void ReconIMBlock(VidStream *,int);
|
|
||||||
static void ReconPMBlock(VidStream *,int,int,int,int);
|
|
||||||
@@ -445,7 +449,9 @@
|
|
||||||
static int num_calls = 0;
|
|
||||||
unsigned int data;
|
|
||||||
int i, status;
|
|
||||||
+#if BSD < 199103
|
|
||||||
long int ftell (FILE *stream);
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
/* If vid_stream is null, create new VidStream structure. */
|
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
|
|
||||||
$FreeBSD$
|
|
||||||
|
|
||||||
--- Makefile.in 2002/05/17 18:44:19 1.1
|
|
||||||
+++ Makefile.in 2002/05/17 18:44:46
|
|
||||||
@@ -185,7 +185,7 @@
|
|
||||||
|
|
||||||
bin_SCRIPTS = gimptool-1.3 @GIMPINSTALL@
|
|
||||||
|
|
||||||
-pkgconfigdir = $(libdir)/pkgconfig
|
|
||||||
+pkgconfigdir = $(prefix)/libdata/pkgconfig
|
|
||||||
pkgconfig_DATA = gimp-1.3.pc gimpui-1.3.pc
|
|
||||||
|
|
||||||
EXTRA_SCRIPTS = gimpinstall-1.3
|
|
10
graphics/gimpshop/files/patch-app_plug-in_plug-in-shm.c
Normal file
10
graphics/gimpshop/files/patch-app_plug-in_plug-in-shm.c
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
--- app/plug-in/plug-in-shm.c.orig Wed Feb 19 01:40:37 2003
|
||||||
|
+++ app/plug-in/plug-in-shm.c Wed Feb 19 01:40:49 2003
|
||||||
|
@@ -17,6 +17,7 @@
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
+#include <sys/types.h>
|
||||||
|
|
||||||
|
#ifdef HAVE_IPC_H
|
||||||
|
#include <sys/ipc.h>
|
|
@ -1 +0,0 @@
|
||||||
A GNU Image Manipulation Program (unstable development version)
|
|
|
@ -71,6 +71,7 @@ include/gimp-1.3/libgimpbase/gimpparasite.h
|
||||||
include/gimp-1.3/libgimpbase/gimpparasiteio.h
|
include/gimp-1.3/libgimpbase/gimpparasiteio.h
|
||||||
include/gimp-1.3/libgimpbase/gimpsignal.h
|
include/gimp-1.3/libgimpbase/gimpsignal.h
|
||||||
include/gimp-1.3/libgimpbase/gimpunit.h
|
include/gimp-1.3/libgimpbase/gimpunit.h
|
||||||
|
include/gimp-1.3/libgimpbase/gimputils.h
|
||||||
include/gimp-1.3/libgimpbase/gimpversion.h
|
include/gimp-1.3/libgimpbase/gimpversion.h
|
||||||
include/gimp-1.3/libgimpcolor/gimpadaptivesupersample.h
|
include/gimp-1.3/libgimpcolor/gimpadaptivesupersample.h
|
||||||
include/gimp-1.3/libgimpcolor/gimpbilinear.h
|
include/gimp-1.3/libgimpcolor/gimpbilinear.h
|
||||||
|
@ -107,6 +108,7 @@ include/gimp-1.3/libgimpwidgets/gimpcolorselector.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimpdialog.h
|
include/gimp-1.3/libgimpwidgets/gimpdialog.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimpfileselection.h
|
include/gimp-1.3/libgimpwidgets/gimpfileselection.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimphelpui.h
|
include/gimp-1.3/libgimpwidgets/gimphelpui.h
|
||||||
|
include/gimp-1.3/libgimpwidgets/gimpmemsizeentry.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimpoffsetarea.h
|
include/gimp-1.3/libgimpwidgets/gimpoffsetarea.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimppatheditor.h
|
include/gimp-1.3/libgimpwidgets/gimppatheditor.h
|
||||||
include/gimp-1.3/libgimpwidgets/gimppickbutton.h
|
include/gimp-1.3/libgimpwidgets/gimppickbutton.h
|
||||||
|
@ -150,6 +152,7 @@ lib/libgimpwidgets-1.3.so.%%SHLIBVER%%
|
||||||
libdata/pkgconfig/gimp-1.3.pc
|
libdata/pkgconfig/gimp-1.3.pc
|
||||||
libdata/pkgconfig/gimpui-1.3.pc
|
libdata/pkgconfig/gimpui-1.3.pc
|
||||||
libexec/gimp/1.3/environ/default.env
|
libexec/gimp/1.3/environ/default.env
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/environ/pygimp.env
|
||||||
libexec/gimp/1.3/modules/libcdisplay_colorblind.so
|
libexec/gimp/1.3/modules/libcdisplay_colorblind.so
|
||||||
libexec/gimp/1.3/modules/libcdisplay_gamma.so
|
libexec/gimp/1.3/modules/libcdisplay_gamma.so
|
||||||
libexec/gimp/1.3/modules/libcdisplay_highcontrast.so
|
libexec/gimp/1.3/modules/libcdisplay_highcontrast.so
|
||||||
|
@ -177,7 +180,9 @@ libexec/gimp/1.3/plug-ins/bumpmap
|
||||||
libexec/gimp/1.3/plug-ins/bz2
|
libexec/gimp/1.3/plug-ins/bz2
|
||||||
libexec/gimp/1.3/plug-ins/c_astretch
|
libexec/gimp/1.3/plug-ins/c_astretch
|
||||||
libexec/gimp/1.3/plug-ins/checkerboard
|
libexec/gimp/1.3/plug-ins/checkerboard
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/clothify.py
|
||||||
libexec/gimp/1.3/plug-ins/color_enhance
|
libexec/gimp/1.3/plug-ins/color_enhance
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/colorhtml.py
|
||||||
libexec/gimp/1.3/plug-ins/colorify
|
libexec/gimp/1.3/plug-ins/colorify
|
||||||
libexec/gimp/1.3/plug-ins/colortoalpha
|
libexec/gimp/1.3/plug-ins/colortoalpha
|
||||||
libexec/gimp/1.3/plug-ins/compose
|
libexec/gimp/1.3/plug-ins/compose
|
||||||
|
@ -202,6 +207,7 @@ libexec/gimp/1.3/plug-ins/film
|
||||||
libexec/gimp/1.3/plug-ins/fits
|
libexec/gimp/1.3/plug-ins/fits
|
||||||
libexec/gimp/1.3/plug-ins/flame
|
libexec/gimp/1.3/plug-ins/flame
|
||||||
libexec/gimp/1.3/plug-ins/flarefx
|
libexec/gimp/1.3/plug-ins/flarefx
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/foggify.py
|
||||||
libexec/gimp/1.3/plug-ins/fp
|
libexec/gimp/1.3/plug-ins/fp
|
||||||
libexec/gimp/1.3/plug-ins/fractaltrace
|
libexec/gimp/1.3/plug-ins/fractaltrace
|
||||||
libexec/gimp/1.3/plug-ins/gauss_iir
|
libexec/gimp/1.3/plug-ins/gauss_iir
|
||||||
|
@ -216,11 +222,13 @@ libexec/gimp/1.3/plug-ins/gicon
|
||||||
libexec/gimp/1.3/plug-ins/gif
|
libexec/gimp/1.3/plug-ins/gif
|
||||||
libexec/gimp/1.3/plug-ins/gifload
|
libexec/gimp/1.3/plug-ins/gifload
|
||||||
libexec/gimp/1.3/plug-ins/gih
|
libexec/gimp/1.3/plug-ins/gih
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/gimpcons.py
|
||||||
libexec/gimp/1.3/plug-ins/gimpressionist
|
libexec/gimp/1.3/plug-ins/gimpressionist
|
||||||
libexec/gimp/1.3/plug-ins/glasstile
|
libexec/gimp/1.3/plug-ins/glasstile
|
||||||
libexec/gimp/1.3/plug-ins/gqbist
|
libexec/gimp/1.3/plug-ins/gqbist
|
||||||
libexec/gimp/1.3/plug-ins/gradmap
|
libexec/gimp/1.3/plug-ins/gradmap
|
||||||
libexec/gimp/1.3/plug-ins/grid
|
libexec/gimp/1.3/plug-ins/grid
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/gtkcons.py
|
||||||
libexec/gimp/1.3/plug-ins/gtm
|
libexec/gimp/1.3/plug-ins/gtm
|
||||||
libexec/gimp/1.3/plug-ins/guillotine
|
libexec/gimp/1.3/plug-ins/guillotine
|
||||||
libexec/gimp/1.3/plug-ins/gz
|
libexec/gimp/1.3/plug-ins/gz
|
||||||
|
@ -241,7 +249,6 @@ libexec/gimp/1.3/plug-ins/max_rgb
|
||||||
libexec/gimp/1.3/plug-ins/maze
|
libexec/gimp/1.3/plug-ins/maze
|
||||||
libexec/gimp/1.3/plug-ins/mblur
|
libexec/gimp/1.3/plug-ins/mblur
|
||||||
libexec/gimp/1.3/plug-ins/mosaic
|
libexec/gimp/1.3/plug-ins/mosaic
|
||||||
libexec/gimp/1.3/plug-ins/mpeg
|
|
||||||
libexec/gimp/1.3/plug-ins/newsprint
|
libexec/gimp/1.3/plug-ins/newsprint
|
||||||
libexec/gimp/1.3/plug-ins/nlfilt
|
libexec/gimp/1.3/plug-ins/nlfilt
|
||||||
libexec/gimp/1.3/plug-ins/noisify
|
libexec/gimp/1.3/plug-ins/noisify
|
||||||
|
@ -252,6 +259,7 @@ libexec/gimp/1.3/plug-ins/pagecurl
|
||||||
libexec/gimp/1.3/plug-ins/papertile
|
libexec/gimp/1.3/plug-ins/papertile
|
||||||
libexec/gimp/1.3/plug-ins/pat
|
libexec/gimp/1.3/plug-ins/pat
|
||||||
libexec/gimp/1.3/plug-ins/pcx
|
libexec/gimp/1.3/plug-ins/pcx
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/pdbbrowse.py
|
||||||
libexec/gimp/1.3/plug-ins/pix
|
libexec/gimp/1.3/plug-ins/pix
|
||||||
libexec/gimp/1.3/plug-ins/pixelize
|
libexec/gimp/1.3/plug-ins/pixelize
|
||||||
libexec/gimp/1.3/plug-ins/plasma
|
libexec/gimp/1.3/plug-ins/plasma
|
||||||
|
@ -262,6 +270,7 @@ libexec/gimp/1.3/plug-ins/polar
|
||||||
libexec/gimp/1.3/plug-ins/print
|
libexec/gimp/1.3/plug-ins/print
|
||||||
libexec/gimp/1.3/plug-ins/ps
|
libexec/gimp/1.3/plug-ins/ps
|
||||||
libexec/gimp/1.3/plug-ins/psd
|
libexec/gimp/1.3/plug-ins/psd
|
||||||
|
libexec/gimp/1.3/plug-ins/psd_save
|
||||||
libexec/gimp/1.3/plug-ins/psp
|
libexec/gimp/1.3/plug-ins/psp
|
||||||
libexec/gimp/1.3/plug-ins/randomize
|
libexec/gimp/1.3/plug-ins/randomize
|
||||||
libexec/gimp/1.3/plug-ins/rcm
|
libexec/gimp/1.3/plug-ins/rcm
|
||||||
|
@ -275,6 +284,7 @@ libexec/gimp/1.3/plug-ins/sel2path
|
||||||
libexec/gimp/1.3/plug-ins/sel_gauss
|
libexec/gimp/1.3/plug-ins/sel_gauss
|
||||||
libexec/gimp/1.3/plug-ins/semiflatten
|
libexec/gimp/1.3/plug-ins/semiflatten
|
||||||
libexec/gimp/1.3/plug-ins/sgi
|
libexec/gimp/1.3/plug-ins/sgi
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/shadow_bevel.py
|
||||||
libexec/gimp/1.3/plug-ins/sharpen
|
libexec/gimp/1.3/plug-ins/sharpen
|
||||||
libexec/gimp/1.3/plug-ins/shift
|
libexec/gimp/1.3/plug-ins/shift
|
||||||
libexec/gimp/1.3/plug-ins/sinus
|
libexec/gimp/1.3/plug-ins/sinus
|
||||||
|
@ -282,6 +292,8 @@ libexec/gimp/1.3/plug-ins/smooth_palette
|
||||||
libexec/gimp/1.3/plug-ins/snoise
|
libexec/gimp/1.3/plug-ins/snoise
|
||||||
libexec/gimp/1.3/plug-ins/sobel
|
libexec/gimp/1.3/plug-ins/sobel
|
||||||
libexec/gimp/1.3/plug-ins/sparkle
|
libexec/gimp/1.3/plug-ins/sparkle
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/sphere.py
|
||||||
|
libexec/gimp/1.3/plug-ins/spheredesigner
|
||||||
libexec/gimp/1.3/plug-ins/spread
|
libexec/gimp/1.3/plug-ins/spread
|
||||||
libexec/gimp/1.3/plug-ins/struc
|
libexec/gimp/1.3/plug-ins/struc
|
||||||
libexec/gimp/1.3/plug-ins/sunras
|
libexec/gimp/1.3/plug-ins/sunras
|
||||||
|
@ -302,6 +314,7 @@ libexec/gimp/1.3/plug-ins/warp
|
||||||
libexec/gimp/1.3/plug-ins/waves
|
libexec/gimp/1.3/plug-ins/waves
|
||||||
libexec/gimp/1.3/plug-ins/webbrowser
|
libexec/gimp/1.3/plug-ins/webbrowser
|
||||||
libexec/gimp/1.3/plug-ins/whirlpinch
|
libexec/gimp/1.3/plug-ins/whirlpinch
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/plug-ins/whirlpinch.py
|
||||||
libexec/gimp/1.3/plug-ins/wind
|
libexec/gimp/1.3/plug-ins/wind
|
||||||
libexec/gimp/1.3/plug-ins/wmf
|
libexec/gimp/1.3/plug-ins/wmf
|
||||||
libexec/gimp/1.3/plug-ins/xbm
|
libexec/gimp/1.3/plug-ins/xbm
|
||||||
|
@ -309,6 +322,22 @@ libexec/gimp/1.3/plug-ins/xjt
|
||||||
libexec/gimp/1.3/plug-ins/xpm
|
libexec/gimp/1.3/plug-ins/xpm
|
||||||
libexec/gimp/1.3/plug-ins/xwd
|
libexec/gimp/1.3/plug-ins/xwd
|
||||||
libexec/gimp/1.3/plug-ins/zealouscrop
|
libexec/gimp/1.3/plug-ins/zealouscrop
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpenums.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpenums.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpenums.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpfu.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpfu.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpfu.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpmodule.so
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpplugin.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpplugin.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpplugin.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpshelf.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpshelf.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpshelf.pyo
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpui.py
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpui.pyc
|
||||||
|
%%PYTHON:%%libexec/gimp/1.3/python/gimpui.pyo
|
||||||
share/aclocal/gimp-1.4.m4
|
share/aclocal/gimp-1.4.m4
|
||||||
share/doc/gimp/libgimp/gimpdefinitions.html
|
share/doc/gimp/libgimp/gimpdefinitions.html
|
||||||
share/doc/gimp/libgimp/home.png
|
share/doc/gimp/libgimp/home.png
|
||||||
|
@ -335,7 +364,6 @@ share/doc/gimp/libgimp/libgimp-gimpimage.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimplayer.html
|
share/doc/gimp/libgimp/libgimp-gimplayer.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpmenu.html
|
share/doc/gimp/libgimp/libgimp-gimpmenu.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpmessage.html
|
share/doc/gimp/libgimp/libgimp-gimpmessage.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpmisc.html
|
|
||||||
share/doc/gimp/libgimp/libgimp-gimppalette.html
|
share/doc/gimp/libgimp/libgimp-gimppalette.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimppatterns.html
|
share/doc/gimp/libgimp/libgimp-gimppatterns.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimppixelrgn.html
|
share/doc/gimp/libgimp/libgimp-gimppixelrgn.html
|
||||||
|
@ -347,12 +375,15 @@ share/doc/gimp/libgimp/libgimp-gimptile.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimptools.html
|
share/doc/gimp/libgimp/libgimp-gimptools.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpui.html
|
share/doc/gimp/libgimp/libgimp-gimpui.html
|
||||||
share/doc/gimp/libgimp/libgimp-gimpundo.html
|
share/doc/gimp/libgimp/libgimp-gimpundo.html
|
||||||
|
share/doc/gimp/libgimp/libgimp.devhelp
|
||||||
share/doc/gimp/libgimp/libgimp.html
|
share/doc/gimp/libgimp/libgimp.html
|
||||||
share/doc/gimp/libgimp/libgimpui.html
|
share/doc/gimp/libgimp/libgimpui.html
|
||||||
share/doc/gimp/libgimp/right.png
|
share/doc/gimp/libgimp/right.png
|
||||||
share/doc/gimp/libgimp/up.png
|
share/doc/gimp/libgimp/up.png
|
||||||
|
share/doc/gimp/libgimpbase/home.png
|
||||||
share/doc/gimp/libgimpbase/index.html
|
share/doc/gimp/libgimpbase/index.html
|
||||||
share/doc/gimp/libgimpbase/index.sgml
|
share/doc/gimp/libgimpbase/index.sgml
|
||||||
|
share/doc/gimp/libgimpbase/left.png
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpenv.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpenv.html
|
||||||
|
@ -362,63 +393,180 @@ share/doc/gimp/libgimpbase/libgimpbase-gimpparasiteio.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpprotocol.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpprotocol.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpsignal.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpsignal.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html
|
||||||
|
share/doc/gimp/libgimpbase/libgimpbase-gimputils.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html
|
||||||
share/doc/gimp/libgimpbase/libgimpbase-gimpwire.html
|
share/doc/gimp/libgimpbase/libgimpbase-gimpwire.html
|
||||||
|
share/doc/gimp/libgimpbase/libgimpbase.devhelp
|
||||||
share/doc/gimp/libgimpbase/libgimpbase.html
|
share/doc/gimp/libgimpbase/libgimpbase.html
|
||||||
|
share/doc/gimp/libgimpbase/right.png
|
||||||
|
share/doc/gimp/libgimpbase/up.png
|
||||||
|
share/doc/gimp/libgimpcolor/home.png
|
||||||
share/doc/gimp/libgimpcolor/index.html
|
share/doc/gimp/libgimpcolor/index.html
|
||||||
share/doc/gimp/libgimpcolor/index.sgml
|
share/doc/gimp/libgimpcolor/index.sgml
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimpadaptivesupersample.html
|
share/doc/gimp/libgimpcolor/left.png
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimpbilinear.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimpcolorspace.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpBilinear.html
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimphsv.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorSpace.html
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor-gimprgb.html
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpHSV.html
|
||||||
|
share/doc/gimp/libgimpcolor/libgimpcolor-GimpRGB.html
|
||||||
|
share/doc/gimp/libgimpcolor/libgimpcolor.devhelp
|
||||||
share/doc/gimp/libgimpcolor/libgimpcolor.html
|
share/doc/gimp/libgimpcolor/libgimpcolor.html
|
||||||
|
share/doc/gimp/libgimpcolor/right.png
|
||||||
|
share/doc/gimp/libgimpcolor/up.png
|
||||||
|
share/doc/gimp/libgimpmath/home.png
|
||||||
share/doc/gimp/libgimpmath/index.html
|
share/doc/gimp/libgimpmath/index.html
|
||||||
share/doc/gimp/libgimpmath/index.sgml
|
share/doc/gimp/libgimpmath/index.sgml
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpmath.html
|
share/doc/gimp/libgimpmath/left.png
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpmatrix.html
|
share/doc/gimp/libgimpmath/libgimpmath-GimpMD5.html
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpmd5.html
|
share/doc/gimp/libgimpmath/libgimpmath-GimpMath.html
|
||||||
share/doc/gimp/libgimpmath/libgimpmath-gimpvector.html
|
share/doc/gimp/libgimpmath/libgimpmath-GimpMatrix.html
|
||||||
|
share/doc/gimp/libgimpmath/libgimpmath-GimpVector.html
|
||||||
|
share/doc/gimp/libgimpmath/libgimpmath.devhelp
|
||||||
share/doc/gimp/libgimpmath/libgimpmath.html
|
share/doc/gimp/libgimpmath/libgimpmath.html
|
||||||
share/doc/gimp/libgimpmodule/gimpmodule.html
|
share/doc/gimp/libgimpmath/right.png
|
||||||
share/doc/gimp/libgimpmodule/gimpmoduledb.html
|
share/doc/gimp/libgimpmath/up.png
|
||||||
|
share/doc/gimp/libgimpmodule/GimpModule.html
|
||||||
|
share/doc/gimp/libgimpmodule/GimpModuleDB.html
|
||||||
share/doc/gimp/libgimpmodule/home.png
|
share/doc/gimp/libgimpmodule/home.png
|
||||||
share/doc/gimp/libgimpmodule/index.html
|
share/doc/gimp/libgimpmodule/index.html
|
||||||
share/doc/gimp/libgimpmodule/index.sgml
|
share/doc/gimp/libgimpmodule/index.sgml
|
||||||
share/doc/gimp/libgimpmodule/left.png
|
share/doc/gimp/libgimpmodule/left.png
|
||||||
|
share/doc/gimp/libgimpmodule/libgimpmodule.devhelp
|
||||||
share/doc/gimp/libgimpmodule/libgimpmodule.html
|
share/doc/gimp/libgimpmodule/libgimpmodule.html
|
||||||
share/doc/gimp/libgimpmodule/right.png
|
share/doc/gimp/libgimpmodule/right.png
|
||||||
share/doc/gimp/libgimpmodule/up.png
|
share/doc/gimp/libgimpmodule/up.png
|
||||||
share/doc/gimp/libgimpwidgets/gimpbutton.html
|
share/doc/gimp/libgimpwidgets/GimpButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpchainbutton.html
|
share/doc/gimp/libgimpwidgets/GimpChainButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorbutton.html
|
share/doc/gimp/libgimpwidgets/GimpColorButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolordisplay.html
|
share/doc/gimp/libgimpwidgets/GimpColorDisplay.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolornotebook.html
|
share/doc/gimp/libgimpwidgets/GimpColorNotebook.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorscale.html
|
share/doc/gimp/libgimpwidgets/GimpColorScale.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorscales.html
|
share/doc/gimp/libgimpwidgets/GimpColorScales.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorselect.html
|
share/doc/gimp/libgimpwidgets/GimpColorSelect.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpcolorselector.html
|
share/doc/gimp/libgimpwidgets/GimpColorSelector.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpdialog.html
|
share/doc/gimp/libgimpwidgets/GimpDialog.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpfileselection.html
|
share/doc/gimp/libgimpwidgets/GimpFileSelection.html
|
||||||
share/doc/gimp/libgimpwidgets/gimppatheditor.html
|
share/doc/gimp/libgimpwidgets/GimpMemsizeEntry.html
|
||||||
share/doc/gimp/libgimpwidgets/gimppickbutton.html
|
share/doc/gimp/libgimpwidgets/GimpPathEditor.html
|
||||||
share/doc/gimp/libgimpwidgets/gimppixmap.html
|
share/doc/gimp/libgimpwidgets/GimpPickButton.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpsizeentry.html
|
share/doc/gimp/libgimpwidgets/GimpPixmap.html
|
||||||
share/doc/gimp/libgimpwidgets/gimpunitmenu.html
|
share/doc/gimp/libgimpwidgets/GimpSizeEntry.html
|
||||||
|
share/doc/gimp/libgimpwidgets/GimpUnitMenu.html
|
||||||
share/doc/gimp/libgimpwidgets/home.png
|
share/doc/gimp/libgimpwidgets/home.png
|
||||||
share/doc/gimp/libgimpwidgets/index.html
|
share/doc/gimp/libgimpwidgets/index.html
|
||||||
share/doc/gimp/libgimpwidgets/index.sgml
|
share/doc/gimp/libgimpwidgets/index.sgml
|
||||||
share/doc/gimp/libgimpwidgets/left.png
|
share/doc/gimp/libgimpwidgets/left.png
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpColorArea.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpHelpUI.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpQueryBox.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpStock.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpWidgets.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-colordisplay.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-colordisplay.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-colorselector.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-colorselector.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpcolorarea.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimphelpui.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpquerybox.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpstock.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpwidgets.html
|
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-utils.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-utils.html
|
||||||
share/doc/gimp/libgimpwidgets/libgimpwidgets-widgets.html
|
share/doc/gimp/libgimpwidgets/libgimpwidgets-widgets.html
|
||||||
|
share/doc/gimp/libgimpwidgets/libgimpwidgets.devhelp
|
||||||
share/doc/gimp/libgimpwidgets/right.png
|
share/doc/gimp/libgimpwidgets/right.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-anchor-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-char-picker-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-picker-black-18.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-picker-gray-18.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-picker-white-18.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-color-triangle-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-convert-grayscale-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-convert-indexed-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-convert-rgb-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-default-colors-12.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-duplicate-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-edit-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-eye-20.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-east-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-north-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-north-east-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-north-west-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-south-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-south-east-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-south-west-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-gravity-west-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-hchain-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-hchain-broken-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-info-64.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-invert-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-layer-to-imagesize-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-letter-spacing-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-line-spacing-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-linked-20.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-merge-down-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-navigation-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-paste-as-new-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-paste-into-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-path-stroke-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-plugin-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-qmask-off-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-qmask-on-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-reset-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-reshow-filter-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-resize-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-rotate-180-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-rotate-270-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-rotate-90-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-scale-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-add-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-all-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-grow-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-intersect-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-none-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-replace-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-shrink-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-stroke-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-subtract-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-to-channel-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-selection-to-path-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-swap-colors-12.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-airbrush-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-bezier-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-blend-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-blur-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-brightness-contrast-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-bucket-fill-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-by-color-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-clone-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-color-balance-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-color-picker-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-crop-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-curves-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-dodge-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-ellipse-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-eraser-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-flip-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-free-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-fuzzy-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-histogram-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-hue-saturation-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-ink-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-iscissors-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-levels-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-measure-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-move-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-options-16.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-paintbrush-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-path-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-pencil-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-perspective-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-posterize-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-rect-select-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-rotate-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-scale-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-shear-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-smudge-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-text-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-threshold-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-tool-zoom-22.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-vchain-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-vchain-broken-24.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-warning-64.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-wilber-64.png
|
||||||
|
share/doc/gimp/libgimpwidgets/stock-wilber-eek-64.png
|
||||||
share/doc/gimp/libgimpwidgets/up.png
|
share/doc/gimp/libgimpwidgets/up.png
|
||||||
share/gimp/brushes/10x10square.gbr
|
share/gimp/brushes/10x10square.gbr
|
||||||
share/gimp/brushes/10x10squareBlur.gbr
|
share/gimp/brushes/10x10squareBlur.gbr
|
||||||
|
@ -695,7 +843,9 @@ share/gimp/images/gimp_splash.png
|
||||||
share/gimp/images/wilber-icon.png
|
share/gimp/images/wilber-icon.png
|
||||||
share/gimp/images/wilber-tips.png
|
share/gimp/images/wilber-tips.png
|
||||||
share/gimp/images/wilber-wizard.png
|
share/gimp/images/wilber-wizard.png
|
||||||
|
share/gimp/misc/gimp.applications
|
||||||
share/gimp/misc/gimp.desktop
|
share/gimp/misc/gimp.desktop
|
||||||
|
share/gimp/misc/gimp.keys
|
||||||
share/gimp/palettes/Bears.gpl
|
share/gimp/palettes/Bears.gpl
|
||||||
share/gimp/palettes/Bgold.gpl
|
share/gimp/palettes/Bgold.gpl
|
||||||
share/gimp/palettes/Blues.gpl
|
share/gimp/palettes/Blues.gpl
|
||||||
|
@ -829,7 +979,7 @@ share/gimp/scripts/comic-logo.scm
|
||||||
share/gimp/scripts/coolmetal-logo.scm
|
share/gimp/scripts/coolmetal-logo.scm
|
||||||
share/gimp/scripts/copy-visible.scm
|
share/gimp/scripts/copy-visible.scm
|
||||||
share/gimp/scripts/crystal-logo.scm
|
share/gimp/scripts/crystal-logo.scm
|
||||||
share/gimp/scripts/distress_selection.scm
|
share/gimp/scripts/distress-selection.scm
|
||||||
share/gimp/scripts/drop-shadow.scm
|
share/gimp/scripts/drop-shadow.scm
|
||||||
share/gimp/scripts/erase-rows.scm
|
share/gimp/scripts/erase-rows.scm
|
||||||
share/gimp/scripts/fade-outline.scm
|
share/gimp/scripts/fade-outline.scm
|
||||||
|
@ -853,21 +1003,22 @@ share/gimp/scripts/line-nova.scm
|
||||||
share/gimp/scripts/mkbrush.scm
|
share/gimp/scripts/mkbrush.scm
|
||||||
share/gimp/scripts/neon-logo.scm
|
share/gimp/scripts/neon-logo.scm
|
||||||
share/gimp/scripts/news-text.scm
|
share/gimp/scripts/news-text.scm
|
||||||
share/gimp/scripts/old_photo.scm
|
share/gimp/scripts/old-photo.scm
|
||||||
share/gimp/scripts/perspective-shadow.scm
|
share/gimp/scripts/perspective-shadow.scm
|
||||||
share/gimp/scripts/predator.scm
|
share/gimp/scripts/predator.scm
|
||||||
share/gimp/scripts/pupi-button.scm
|
share/gimp/scripts/pupi-button.scm
|
||||||
share/gimp/scripts/rendermap.scm
|
share/gimp/scripts/rendermap.scm
|
||||||
share/gimp/scripts/ripply-anim.scm
|
share/gimp/scripts/ripply-anim.scm
|
||||||
share/gimp/scripts/round-corners.scm
|
share/gimp/scripts/round-corners.scm
|
||||||
share/gimp/scripts/select_to_brush.scm
|
share/gimp/scripts/select-to-brush.scm
|
||||||
share/gimp/scripts/select_to_image.scm
|
share/gimp/scripts/select-to-image.scm
|
||||||
|
share/gimp/scripts/select-to-pattern.scm
|
||||||
share/gimp/scripts/selection-round.scm
|
share/gimp/scripts/selection-round.scm
|
||||||
share/gimp/scripts/slide.scm
|
share/gimp/scripts/slide.scm
|
||||||
share/gimp/scripts/sota-chrome-logo.scm
|
share/gimp/scripts/sota-chrome-logo.scm
|
||||||
share/gimp/scripts/speed-text.scm
|
share/gimp/scripts/speed-text.scm
|
||||||
share/gimp/scripts/sphere.scm
|
share/gimp/scripts/sphere.scm
|
||||||
share/gimp/scripts/spinning_globe.scm
|
share/gimp/scripts/spinning-globe.scm
|
||||||
share/gimp/scripts/starburst-logo.scm
|
share/gimp/scripts/starburst-logo.scm
|
||||||
share/gimp/scripts/starscape-logo.scm
|
share/gimp/scripts/starscape-logo.scm
|
||||||
share/gimp/scripts/swirltile.scm
|
share/gimp/scripts/swirltile.scm
|
||||||
|
@ -912,7 +1063,6 @@ share/gimp/themes/Default/images/preferences/interface.png
|
||||||
share/gimp/themes/Default/images/preferences/monitor.png
|
share/gimp/themes/Default/images/preferences/monitor.png
|
||||||
share/gimp/themes/Default/images/preferences/new-image.png
|
share/gimp/themes/Default/images/preferences/new-image.png
|
||||||
share/gimp/themes/Default/images/preferences/tool-options.png
|
share/gimp/themes/Default/images/preferences/tool-options.png
|
||||||
share/gimp/themes/Default/images/stock-all-16.png
|
|
||||||
share/gimp/themes/Default/images/stock-anchor-16.png
|
share/gimp/themes/Default/images/stock-anchor-16.png
|
||||||
share/gimp/themes/Default/images/stock-char-picker-22.png
|
share/gimp/themes/Default/images/stock-char-picker-22.png
|
||||||
share/gimp/themes/Default/images/stock-color-picker-black-18.png
|
share/gimp/themes/Default/images/stock-color-picker-black-18.png
|
||||||
|
@ -928,7 +1078,14 @@ share/gimp/themes/Default/images/stock-duplicate-16.png
|
||||||
share/gimp/themes/Default/images/stock-edit-16.png
|
share/gimp/themes/Default/images/stock-edit-16.png
|
||||||
share/gimp/themes/Default/images/stock-error-64.png
|
share/gimp/themes/Default/images/stock-error-64.png
|
||||||
share/gimp/themes/Default/images/stock-eye-20.png
|
share/gimp/themes/Default/images/stock-eye-20.png
|
||||||
share/gimp/themes/Default/images/stock-grow-16.png
|
share/gimp/themes/Default/images/stock-gravity-east-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-north-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-north-east-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-north-west-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-south-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-south-east-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-south-west-24.png
|
||||||
|
share/gimp/themes/Default/images/stock-gravity-west-24.png
|
||||||
share/gimp/themes/Default/images/stock-hchain-24.png
|
share/gimp/themes/Default/images/stock-hchain-24.png
|
||||||
share/gimp/themes/Default/images/stock-hchain-broken-24.png
|
share/gimp/themes/Default/images/stock-hchain-broken-24.png
|
||||||
share/gimp/themes/Default/images/stock-info-16.png
|
share/gimp/themes/Default/images/stock-info-16.png
|
||||||
|
@ -943,7 +1100,6 @@ share/gimp/themes/Default/images/stock-lower-16.png
|
||||||
share/gimp/themes/Default/images/stock-merge-down-16.png
|
share/gimp/themes/Default/images/stock-merge-down-16.png
|
||||||
share/gimp/themes/Default/images/stock-navigation-16.png
|
share/gimp/themes/Default/images/stock-navigation-16.png
|
||||||
share/gimp/themes/Default/images/stock-new-16.png
|
share/gimp/themes/Default/images/stock-new-16.png
|
||||||
share/gimp/themes/Default/images/stock-none-16.png
|
|
||||||
share/gimp/themes/Default/images/stock-paste-16.png
|
share/gimp/themes/Default/images/stock-paste-16.png
|
||||||
share/gimp/themes/Default/images/stock-paste-as-new-16.png
|
share/gimp/themes/Default/images/stock-paste-as-new-16.png
|
||||||
share/gimp/themes/Default/images/stock-paste-into-16.png
|
share/gimp/themes/Default/images/stock-paste-into-16.png
|
||||||
|
@ -962,13 +1118,16 @@ share/gimp/themes/Default/images/stock-rotate-270-16.png
|
||||||
share/gimp/themes/Default/images/stock-rotate-90-16.png
|
share/gimp/themes/Default/images/stock-rotate-90-16.png
|
||||||
share/gimp/themes/Default/images/stock-scale-16.png
|
share/gimp/themes/Default/images/stock-scale-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-add-16.png
|
share/gimp/themes/Default/images/stock-selection-add-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-all-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-grow-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-intersect-16.png
|
share/gimp/themes/Default/images/stock-selection-intersect-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-none-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-replace-16.png
|
share/gimp/themes/Default/images/stock-selection-replace-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-selection-shrink-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-stroke-16.png
|
share/gimp/themes/Default/images/stock-selection-stroke-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-subtract-16.png
|
share/gimp/themes/Default/images/stock-selection-subtract-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-to-channel-16.png
|
share/gimp/themes/Default/images/stock-selection-to-channel-16.png
|
||||||
share/gimp/themes/Default/images/stock-selection-to-path-16.png
|
share/gimp/themes/Default/images/stock-selection-to-path-16.png
|
||||||
share/gimp/themes/Default/images/stock-shrink-16.png
|
|
||||||
share/gimp/themes/Default/images/stock-swap-colors-12.png
|
share/gimp/themes/Default/images/stock-swap-colors-12.png
|
||||||
share/gimp/themes/Default/images/stock-tool-airbrush-22.png
|
share/gimp/themes/Default/images/stock-tool-airbrush-22.png
|
||||||
share/gimp/themes/Default/images/stock-tool-bezier-select-22.png
|
share/gimp/themes/Default/images/stock-tool-bezier-select-22.png
|
||||||
|
@ -1015,9 +1174,13 @@ share/gimp/themes/Default/images/stock-warning-16.png
|
||||||
share/gimp/themes/Default/images/stock-warning-24.png
|
share/gimp/themes/Default/images/stock-warning-24.png
|
||||||
share/gimp/themes/Default/images/stock-warning-64.png
|
share/gimp/themes/Default/images/stock-warning-64.png
|
||||||
share/gimp/themes/Default/images/stock-wilber-16.png
|
share/gimp/themes/Default/images/stock-wilber-16.png
|
||||||
|
share/gimp/themes/Default/images/stock-wilber-64.png
|
||||||
share/gimp/themes/Default/images/stock-wilber-eek-64.png
|
share/gimp/themes/Default/images/stock-wilber-eek-64.png
|
||||||
share/gimp/tips/gimp-tips.xml
|
share/gimp/tips/gimp-tips.xml
|
||||||
|
%%GNOME:%%share/gnome/application-registry/gimp-1.3.applications
|
||||||
%%GNOME:%%share/gnome/applications/gimp-1.3.desktop
|
%%GNOME:%%share/gnome/applications/gimp-1.3.desktop
|
||||||
|
%%GNOME:%%share/gnome/mime-info/gimp-1.3.keys
|
||||||
|
%%GNOME:%%share/gnome/pixmaps/gnome-gimp.png
|
||||||
share/locale/ca/LC_MESSAGES/gimp14-libgimp.mo
|
share/locale/ca/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
share/locale/ca/LC_MESSAGES/gimp14-script-fu.mo
|
share/locale/ca/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
share/locale/ca/LC_MESSAGES/gimp14-std-plug-ins.mo
|
share/locale/ca/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
|
@ -1126,6 +1289,10 @@ share/locale/uk/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
share/locale/uk/LC_MESSAGES/gimp14-script-fu.mo
|
share/locale/uk/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
share/locale/uk/LC_MESSAGES/gimp14-std-plug-ins.mo
|
share/locale/uk/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
share/locale/uk/LC_MESSAGES/gimp14.mo
|
share/locale/uk/LC_MESSAGES/gimp14.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/gimp14.mo
|
||||||
share/locale/zh_CN/LC_MESSAGES/gimp14-libgimp.mo
|
share/locale/zh_CN/LC_MESSAGES/gimp14-libgimp.mo
|
||||||
share/locale/zh_CN/LC_MESSAGES/gimp14-script-fu.mo
|
share/locale/zh_CN/LC_MESSAGES/gimp14-script-fu.mo
|
||||||
share/locale/zh_CN/LC_MESSAGES/gimp14-std-plug-ins.mo
|
share/locale/zh_CN/LC_MESSAGES/gimp14-std-plug-ins.mo
|
||||||
|
@ -1161,6 +1328,7 @@ share/locale/zh_TW/LC_MESSAGES/gimp14.mo
|
||||||
@dirrm share/gimp/fractalexplorer
|
@dirrm share/gimp/fractalexplorer
|
||||||
@dirrm share/gimp/brushes
|
@dirrm share/gimp/brushes
|
||||||
@dirrm share/gimp
|
@dirrm share/gimp
|
||||||
|
%%PYTHON:%%@dirrm libexec/gimp/1.3/python
|
||||||
@dirrm libexec/gimp/1.3/plug-ins
|
@dirrm libexec/gimp/1.3/plug-ins
|
||||||
@dirrm libexec/gimp/1.3/modules
|
@dirrm libexec/gimp/1.3/modules
|
||||||
@dirrm libexec/gimp/1.3/environ
|
@dirrm libexec/gimp/1.3/environ
|
||||||
|
|
Loading…
Add table
Reference in a new issue