diff options
author | marcus <marcus@FreeBSD.org> | 2003-02-19 08:43:29 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-02-19 08:43:29 +0000 |
commit | 3f757da56e6b0b1e158d23d5b2bc2d7c080bcdf7 (patch) | |
tree | 3437d367f074a2402b85c92697994aaf6963da63 /graphics | |
parent | 72d10b60107401f79e844c290702fc3bbc928f40 (diff) | |
download | FreeBSD-ports-3f757da56e6b0b1e158d23d5b2bc2d7c080bcdf7.zip FreeBSD-ports-3f757da56e6b0b1e158d23d5b2bc2d7c080bcdf7.tar.gz |
* 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]
Diffstat (limited to 'graphics')
40 files changed, 1215 insertions, 685 deletions
diff --git a/graphics/gimp-app-devel/Makefile b/graphics/gimp-app-devel/Makefile index f9d9f12..0bffc6c 100644 --- a/graphics/gimp-app-devel/Makefile +++ b/graphics/gimp-app-devel/Makefile @@ -39,6 +39,8 @@ USE_X_PREFIX= yes USE_XPM= yes USE_GMAKE= yes USE_LIBTOOL= yes +USE_GNOMENG= yes +USE_GNOME= gnomehack INSTALLS_SHLIB= yes USE_REINPLACE= yes LIBTOOLFLAGS= --disable-ltlibs --release-ignore @@ -46,22 +48,28 @@ PLIST_SUB= SHLIBVER="${SHLIBVER}" CONFIGURE_ARGS= --disable-perl \ --with-html-dir=${PREFIX}/share/doc/gimp \ --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" 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 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) 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:="" .else PLIST_SUB+= GNOME:="@comment " @@ -71,28 +79,11 @@ PLIST_SUB+= GNOME:="@comment " #LIB_DEPENDS+= gtkhtml-2.0:${PORTSDIR}/www/libgtkhtml #.endif -do-extract: - @${MKDIR} ${WRKDIR} - @(cd ${WRKDIR} && ${BZIP2_CMD} -dc ${GIMP_DISTFILE} | ${TAR} -xf -) - @(cd ${WRKDIR} && ${GZIP_CMD} -dc ${MPEG_DISTFILE} | ${TAR} -xf -) - @(${FIND} ${MPEG_WRKSRC} -type f | ${XARGS} ${CHMOD} u+w) - -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>/") +pre-everything:: + @${ECHO_MSG} "" + @${ECHO_MSG} "gimp-devel has the following tunable option(s):" + @${ECHO_MSG} "" + @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support" + @${ECHO_MSG} "" .include <bsd.port.mk> diff --git a/graphics/gimp-app-devel/distinfo b/graphics/gimp-app-devel/distinfo index 0c29a28..36d5b38 100644 --- a/graphics/gimp-app-devel/distinfo +++ b/graphics/gimp-app-devel/distinfo @@ -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 diff --git a/graphics/gimp-app-devel/files/patch-..::mpeg_lib-1.3.1::Makefile.in b/graphics/gimp-app-devel/files/patch-..::mpeg_lib-1.3.1::Makefile.in deleted file mode 100644 index e9163f5a..0000000 --- a/graphics/gimp-app-devel/files/patch-..::mpeg_lib-1.3.1::Makefile.in +++ /dev/null @@ -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 diff --git a/graphics/gimp-app-devel/files/patch-..::mpeg_lib-1.3.1::video.c b/graphics/gimp-app-devel/files/patch-..::mpeg_lib-1.3.1::video.c deleted file mode 100644 index 5707b75..0000000 --- a/graphics/gimp-app-devel/files/patch-..::mpeg_lib-1.3.1::video.c +++ /dev/null @@ -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. */ - diff --git a/graphics/gimp-app-devel/files/patch-Makefile.in b/graphics/gimp-app-devel/files/patch-Makefile.in deleted file mode 100644 index 4e49675..0000000 --- a/graphics/gimp-app-devel/files/patch-Makefile.in +++ /dev/null @@ -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 diff --git a/graphics/gimp-app-devel/files/patch-app_plug-in_plug-in-shm.c b/graphics/gimp-app-devel/files/patch-app_plug-in_plug-in-shm.c new file mode 100644 index 0000000..b6a6abe --- /dev/null +++ b/graphics/gimp-app-devel/files/patch-app_plug-in_plug-in-shm.c @@ -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> diff --git a/graphics/gimp-app-devel/pkg-comment b/graphics/gimp-app-devel/pkg-comment deleted file mode 100644 index f51d21c..0000000 --- a/graphics/gimp-app-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A GNU Image Manipulation Program (unstable development version) diff --git a/graphics/gimp-app-devel/pkg-plist b/graphics/gimp-app-devel/pkg-plist index 6073ed2..683e775 100644 --- a/graphics/gimp-app-devel/pkg-plist +++ b/graphics/gimp-app-devel/pkg-plist @@ -71,6 +71,7 @@ include/gimp-1.3/libgimpbase/gimpparasite.h include/gimp-1.3/libgimpbase/gimpparasiteio.h include/gimp-1.3/libgimpbase/gimpsignal.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/libgimpcolor/gimpadaptivesupersample.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/gimpfileselection.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/gimppatheditor.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/gimpui-1.3.pc 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_gamma.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/c_astretch libexec/gimp/1.3/plug-ins/checkerboard +%%PYTHON:%%libexec/gimp/1.3/plug-ins/clothify.py 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/colortoalpha 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/flame 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/fractaltrace 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/gifload 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/glasstile libexec/gimp/1.3/plug-ins/gqbist libexec/gimp/1.3/plug-ins/gradmap 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/guillotine 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/mblur 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/nlfilt 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/pat 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/pixelize 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/ps 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/randomize 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/semiflatten 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/shift 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/sobel 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/struc 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/webbrowser 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/wmf 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/xwd 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/doc/gimp/libgimp/gimpdefinitions.html 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-gimpmenu.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-gimppatterns.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-gimpui.html share/doc/gimp/libgimp/libgimp-gimpundo.html +share/doc/gimp/libgimp/libgimp.devhelp share/doc/gimp/libgimp/libgimp.html share/doc/gimp/libgimp/libgimpui.html share/doc/gimp/libgimp/right.png share/doc/gimp/libgimp/up.png +share/doc/gimp/libgimpbase/home.png share/doc/gimp/libgimpbase/index.html share/doc/gimp/libgimpbase/index.sgml +share/doc/gimp/libgimpbase/left.png share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.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-gimpsignal.html share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html +share/doc/gimp/libgimpbase/libgimpbase-gimputils.html share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html share/doc/gimp/libgimpbase/libgimpbase-gimpwire.html +share/doc/gimp/libgimpbase/libgimpbase.devhelp 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.sgml -share/doc/gimp/libgimpcolor/libgimpcolor-gimpadaptivesupersample.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimpbilinear.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimpcolorspace.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimphsv.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimprgb.html +share/doc/gimp/libgimpcolor/left.png +share/doc/gimp/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpBilinear.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorSpace.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpHSV.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpRGB.html +share/doc/gimp/libgimpcolor/libgimpcolor.devhelp 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.sgml -share/doc/gimp/libgimpmath/libgimpmath-gimpmath.html -share/doc/gimp/libgimpmath/libgimpmath-gimpmatrix.html -share/doc/gimp/libgimpmath/libgimpmath-gimpmd5.html -share/doc/gimp/libgimpmath/libgimpmath-gimpvector.html +share/doc/gimp/libgimpmath/left.png +share/doc/gimp/libgimpmath/libgimpmath-GimpMD5.html +share/doc/gimp/libgimpmath/libgimpmath-GimpMath.html +share/doc/gimp/libgimpmath/libgimpmath-GimpMatrix.html +share/doc/gimp/libgimpmath/libgimpmath-GimpVector.html +share/doc/gimp/libgimpmath/libgimpmath.devhelp share/doc/gimp/libgimpmath/libgimpmath.html -share/doc/gimp/libgimpmodule/gimpmodule.html -share/doc/gimp/libgimpmodule/gimpmoduledb.html +share/doc/gimp/libgimpmath/right.png +share/doc/gimp/libgimpmath/up.png +share/doc/gimp/libgimpmodule/GimpModule.html +share/doc/gimp/libgimpmodule/GimpModuleDB.html share/doc/gimp/libgimpmodule/home.png share/doc/gimp/libgimpmodule/index.html share/doc/gimp/libgimpmodule/index.sgml share/doc/gimp/libgimpmodule/left.png +share/doc/gimp/libgimpmodule/libgimpmodule.devhelp share/doc/gimp/libgimpmodule/libgimpmodule.html share/doc/gimp/libgimpmodule/right.png share/doc/gimp/libgimpmodule/up.png -share/doc/gimp/libgimpwidgets/gimpbutton.html -share/doc/gimp/libgimpwidgets/gimpchainbutton.html -share/doc/gimp/libgimpwidgets/gimpcolorbutton.html -share/doc/gimp/libgimpwidgets/gimpcolordisplay.html -share/doc/gimp/libgimpwidgets/gimpcolornotebook.html -share/doc/gimp/libgimpwidgets/gimpcolorscale.html -share/doc/gimp/libgimpwidgets/gimpcolorscales.html -share/doc/gimp/libgimpwidgets/gimpcolorselect.html -share/doc/gimp/libgimpwidgets/gimpcolorselector.html -share/doc/gimp/libgimpwidgets/gimpdialog.html -share/doc/gimp/libgimpwidgets/gimpfileselection.html -share/doc/gimp/libgimpwidgets/gimppatheditor.html -share/doc/gimp/libgimpwidgets/gimppickbutton.html -share/doc/gimp/libgimpwidgets/gimppixmap.html -share/doc/gimp/libgimpwidgets/gimpsizeentry.html -share/doc/gimp/libgimpwidgets/gimpunitmenu.html +share/doc/gimp/libgimpwidgets/GimpButton.html +share/doc/gimp/libgimpwidgets/GimpChainButton.html +share/doc/gimp/libgimpwidgets/GimpColorButton.html +share/doc/gimp/libgimpwidgets/GimpColorDisplay.html +share/doc/gimp/libgimpwidgets/GimpColorNotebook.html +share/doc/gimp/libgimpwidgets/GimpColorScale.html +share/doc/gimp/libgimpwidgets/GimpColorScales.html +share/doc/gimp/libgimpwidgets/GimpColorSelect.html +share/doc/gimp/libgimpwidgets/GimpColorSelector.html +share/doc/gimp/libgimpwidgets/GimpDialog.html +share/doc/gimp/libgimpwidgets/GimpFileSelection.html +share/doc/gimp/libgimpwidgets/GimpMemsizeEntry.html +share/doc/gimp/libgimpwidgets/GimpPathEditor.html +share/doc/gimp/libgimpwidgets/GimpPickButton.html +share/doc/gimp/libgimpwidgets/GimpPixmap.html +share/doc/gimp/libgimpwidgets/GimpSizeEntry.html +share/doc/gimp/libgimpwidgets/GimpUnitMenu.html share/doc/gimp/libgimpwidgets/home.png share/doc/gimp/libgimpwidgets/index.html share/doc/gimp/libgimpwidgets/index.sgml share/doc/gimp/libgimpwidgets/left.png +share/doc/gimp/libgimpwidgets/libgimpwidgets-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-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-widgets.html +share/doc/gimp/libgimpwidgets/libgimpwidgets.devhelp 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/gimp/brushes/10x10square.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-tips.png share/gimp/images/wilber-wizard.png +share/gimp/misc/gimp.applications share/gimp/misc/gimp.desktop +share/gimp/misc/gimp.keys share/gimp/palettes/Bears.gpl share/gimp/palettes/Bgold.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/copy-visible.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/erase-rows.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/neon-logo.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/predator.scm share/gimp/scripts/pupi-button.scm share/gimp/scripts/rendermap.scm share/gimp/scripts/ripply-anim.scm share/gimp/scripts/round-corners.scm -share/gimp/scripts/select_to_brush.scm -share/gimp/scripts/select_to_image.scm +share/gimp/scripts/select-to-brush.scm +share/gimp/scripts/select-to-image.scm +share/gimp/scripts/select-to-pattern.scm share/gimp/scripts/selection-round.scm share/gimp/scripts/slide.scm share/gimp/scripts/sota-chrome-logo.scm share/gimp/scripts/speed-text.scm share/gimp/scripts/sphere.scm -share/gimp/scripts/spinning_globe.scm +share/gimp/scripts/spinning-globe.scm share/gimp/scripts/starburst-logo.scm share/gimp/scripts/starscape-logo.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/new-image.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-char-picker-22.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-error-64.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-broken-24.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-navigation-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-as-new-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-scale-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-none-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-subtract-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-shrink-16.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-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-64.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/tips/gimp-tips.xml +%%GNOME:%%share/gnome/application-registry/gimp-1.3.applications %%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-script-fu.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-std-plug-ins.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-script-fu.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/brushes @dirrm share/gimp +%%PYTHON:%%@dirrm libexec/gimp/1.3/python @dirrm libexec/gimp/1.3/plug-ins @dirrm libexec/gimp/1.3/modules @dirrm libexec/gimp/1.3/environ diff --git a/graphics/gimp-app/Makefile b/graphics/gimp-app/Makefile index f9d9f12..0bffc6c 100644 --- a/graphics/gimp-app/Makefile +++ b/graphics/gimp-app/Makefile @@ -39,6 +39,8 @@ USE_X_PREFIX= yes USE_XPM= yes USE_GMAKE= yes USE_LIBTOOL= yes +USE_GNOMENG= yes +USE_GNOME= gnomehack INSTALLS_SHLIB= yes USE_REINPLACE= yes LIBTOOLFLAGS= --disable-ltlibs --release-ignore @@ -46,22 +48,28 @@ PLIST_SUB= SHLIBVER="${SHLIBVER}" CONFIGURE_ARGS= --disable-perl \ --with-html-dir=${PREFIX}/share/doc/gimp \ --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" 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 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) 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:="" .else PLIST_SUB+= GNOME:="@comment " @@ -71,28 +79,11 @@ PLIST_SUB+= GNOME:="@comment " #LIB_DEPENDS+= gtkhtml-2.0:${PORTSDIR}/www/libgtkhtml #.endif -do-extract: - @${MKDIR} ${WRKDIR} - @(cd ${WRKDIR} && ${BZIP2_CMD} -dc ${GIMP_DISTFILE} | ${TAR} -xf -) - @(cd ${WRKDIR} && ${GZIP_CMD} -dc ${MPEG_DISTFILE} | ${TAR} -xf -) - @(${FIND} ${MPEG_WRKSRC} -type f | ${XARGS} ${CHMOD} u+w) - -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>/") +pre-everything:: + @${ECHO_MSG} "" + @${ECHO_MSG} "gimp-devel has the following tunable option(s):" + @${ECHO_MSG} "" + @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support" + @${ECHO_MSG} "" .include <bsd.port.mk> diff --git a/graphics/gimp-app/distinfo b/graphics/gimp-app/distinfo index 0c29a28..36d5b38 100644 --- a/graphics/gimp-app/distinfo +++ b/graphics/gimp-app/distinfo @@ -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 diff --git a/graphics/gimp-app/files/patch-..::mpeg_lib-1.3.1::Makefile.in b/graphics/gimp-app/files/patch-..::mpeg_lib-1.3.1::Makefile.in deleted file mode 100644 index e9163f5a..0000000 --- a/graphics/gimp-app/files/patch-..::mpeg_lib-1.3.1::Makefile.in +++ /dev/null @@ -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 diff --git a/graphics/gimp-app/files/patch-..::mpeg_lib-1.3.1::video.c b/graphics/gimp-app/files/patch-..::mpeg_lib-1.3.1::video.c deleted file mode 100644 index 5707b75..0000000 --- a/graphics/gimp-app/files/patch-..::mpeg_lib-1.3.1::video.c +++ /dev/null @@ -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. */ - diff --git a/graphics/gimp-app/files/patch-Makefile.in b/graphics/gimp-app/files/patch-Makefile.in deleted file mode 100644 index 4e49675..0000000 --- a/graphics/gimp-app/files/patch-Makefile.in +++ /dev/null @@ -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 diff --git a/graphics/gimp-app/files/patch-app_plug-in_plug-in-shm.c b/graphics/gimp-app/files/patch-app_plug-in_plug-in-shm.c new file mode 100644 index 0000000..b6a6abe --- /dev/null +++ b/graphics/gimp-app/files/patch-app_plug-in_plug-in-shm.c @@ -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> diff --git a/graphics/gimp-app/pkg-comment b/graphics/gimp-app/pkg-comment deleted file mode 100644 index f51d21c..0000000 --- a/graphics/gimp-app/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A GNU Image Manipulation Program (unstable development version) diff --git a/graphics/gimp-app/pkg-plist b/graphics/gimp-app/pkg-plist index 6073ed2..683e775 100644 --- a/graphics/gimp-app/pkg-plist +++ b/graphics/gimp-app/pkg-plist @@ -71,6 +71,7 @@ include/gimp-1.3/libgimpbase/gimpparasite.h include/gimp-1.3/libgimpbase/gimpparasiteio.h include/gimp-1.3/libgimpbase/gimpsignal.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/libgimpcolor/gimpadaptivesupersample.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/gimpfileselection.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/gimppatheditor.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/gimpui-1.3.pc 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_gamma.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/c_astretch libexec/gimp/1.3/plug-ins/checkerboard +%%PYTHON:%%libexec/gimp/1.3/plug-ins/clothify.py 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/colortoalpha 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/flame 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/fractaltrace 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/gifload 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/glasstile libexec/gimp/1.3/plug-ins/gqbist libexec/gimp/1.3/plug-ins/gradmap 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/guillotine 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/mblur 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/nlfilt 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/pat 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/pixelize 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/ps 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/randomize 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/semiflatten 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/shift 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/sobel 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/struc 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/webbrowser 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/wmf 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/xwd 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/doc/gimp/libgimp/gimpdefinitions.html 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-gimpmenu.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-gimppatterns.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-gimpui.html share/doc/gimp/libgimp/libgimp-gimpundo.html +share/doc/gimp/libgimp/libgimp.devhelp share/doc/gimp/libgimp/libgimp.html share/doc/gimp/libgimp/libgimpui.html share/doc/gimp/libgimp/right.png share/doc/gimp/libgimp/up.png +share/doc/gimp/libgimpbase/home.png share/doc/gimp/libgimpbase/index.html share/doc/gimp/libgimpbase/index.sgml +share/doc/gimp/libgimpbase/left.png share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.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-gimpsignal.html share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html +share/doc/gimp/libgimpbase/libgimpbase-gimputils.html share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html share/doc/gimp/libgimpbase/libgimpbase-gimpwire.html +share/doc/gimp/libgimpbase/libgimpbase.devhelp 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.sgml -share/doc/gimp/libgimpcolor/libgimpcolor-gimpadaptivesupersample.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimpbilinear.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimpcolorspace.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimphsv.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimprgb.html +share/doc/gimp/libgimpcolor/left.png +share/doc/gimp/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpBilinear.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorSpace.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpHSV.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpRGB.html +share/doc/gimp/libgimpcolor/libgimpcolor.devhelp 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.sgml -share/doc/gimp/libgimpmath/libgimpmath-gimpmath.html -share/doc/gimp/libgimpmath/libgimpmath-gimpmatrix.html -share/doc/gimp/libgimpmath/libgimpmath-gimpmd5.html -share/doc/gimp/libgimpmath/libgimpmath-gimpvector.html +share/doc/gimp/libgimpmath/left.png +share/doc/gimp/libgimpmath/libgimpmath-GimpMD5.html +share/doc/gimp/libgimpmath/libgimpmath-GimpMath.html +share/doc/gimp/libgimpmath/libgimpmath-GimpMatrix.html +share/doc/gimp/libgimpmath/libgimpmath-GimpVector.html +share/doc/gimp/libgimpmath/libgimpmath.devhelp share/doc/gimp/libgimpmath/libgimpmath.html -share/doc/gimp/libgimpmodule/gimpmodule.html -share/doc/gimp/libgimpmodule/gimpmoduledb.html +share/doc/gimp/libgimpmath/right.png +share/doc/gimp/libgimpmath/up.png +share/doc/gimp/libgimpmodule/GimpModule.html +share/doc/gimp/libgimpmodule/GimpModuleDB.html share/doc/gimp/libgimpmodule/home.png share/doc/gimp/libgimpmodule/index.html share/doc/gimp/libgimpmodule/index.sgml share/doc/gimp/libgimpmodule/left.png +share/doc/gimp/libgimpmodule/libgimpmodule.devhelp share/doc/gimp/libgimpmodule/libgimpmodule.html share/doc/gimp/libgimpmodule/right.png share/doc/gimp/libgimpmodule/up.png -share/doc/gimp/libgimpwidgets/gimpbutton.html -share/doc/gimp/libgimpwidgets/gimpchainbutton.html -share/doc/gimp/libgimpwidgets/gimpcolorbutton.html -share/doc/gimp/libgimpwidgets/gimpcolordisplay.html -share/doc/gimp/libgimpwidgets/gimpcolornotebook.html -share/doc/gimp/libgimpwidgets/gimpcolorscale.html -share/doc/gimp/libgimpwidgets/gimpcolorscales.html -share/doc/gimp/libgimpwidgets/gimpcolorselect.html -share/doc/gimp/libgimpwidgets/gimpcolorselector.html -share/doc/gimp/libgimpwidgets/gimpdialog.html -share/doc/gimp/libgimpwidgets/gimpfileselection.html -share/doc/gimp/libgimpwidgets/gimppatheditor.html -share/doc/gimp/libgimpwidgets/gimppickbutton.html -share/doc/gimp/libgimpwidgets/gimppixmap.html -share/doc/gimp/libgimpwidgets/gimpsizeentry.html -share/doc/gimp/libgimpwidgets/gimpunitmenu.html +share/doc/gimp/libgimpwidgets/GimpButton.html +share/doc/gimp/libgimpwidgets/GimpChainButton.html +share/doc/gimp/libgimpwidgets/GimpColorButton.html +share/doc/gimp/libgimpwidgets/GimpColorDisplay.html +share/doc/gimp/libgimpwidgets/GimpColorNotebook.html +share/doc/gimp/libgimpwidgets/GimpColorScale.html +share/doc/gimp/libgimpwidgets/GimpColorScales.html +share/doc/gimp/libgimpwidgets/GimpColorSelect.html +share/doc/gimp/libgimpwidgets/GimpColorSelector.html +share/doc/gimp/libgimpwidgets/GimpDialog.html +share/doc/gimp/libgimpwidgets/GimpFileSelection.html +share/doc/gimp/libgimpwidgets/GimpMemsizeEntry.html +share/doc/gimp/libgimpwidgets/GimpPathEditor.html +share/doc/gimp/libgimpwidgets/GimpPickButton.html +share/doc/gimp/libgimpwidgets/GimpPixmap.html +share/doc/gimp/libgimpwidgets/GimpSizeEntry.html +share/doc/gimp/libgimpwidgets/GimpUnitMenu.html share/doc/gimp/libgimpwidgets/home.png share/doc/gimp/libgimpwidgets/index.html share/doc/gimp/libgimpwidgets/index.sgml share/doc/gimp/libgimpwidgets/left.png +share/doc/gimp/libgimpwidgets/libgimpwidgets-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-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-widgets.html +share/doc/gimp/libgimpwidgets/libgimpwidgets.devhelp 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/gimp/brushes/10x10square.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-tips.png share/gimp/images/wilber-wizard.png +share/gimp/misc/gimp.applications share/gimp/misc/gimp.desktop +share/gimp/misc/gimp.keys share/gimp/palettes/Bears.gpl share/gimp/palettes/Bgold.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/copy-visible.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/erase-rows.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/neon-logo.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/predator.scm share/gimp/scripts/pupi-button.scm share/gimp/scripts/rendermap.scm share/gimp/scripts/ripply-anim.scm share/gimp/scripts/round-corners.scm -share/gimp/scripts/select_to_brush.scm -share/gimp/scripts/select_to_image.scm +share/gimp/scripts/select-to-brush.scm +share/gimp/scripts/select-to-image.scm +share/gimp/scripts/select-to-pattern.scm share/gimp/scripts/selection-round.scm share/gimp/scripts/slide.scm share/gimp/scripts/sota-chrome-logo.scm share/gimp/scripts/speed-text.scm share/gimp/scripts/sphere.scm -share/gimp/scripts/spinning_globe.scm +share/gimp/scripts/spinning-globe.scm share/gimp/scripts/starburst-logo.scm share/gimp/scripts/starscape-logo.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/new-image.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-char-picker-22.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-error-64.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-broken-24.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-navigation-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-as-new-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-scale-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-none-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-subtract-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-shrink-16.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-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-64.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/tips/gimp-tips.xml +%%GNOME:%%share/gnome/application-registry/gimp-1.3.applications %%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-script-fu.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-std-plug-ins.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-script-fu.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/brushes @dirrm share/gimp +%%PYTHON:%%@dirrm libexec/gimp/1.3/python @dirrm libexec/gimp/1.3/plug-ins @dirrm libexec/gimp/1.3/modules @dirrm libexec/gimp/1.3/environ diff --git a/graphics/gimp-devel/Makefile b/graphics/gimp-devel/Makefile index f9d9f12..0bffc6c 100644 --- a/graphics/gimp-devel/Makefile +++ b/graphics/gimp-devel/Makefile @@ -39,6 +39,8 @@ USE_X_PREFIX= yes USE_XPM= yes USE_GMAKE= yes USE_LIBTOOL= yes +USE_GNOMENG= yes +USE_GNOME= gnomehack INSTALLS_SHLIB= yes USE_REINPLACE= yes LIBTOOLFLAGS= --disable-ltlibs --release-ignore @@ -46,22 +48,28 @@ PLIST_SUB= SHLIBVER="${SHLIBVER}" CONFIGURE_ARGS= --disable-perl \ --with-html-dir=${PREFIX}/share/doc/gimp \ --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" 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 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) 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:="" .else PLIST_SUB+= GNOME:="@comment " @@ -71,28 +79,11 @@ PLIST_SUB+= GNOME:="@comment " #LIB_DEPENDS+= gtkhtml-2.0:${PORTSDIR}/www/libgtkhtml #.endif -do-extract: - @${MKDIR} ${WRKDIR} - @(cd ${WRKDIR} && ${BZIP2_CMD} -dc ${GIMP_DISTFILE} | ${TAR} -xf -) - @(cd ${WRKDIR} && ${GZIP_CMD} -dc ${MPEG_DISTFILE} | ${TAR} -xf -) - @(${FIND} ${MPEG_WRKSRC} -type f | ${XARGS} ${CHMOD} u+w) - -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>/") +pre-everything:: + @${ECHO_MSG} "" + @${ECHO_MSG} "gimp-devel has the following tunable option(s):" + @${ECHO_MSG} "" + @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support" + @${ECHO_MSG} "" .include <bsd.port.mk> diff --git a/graphics/gimp-devel/distinfo b/graphics/gimp-devel/distinfo index 0c29a28..36d5b38 100644 --- a/graphics/gimp-devel/distinfo +++ b/graphics/gimp-devel/distinfo @@ -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 diff --git a/graphics/gimp-devel/files/patch-..::mpeg_lib-1.3.1::Makefile.in b/graphics/gimp-devel/files/patch-..::mpeg_lib-1.3.1::Makefile.in deleted file mode 100644 index e9163f5a..0000000 --- a/graphics/gimp-devel/files/patch-..::mpeg_lib-1.3.1::Makefile.in +++ /dev/null @@ -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 diff --git a/graphics/gimp-devel/files/patch-..::mpeg_lib-1.3.1::video.c b/graphics/gimp-devel/files/patch-..::mpeg_lib-1.3.1::video.c deleted file mode 100644 index 5707b75..0000000 --- a/graphics/gimp-devel/files/patch-..::mpeg_lib-1.3.1::video.c +++ /dev/null @@ -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. */ - diff --git a/graphics/gimp-devel/files/patch-Makefile.in b/graphics/gimp-devel/files/patch-Makefile.in deleted file mode 100644 index 4e49675..0000000 --- a/graphics/gimp-devel/files/patch-Makefile.in +++ /dev/null @@ -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 diff --git a/graphics/gimp-devel/files/patch-app_plug-in_plug-in-shm.c b/graphics/gimp-devel/files/patch-app_plug-in_plug-in-shm.c new file mode 100644 index 0000000..b6a6abe --- /dev/null +++ b/graphics/gimp-devel/files/patch-app_plug-in_plug-in-shm.c @@ -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> diff --git a/graphics/gimp-devel/pkg-comment b/graphics/gimp-devel/pkg-comment deleted file mode 100644 index f51d21c..0000000 --- a/graphics/gimp-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A GNU Image Manipulation Program (unstable development version) diff --git a/graphics/gimp-devel/pkg-plist b/graphics/gimp-devel/pkg-plist index 6073ed2..683e775 100644 --- a/graphics/gimp-devel/pkg-plist +++ b/graphics/gimp-devel/pkg-plist @@ -71,6 +71,7 @@ include/gimp-1.3/libgimpbase/gimpparasite.h include/gimp-1.3/libgimpbase/gimpparasiteio.h include/gimp-1.3/libgimpbase/gimpsignal.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/libgimpcolor/gimpadaptivesupersample.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/gimpfileselection.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/gimppatheditor.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/gimpui-1.3.pc 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_gamma.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/c_astretch libexec/gimp/1.3/plug-ins/checkerboard +%%PYTHON:%%libexec/gimp/1.3/plug-ins/clothify.py 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/colortoalpha 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/flame 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/fractaltrace 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/gifload 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/glasstile libexec/gimp/1.3/plug-ins/gqbist libexec/gimp/1.3/plug-ins/gradmap 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/guillotine 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/mblur 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/nlfilt 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/pat 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/pixelize 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/ps 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/randomize 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/semiflatten 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/shift 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/sobel 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/struc 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/webbrowser 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/wmf 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/xwd 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/doc/gimp/libgimp/gimpdefinitions.html 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-gimpmenu.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-gimppatterns.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-gimpui.html share/doc/gimp/libgimp/libgimp-gimpundo.html +share/doc/gimp/libgimp/libgimp.devhelp share/doc/gimp/libgimp/libgimp.html share/doc/gimp/libgimp/libgimpui.html share/doc/gimp/libgimp/right.png share/doc/gimp/libgimp/up.png +share/doc/gimp/libgimpbase/home.png share/doc/gimp/libgimpbase/index.html share/doc/gimp/libgimpbase/index.sgml +share/doc/gimp/libgimpbase/left.png share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.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-gimpsignal.html share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html +share/doc/gimp/libgimpbase/libgimpbase-gimputils.html share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html share/doc/gimp/libgimpbase/libgimpbase-gimpwire.html +share/doc/gimp/libgimpbase/libgimpbase.devhelp 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.sgml -share/doc/gimp/libgimpcolor/libgimpcolor-gimpadaptivesupersample.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimpbilinear.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimpcolorspace.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimphsv.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimprgb.html +share/doc/gimp/libgimpcolor/left.png +share/doc/gimp/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpBilinear.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorSpace.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpHSV.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpRGB.html +share/doc/gimp/libgimpcolor/libgimpcolor.devhelp 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.sgml -share/doc/gimp/libgimpmath/libgimpmath-gimpmath.html -share/doc/gimp/libgimpmath/libgimpmath-gimpmatrix.html -share/doc/gimp/libgimpmath/libgimpmath-gimpmd5.html -share/doc/gimp/libgimpmath/libgimpmath-gimpvector.html +share/doc/gimp/libgimpmath/left.png +share/doc/gimp/libgimpmath/libgimpmath-GimpMD5.html +share/doc/gimp/libgimpmath/libgimpmath-GimpMath.html +share/doc/gimp/libgimpmath/libgimpmath-GimpMatrix.html +share/doc/gimp/libgimpmath/libgimpmath-GimpVector.html +share/doc/gimp/libgimpmath/libgimpmath.devhelp share/doc/gimp/libgimpmath/libgimpmath.html -share/doc/gimp/libgimpmodule/gimpmodule.html -share/doc/gimp/libgimpmodule/gimpmoduledb.html +share/doc/gimp/libgimpmath/right.png +share/doc/gimp/libgimpmath/up.png +share/doc/gimp/libgimpmodule/GimpModule.html +share/doc/gimp/libgimpmodule/GimpModuleDB.html share/doc/gimp/libgimpmodule/home.png share/doc/gimp/libgimpmodule/index.html share/doc/gimp/libgimpmodule/index.sgml share/doc/gimp/libgimpmodule/left.png +share/doc/gimp/libgimpmodule/libgimpmodule.devhelp share/doc/gimp/libgimpmodule/libgimpmodule.html share/doc/gimp/libgimpmodule/right.png share/doc/gimp/libgimpmodule/up.png -share/doc/gimp/libgimpwidgets/gimpbutton.html -share/doc/gimp/libgimpwidgets/gimpchainbutton.html -share/doc/gimp/libgimpwidgets/gimpcolorbutton.html -share/doc/gimp/libgimpwidgets/gimpcolordisplay.html -share/doc/gimp/libgimpwidgets/gimpcolornotebook.html -share/doc/gimp/libgimpwidgets/gimpcolorscale.html -share/doc/gimp/libgimpwidgets/gimpcolorscales.html -share/doc/gimp/libgimpwidgets/gimpcolorselect.html -share/doc/gimp/libgimpwidgets/gimpcolorselector.html -share/doc/gimp/libgimpwidgets/gimpdialog.html -share/doc/gimp/libgimpwidgets/gimpfileselection.html -share/doc/gimp/libgimpwidgets/gimppatheditor.html -share/doc/gimp/libgimpwidgets/gimppickbutton.html -share/doc/gimp/libgimpwidgets/gimppixmap.html -share/doc/gimp/libgimpwidgets/gimpsizeentry.html -share/doc/gimp/libgimpwidgets/gimpunitmenu.html +share/doc/gimp/libgimpwidgets/GimpButton.html +share/doc/gimp/libgimpwidgets/GimpChainButton.html +share/doc/gimp/libgimpwidgets/GimpColorButton.html +share/doc/gimp/libgimpwidgets/GimpColorDisplay.html +share/doc/gimp/libgimpwidgets/GimpColorNotebook.html +share/doc/gimp/libgimpwidgets/GimpColorScale.html +share/doc/gimp/libgimpwidgets/GimpColorScales.html +share/doc/gimp/libgimpwidgets/GimpColorSelect.html +share/doc/gimp/libgimpwidgets/GimpColorSelector.html +share/doc/gimp/libgimpwidgets/GimpDialog.html +share/doc/gimp/libgimpwidgets/GimpFileSelection.html +share/doc/gimp/libgimpwidgets/GimpMemsizeEntry.html +share/doc/gimp/libgimpwidgets/GimpPathEditor.html +share/doc/gimp/libgimpwidgets/GimpPickButton.html +share/doc/gimp/libgimpwidgets/GimpPixmap.html +share/doc/gimp/libgimpwidgets/GimpSizeEntry.html +share/doc/gimp/libgimpwidgets/GimpUnitMenu.html share/doc/gimp/libgimpwidgets/home.png share/doc/gimp/libgimpwidgets/index.html share/doc/gimp/libgimpwidgets/index.sgml share/doc/gimp/libgimpwidgets/left.png +share/doc/gimp/libgimpwidgets/libgimpwidgets-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-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-widgets.html +share/doc/gimp/libgimpwidgets/libgimpwidgets.devhelp 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/gimp/brushes/10x10square.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-tips.png share/gimp/images/wilber-wizard.png +share/gimp/misc/gimp.applications share/gimp/misc/gimp.desktop +share/gimp/misc/gimp.keys share/gimp/palettes/Bears.gpl share/gimp/palettes/Bgold.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/copy-visible.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/erase-rows.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/neon-logo.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/predator.scm share/gimp/scripts/pupi-button.scm share/gimp/scripts/rendermap.scm share/gimp/scripts/ripply-anim.scm share/gimp/scripts/round-corners.scm -share/gimp/scripts/select_to_brush.scm -share/gimp/scripts/select_to_image.scm +share/gimp/scripts/select-to-brush.scm +share/gimp/scripts/select-to-image.scm +share/gimp/scripts/select-to-pattern.scm share/gimp/scripts/selection-round.scm share/gimp/scripts/slide.scm share/gimp/scripts/sota-chrome-logo.scm share/gimp/scripts/speed-text.scm share/gimp/scripts/sphere.scm -share/gimp/scripts/spinning_globe.scm +share/gimp/scripts/spinning-globe.scm share/gimp/scripts/starburst-logo.scm share/gimp/scripts/starscape-logo.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/new-image.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-char-picker-22.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-error-64.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-broken-24.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-navigation-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-as-new-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-scale-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-none-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-subtract-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-shrink-16.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-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-64.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/tips/gimp-tips.xml +%%GNOME:%%share/gnome/application-registry/gimp-1.3.applications %%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-script-fu.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-std-plug-ins.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-script-fu.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/brushes @dirrm share/gimp +%%PYTHON:%%@dirrm libexec/gimp/1.3/python @dirrm libexec/gimp/1.3/plug-ins @dirrm libexec/gimp/1.3/modules @dirrm libexec/gimp/1.3/environ diff --git a/graphics/gimp/Makefile b/graphics/gimp/Makefile index f9d9f12..0bffc6c 100644 --- a/graphics/gimp/Makefile +++ b/graphics/gimp/Makefile @@ -39,6 +39,8 @@ USE_X_PREFIX= yes USE_XPM= yes USE_GMAKE= yes USE_LIBTOOL= yes +USE_GNOMENG= yes +USE_GNOME= gnomehack INSTALLS_SHLIB= yes USE_REINPLACE= yes LIBTOOLFLAGS= --disable-ltlibs --release-ignore @@ -46,22 +48,28 @@ PLIST_SUB= SHLIBVER="${SHLIBVER}" CONFIGURE_ARGS= --disable-perl \ --with-html-dir=${PREFIX}/share/doc/gimp \ --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" 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 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) 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:="" .else PLIST_SUB+= GNOME:="@comment " @@ -71,28 +79,11 @@ PLIST_SUB+= GNOME:="@comment " #LIB_DEPENDS+= gtkhtml-2.0:${PORTSDIR}/www/libgtkhtml #.endif -do-extract: - @${MKDIR} ${WRKDIR} - @(cd ${WRKDIR} && ${BZIP2_CMD} -dc ${GIMP_DISTFILE} | ${TAR} -xf -) - @(cd ${WRKDIR} && ${GZIP_CMD} -dc ${MPEG_DISTFILE} | ${TAR} -xf -) - @(${FIND} ${MPEG_WRKSRC} -type f | ${XARGS} ${CHMOD} u+w) - -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>/") +pre-everything:: + @${ECHO_MSG} "" + @${ECHO_MSG} "gimp-devel has the following tunable option(s):" + @${ECHO_MSG} "" + @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support" + @${ECHO_MSG} "" .include <bsd.port.mk> diff --git a/graphics/gimp/distinfo b/graphics/gimp/distinfo index 0c29a28..36d5b38 100644 --- a/graphics/gimp/distinfo +++ b/graphics/gimp/distinfo @@ -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 diff --git a/graphics/gimp/files/patch-..::mpeg_lib-1.3.1::Makefile.in b/graphics/gimp/files/patch-..::mpeg_lib-1.3.1::Makefile.in deleted file mode 100644 index e9163f5a..0000000 --- a/graphics/gimp/files/patch-..::mpeg_lib-1.3.1::Makefile.in +++ /dev/null @@ -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 diff --git a/graphics/gimp/files/patch-..::mpeg_lib-1.3.1::video.c b/graphics/gimp/files/patch-..::mpeg_lib-1.3.1::video.c deleted file mode 100644 index 5707b75..0000000 --- a/graphics/gimp/files/patch-..::mpeg_lib-1.3.1::video.c +++ /dev/null @@ -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. */ - diff --git a/graphics/gimp/files/patch-Makefile.in b/graphics/gimp/files/patch-Makefile.in deleted file mode 100644 index 4e49675..0000000 --- a/graphics/gimp/files/patch-Makefile.in +++ /dev/null @@ -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 diff --git a/graphics/gimp/files/patch-app_plug-in_plug-in-shm.c b/graphics/gimp/files/patch-app_plug-in_plug-in-shm.c new file mode 100644 index 0000000..b6a6abe --- /dev/null +++ b/graphics/gimp/files/patch-app_plug-in_plug-in-shm.c @@ -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> diff --git a/graphics/gimp/pkg-comment b/graphics/gimp/pkg-comment deleted file mode 100644 index f51d21c..0000000 --- a/graphics/gimp/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A GNU Image Manipulation Program (unstable development version) diff --git a/graphics/gimp/pkg-plist b/graphics/gimp/pkg-plist index 6073ed2..683e775 100644 --- a/graphics/gimp/pkg-plist +++ b/graphics/gimp/pkg-plist @@ -71,6 +71,7 @@ include/gimp-1.3/libgimpbase/gimpparasite.h include/gimp-1.3/libgimpbase/gimpparasiteio.h include/gimp-1.3/libgimpbase/gimpsignal.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/libgimpcolor/gimpadaptivesupersample.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/gimpfileselection.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/gimppatheditor.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/gimpui-1.3.pc 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_gamma.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/c_astretch libexec/gimp/1.3/plug-ins/checkerboard +%%PYTHON:%%libexec/gimp/1.3/plug-ins/clothify.py 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/colortoalpha 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/flame 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/fractaltrace 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/gifload 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/glasstile libexec/gimp/1.3/plug-ins/gqbist libexec/gimp/1.3/plug-ins/gradmap 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/guillotine 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/mblur 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/nlfilt 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/pat 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/pixelize 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/ps 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/randomize 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/semiflatten 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/shift 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/sobel 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/struc 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/webbrowser 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/wmf 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/xwd 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/doc/gimp/libgimp/gimpdefinitions.html 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-gimpmenu.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-gimppatterns.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-gimpui.html share/doc/gimp/libgimp/libgimp-gimpundo.html +share/doc/gimp/libgimp/libgimp.devhelp share/doc/gimp/libgimp/libgimp.html share/doc/gimp/libgimp/libgimpui.html share/doc/gimp/libgimp/right.png share/doc/gimp/libgimp/up.png +share/doc/gimp/libgimpbase/home.png share/doc/gimp/libgimpbase/index.html share/doc/gimp/libgimpbase/index.sgml +share/doc/gimp/libgimpbase/left.png share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.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-gimpsignal.html share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html +share/doc/gimp/libgimpbase/libgimpbase-gimputils.html share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html share/doc/gimp/libgimpbase/libgimpbase-gimpwire.html +share/doc/gimp/libgimpbase/libgimpbase.devhelp 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.sgml -share/doc/gimp/libgimpcolor/libgimpcolor-gimpadaptivesupersample.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimpbilinear.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimpcolorspace.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimphsv.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimprgb.html +share/doc/gimp/libgimpcolor/left.png +share/doc/gimp/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpBilinear.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorSpace.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpHSV.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpRGB.html +share/doc/gimp/libgimpcolor/libgimpcolor.devhelp 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.sgml -share/doc/gimp/libgimpmath/libgimpmath-gimpmath.html -share/doc/gimp/libgimpmath/libgimpmath-gimpmatrix.html -share/doc/gimp/libgimpmath/libgimpmath-gimpmd5.html -share/doc/gimp/libgimpmath/libgimpmath-gimpvector.html +share/doc/gimp/libgimpmath/left.png +share/doc/gimp/libgimpmath/libgimpmath-GimpMD5.html +share/doc/gimp/libgimpmath/libgimpmath-GimpMath.html +share/doc/gimp/libgimpmath/libgimpmath-GimpMatrix.html +share/doc/gimp/libgimpmath/libgimpmath-GimpVector.html +share/doc/gimp/libgimpmath/libgimpmath.devhelp share/doc/gimp/libgimpmath/libgimpmath.html -share/doc/gimp/libgimpmodule/gimpmodule.html -share/doc/gimp/libgimpmodule/gimpmoduledb.html +share/doc/gimp/libgimpmath/right.png +share/doc/gimp/libgimpmath/up.png +share/doc/gimp/libgimpmodule/GimpModule.html +share/doc/gimp/libgimpmodule/GimpModuleDB.html share/doc/gimp/libgimpmodule/home.png share/doc/gimp/libgimpmodule/index.html share/doc/gimp/libgimpmodule/index.sgml share/doc/gimp/libgimpmodule/left.png +share/doc/gimp/libgimpmodule/libgimpmodule.devhelp share/doc/gimp/libgimpmodule/libgimpmodule.html share/doc/gimp/libgimpmodule/right.png share/doc/gimp/libgimpmodule/up.png -share/doc/gimp/libgimpwidgets/gimpbutton.html -share/doc/gimp/libgimpwidgets/gimpchainbutton.html -share/doc/gimp/libgimpwidgets/gimpcolorbutton.html -share/doc/gimp/libgimpwidgets/gimpcolordisplay.html -share/doc/gimp/libgimpwidgets/gimpcolornotebook.html -share/doc/gimp/libgimpwidgets/gimpcolorscale.html -share/doc/gimp/libgimpwidgets/gimpcolorscales.html -share/doc/gimp/libgimpwidgets/gimpcolorselect.html -share/doc/gimp/libgimpwidgets/gimpcolorselector.html -share/doc/gimp/libgimpwidgets/gimpdialog.html -share/doc/gimp/libgimpwidgets/gimpfileselection.html -share/doc/gimp/libgimpwidgets/gimppatheditor.html -share/doc/gimp/libgimpwidgets/gimppickbutton.html -share/doc/gimp/libgimpwidgets/gimppixmap.html -share/doc/gimp/libgimpwidgets/gimpsizeentry.html -share/doc/gimp/libgimpwidgets/gimpunitmenu.html +share/doc/gimp/libgimpwidgets/GimpButton.html +share/doc/gimp/libgimpwidgets/GimpChainButton.html +share/doc/gimp/libgimpwidgets/GimpColorButton.html +share/doc/gimp/libgimpwidgets/GimpColorDisplay.html +share/doc/gimp/libgimpwidgets/GimpColorNotebook.html +share/doc/gimp/libgimpwidgets/GimpColorScale.html +share/doc/gimp/libgimpwidgets/GimpColorScales.html +share/doc/gimp/libgimpwidgets/GimpColorSelect.html +share/doc/gimp/libgimpwidgets/GimpColorSelector.html +share/doc/gimp/libgimpwidgets/GimpDialog.html +share/doc/gimp/libgimpwidgets/GimpFileSelection.html +share/doc/gimp/libgimpwidgets/GimpMemsizeEntry.html +share/doc/gimp/libgimpwidgets/GimpPathEditor.html +share/doc/gimp/libgimpwidgets/GimpPickButton.html +share/doc/gimp/libgimpwidgets/GimpPixmap.html +share/doc/gimp/libgimpwidgets/GimpSizeEntry.html +share/doc/gimp/libgimpwidgets/GimpUnitMenu.html share/doc/gimp/libgimpwidgets/home.png share/doc/gimp/libgimpwidgets/index.html share/doc/gimp/libgimpwidgets/index.sgml share/doc/gimp/libgimpwidgets/left.png +share/doc/gimp/libgimpwidgets/libgimpwidgets-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-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-widgets.html +share/doc/gimp/libgimpwidgets/libgimpwidgets.devhelp 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/gimp/brushes/10x10square.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-tips.png share/gimp/images/wilber-wizard.png +share/gimp/misc/gimp.applications share/gimp/misc/gimp.desktop +share/gimp/misc/gimp.keys share/gimp/palettes/Bears.gpl share/gimp/palettes/Bgold.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/copy-visible.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/erase-rows.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/neon-logo.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/predator.scm share/gimp/scripts/pupi-button.scm share/gimp/scripts/rendermap.scm share/gimp/scripts/ripply-anim.scm share/gimp/scripts/round-corners.scm -share/gimp/scripts/select_to_brush.scm -share/gimp/scripts/select_to_image.scm +share/gimp/scripts/select-to-brush.scm +share/gimp/scripts/select-to-image.scm +share/gimp/scripts/select-to-pattern.scm share/gimp/scripts/selection-round.scm share/gimp/scripts/slide.scm share/gimp/scripts/sota-chrome-logo.scm share/gimp/scripts/speed-text.scm share/gimp/scripts/sphere.scm -share/gimp/scripts/spinning_globe.scm +share/gimp/scripts/spinning-globe.scm share/gimp/scripts/starburst-logo.scm share/gimp/scripts/starscape-logo.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/new-image.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-char-picker-22.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-error-64.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-broken-24.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-navigation-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-as-new-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-scale-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-none-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-subtract-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-shrink-16.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-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-64.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/tips/gimp-tips.xml +%%GNOME:%%share/gnome/application-registry/gimp-1.3.applications %%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-script-fu.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-std-plug-ins.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-script-fu.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/brushes @dirrm share/gimp +%%PYTHON:%%@dirrm libexec/gimp/1.3/python @dirrm libexec/gimp/1.3/plug-ins @dirrm libexec/gimp/1.3/modules @dirrm libexec/gimp/1.3/environ diff --git a/graphics/gimpshop/Makefile b/graphics/gimpshop/Makefile index f9d9f12..0bffc6c 100644 --- a/graphics/gimpshop/Makefile +++ b/graphics/gimpshop/Makefile @@ -39,6 +39,8 @@ USE_X_PREFIX= yes USE_XPM= yes USE_GMAKE= yes USE_LIBTOOL= yes +USE_GNOMENG= yes +USE_GNOME= gnomehack INSTALLS_SHLIB= yes USE_REINPLACE= yes LIBTOOLFLAGS= --disable-ltlibs --release-ignore @@ -46,22 +48,28 @@ PLIST_SUB= SHLIBVER="${SHLIBVER}" CONFIGURE_ARGS= --disable-perl \ --with-html-dir=${PREFIX}/share/doc/gimp \ --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" 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 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) 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:="" .else PLIST_SUB+= GNOME:="@comment " @@ -71,28 +79,11 @@ PLIST_SUB+= GNOME:="@comment " #LIB_DEPENDS+= gtkhtml-2.0:${PORTSDIR}/www/libgtkhtml #.endif -do-extract: - @${MKDIR} ${WRKDIR} - @(cd ${WRKDIR} && ${BZIP2_CMD} -dc ${GIMP_DISTFILE} | ${TAR} -xf -) - @(cd ${WRKDIR} && ${GZIP_CMD} -dc ${MPEG_DISTFILE} | ${TAR} -xf -) - @(${FIND} ${MPEG_WRKSRC} -type f | ${XARGS} ${CHMOD} u+w) - -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>/") +pre-everything:: + @${ECHO_MSG} "" + @${ECHO_MSG} "gimp-devel has the following tunable option(s):" + @${ECHO_MSG} "" + @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support" + @${ECHO_MSG} "" .include <bsd.port.mk> diff --git a/graphics/gimpshop/distinfo b/graphics/gimpshop/distinfo index 0c29a28..36d5b38 100644 --- a/graphics/gimpshop/distinfo +++ b/graphics/gimpshop/distinfo @@ -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 diff --git a/graphics/gimpshop/files/patch-..::mpeg_lib-1.3.1::Makefile.in b/graphics/gimpshop/files/patch-..::mpeg_lib-1.3.1::Makefile.in deleted file mode 100644 index e9163f5a..0000000 --- a/graphics/gimpshop/files/patch-..::mpeg_lib-1.3.1::Makefile.in +++ /dev/null @@ -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 diff --git a/graphics/gimpshop/files/patch-..::mpeg_lib-1.3.1::video.c b/graphics/gimpshop/files/patch-..::mpeg_lib-1.3.1::video.c deleted file mode 100644 index 5707b75..0000000 --- a/graphics/gimpshop/files/patch-..::mpeg_lib-1.3.1::video.c +++ /dev/null @@ -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. */ - diff --git a/graphics/gimpshop/files/patch-Makefile.in b/graphics/gimpshop/files/patch-Makefile.in deleted file mode 100644 index 4e49675..0000000 --- a/graphics/gimpshop/files/patch-Makefile.in +++ /dev/null @@ -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 diff --git a/graphics/gimpshop/files/patch-app_plug-in_plug-in-shm.c b/graphics/gimpshop/files/patch-app_plug-in_plug-in-shm.c new file mode 100644 index 0000000..b6a6abe --- /dev/null +++ b/graphics/gimpshop/files/patch-app_plug-in_plug-in-shm.c @@ -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> diff --git a/graphics/gimpshop/pkg-comment b/graphics/gimpshop/pkg-comment deleted file mode 100644 index f51d21c..0000000 --- a/graphics/gimpshop/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A GNU Image Manipulation Program (unstable development version) diff --git a/graphics/gimpshop/pkg-plist b/graphics/gimpshop/pkg-plist index 6073ed2..683e775 100644 --- a/graphics/gimpshop/pkg-plist +++ b/graphics/gimpshop/pkg-plist @@ -71,6 +71,7 @@ include/gimp-1.3/libgimpbase/gimpparasite.h include/gimp-1.3/libgimpbase/gimpparasiteio.h include/gimp-1.3/libgimpbase/gimpsignal.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/libgimpcolor/gimpadaptivesupersample.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/gimpfileselection.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/gimppatheditor.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/gimpui-1.3.pc 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_gamma.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/c_astretch libexec/gimp/1.3/plug-ins/checkerboard +%%PYTHON:%%libexec/gimp/1.3/plug-ins/clothify.py 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/colortoalpha 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/flame 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/fractaltrace 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/gifload 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/glasstile libexec/gimp/1.3/plug-ins/gqbist libexec/gimp/1.3/plug-ins/gradmap 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/guillotine 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/mblur 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/nlfilt 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/pat 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/pixelize 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/ps 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/randomize 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/semiflatten 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/shift 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/sobel 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/struc 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/webbrowser 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/wmf 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/xwd 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/doc/gimp/libgimp/gimpdefinitions.html 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-gimpmenu.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-gimppatterns.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-gimpui.html share/doc/gimp/libgimp/libgimp-gimpundo.html +share/doc/gimp/libgimp/libgimp.devhelp share/doc/gimp/libgimp/libgimp.html share/doc/gimp/libgimp/libgimpui.html share/doc/gimp/libgimp/right.png share/doc/gimp/libgimp/up.png +share/doc/gimp/libgimpbase/home.png share/doc/gimp/libgimpbase/index.html share/doc/gimp/libgimpbase/index.sgml +share/doc/gimp/libgimpbase/left.png share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.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-gimpsignal.html share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html +share/doc/gimp/libgimpbase/libgimpbase-gimputils.html share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html share/doc/gimp/libgimpbase/libgimpbase-gimpwire.html +share/doc/gimp/libgimpbase/libgimpbase.devhelp 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.sgml -share/doc/gimp/libgimpcolor/libgimpcolor-gimpadaptivesupersample.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimpbilinear.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimpcolorspace.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimphsv.html -share/doc/gimp/libgimpcolor/libgimpcolor-gimprgb.html +share/doc/gimp/libgimpcolor/left.png +share/doc/gimp/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpBilinear.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorSpace.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpHSV.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpRGB.html +share/doc/gimp/libgimpcolor/libgimpcolor.devhelp 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.sgml -share/doc/gimp/libgimpmath/libgimpmath-gimpmath.html -share/doc/gimp/libgimpmath/libgimpmath-gimpmatrix.html -share/doc/gimp/libgimpmath/libgimpmath-gimpmd5.html -share/doc/gimp/libgimpmath/libgimpmath-gimpvector.html +share/doc/gimp/libgimpmath/left.png +share/doc/gimp/libgimpmath/libgimpmath-GimpMD5.html +share/doc/gimp/libgimpmath/libgimpmath-GimpMath.html +share/doc/gimp/libgimpmath/libgimpmath-GimpMatrix.html +share/doc/gimp/libgimpmath/libgimpmath-GimpVector.html +share/doc/gimp/libgimpmath/libgimpmath.devhelp share/doc/gimp/libgimpmath/libgimpmath.html -share/doc/gimp/libgimpmodule/gimpmodule.html -share/doc/gimp/libgimpmodule/gimpmoduledb.html +share/doc/gimp/libgimpmath/right.png +share/doc/gimp/libgimpmath/up.png +share/doc/gimp/libgimpmodule/GimpModule.html +share/doc/gimp/libgimpmodule/GimpModuleDB.html share/doc/gimp/libgimpmodule/home.png share/doc/gimp/libgimpmodule/index.html share/doc/gimp/libgimpmodule/index.sgml share/doc/gimp/libgimpmodule/left.png +share/doc/gimp/libgimpmodule/libgimpmodule.devhelp share/doc/gimp/libgimpmodule/libgimpmodule.html share/doc/gimp/libgimpmodule/right.png share/doc/gimp/libgimpmodule/up.png -share/doc/gimp/libgimpwidgets/gimpbutton.html -share/doc/gimp/libgimpwidgets/gimpchainbutton.html -share/doc/gimp/libgimpwidgets/gimpcolorbutton.html -share/doc/gimp/libgimpwidgets/gimpcolordisplay.html -share/doc/gimp/libgimpwidgets/gimpcolornotebook.html -share/doc/gimp/libgimpwidgets/gimpcolorscale.html -share/doc/gimp/libgimpwidgets/gimpcolorscales.html -share/doc/gimp/libgimpwidgets/gimpcolorselect.html -share/doc/gimp/libgimpwidgets/gimpcolorselector.html -share/doc/gimp/libgimpwidgets/gimpdialog.html -share/doc/gimp/libgimpwidgets/gimpfileselection.html -share/doc/gimp/libgimpwidgets/gimppatheditor.html -share/doc/gimp/libgimpwidgets/gimppickbutton.html -share/doc/gimp/libgimpwidgets/gimppixmap.html -share/doc/gimp/libgimpwidgets/gimpsizeentry.html -share/doc/gimp/libgimpwidgets/gimpunitmenu.html +share/doc/gimp/libgimpwidgets/GimpButton.html +share/doc/gimp/libgimpwidgets/GimpChainButton.html +share/doc/gimp/libgimpwidgets/GimpColorButton.html +share/doc/gimp/libgimpwidgets/GimpColorDisplay.html +share/doc/gimp/libgimpwidgets/GimpColorNotebook.html +share/doc/gimp/libgimpwidgets/GimpColorScale.html +share/doc/gimp/libgimpwidgets/GimpColorScales.html +share/doc/gimp/libgimpwidgets/GimpColorSelect.html +share/doc/gimp/libgimpwidgets/GimpColorSelector.html +share/doc/gimp/libgimpwidgets/GimpDialog.html +share/doc/gimp/libgimpwidgets/GimpFileSelection.html +share/doc/gimp/libgimpwidgets/GimpMemsizeEntry.html +share/doc/gimp/libgimpwidgets/GimpPathEditor.html +share/doc/gimp/libgimpwidgets/GimpPickButton.html +share/doc/gimp/libgimpwidgets/GimpPixmap.html +share/doc/gimp/libgimpwidgets/GimpSizeEntry.html +share/doc/gimp/libgimpwidgets/GimpUnitMenu.html share/doc/gimp/libgimpwidgets/home.png share/doc/gimp/libgimpwidgets/index.html share/doc/gimp/libgimpwidgets/index.sgml share/doc/gimp/libgimpwidgets/left.png +share/doc/gimp/libgimpwidgets/libgimpwidgets-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-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-widgets.html +share/doc/gimp/libgimpwidgets/libgimpwidgets.devhelp 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/gimp/brushes/10x10square.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-tips.png share/gimp/images/wilber-wizard.png +share/gimp/misc/gimp.applications share/gimp/misc/gimp.desktop +share/gimp/misc/gimp.keys share/gimp/palettes/Bears.gpl share/gimp/palettes/Bgold.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/copy-visible.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/erase-rows.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/neon-logo.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/predator.scm share/gimp/scripts/pupi-button.scm share/gimp/scripts/rendermap.scm share/gimp/scripts/ripply-anim.scm share/gimp/scripts/round-corners.scm -share/gimp/scripts/select_to_brush.scm -share/gimp/scripts/select_to_image.scm +share/gimp/scripts/select-to-brush.scm +share/gimp/scripts/select-to-image.scm +share/gimp/scripts/select-to-pattern.scm share/gimp/scripts/selection-round.scm share/gimp/scripts/slide.scm share/gimp/scripts/sota-chrome-logo.scm share/gimp/scripts/speed-text.scm share/gimp/scripts/sphere.scm -share/gimp/scripts/spinning_globe.scm +share/gimp/scripts/spinning-globe.scm share/gimp/scripts/starburst-logo.scm share/gimp/scripts/starscape-logo.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/new-image.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-char-picker-22.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-error-64.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-broken-24.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-navigation-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-as-new-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-scale-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-none-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-subtract-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-shrink-16.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-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-64.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/tips/gimp-tips.xml +%%GNOME:%%share/gnome/application-registry/gimp-1.3.applications %%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-script-fu.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-std-plug-ins.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-script-fu.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/brushes @dirrm share/gimp +%%PYTHON:%%@dirrm libexec/gimp/1.3/python @dirrm libexec/gimp/1.3/plug-ins @dirrm libexec/gimp/1.3/modules @dirrm libexec/gimp/1.3/environ |