mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Update to version 1.1.11
PR: 14779 Submitted by: Will Andrews <andrews@technologist.com>
This commit is contained in:
parent
0adf5c3f15
commit
1d6c540988
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=23034
24 changed files with 138 additions and 102 deletions
|
@ -1,16 +1,17 @@
|
||||||
# New ports collection makefile for: Gimp
|
# New ports collection makefile for: Gimp
|
||||||
# Version required: 1.1.10
|
# Version required: 1.1.11
|
||||||
# Date created: Mon Nov 18 21:28:43 CST 1996
|
# Date created: Mon Nov 18 21:28:43 CST 1996
|
||||||
# Whom: erich@FreeBSD.org
|
# Whom: erich@FreeBSD.org
|
||||||
#
|
#
|
||||||
# $FreeBSD$
|
# $FreeBSD$
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= gimp-1.1.10
|
DISTNAME= gimp-${VERSION}
|
||||||
CATEGORIES= graphics
|
CATEGORIES= graphics
|
||||||
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.10/ \
|
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v${VERSION}/ \
|
||||||
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.10/ \
|
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v${VERSION}/ \
|
||||||
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.10/
|
http://www.ameth.org/gimp/pub/gimp/unstable/v${VERSION}/ \
|
||||||
|
ftp://ftp.gimp.org/pub/gimp/unstable/old/v${VERSION}/
|
||||||
|
|
||||||
MAINTAINER= erich@FreeBSD.org
|
MAINTAINER= erich@FreeBSD.org
|
||||||
|
|
||||||
|
@ -22,6 +23,7 @@ LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \
|
||||||
png.3:${PORTSDIR}/graphics/png \
|
png.3:${PORTSDIR}/graphics/png \
|
||||||
tiff.4:${PORTSDIR}/graphics/tiff
|
tiff.4:${PORTSDIR}/graphics/tiff
|
||||||
|
|
||||||
|
VERSION= 1.1.11
|
||||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (gimp-1.1.10.tar.bz2) = a5bf11f5bd1050d9d0ed1fc941f4302c
|
MD5 (gimp-1.1.11.tar.bz2) = c22832463f6a6333c1cab549dba8bcbc
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
--- plug-ins/common/url.c.orig Sat May 30 15:32:36 1998
|
--- plug-ins/common/url.c Sun Nov 7 19:24:37 1999
|
||||||
+++ plug-ins/common/url.c Sun Jun 7 10:09:34 1998
|
+++ plug-ins/common/url.c.new Sun Nov 7 19:26:39 1999
|
||||||
@@ -146,8 +146,8 @@
|
@@ -151,8 +151,8 @@
|
||||||
}
|
}
|
||||||
else if (pid == 0)
|
else if (pid == 0)
|
||||||
{
|
{
|
||||||
|
@ -8,6 +8,6 @@
|
||||||
- g_message ("url: exec failed: wget: %s\n", g_strerror(errno));
|
- g_message ("url: exec failed: wget: %s\n", g_strerror(errno));
|
||||||
+ execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL);
|
+ execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL);
|
||||||
+ g_message ("url: exec failed: fetch: %s\n", g_strerror(errno));
|
+ g_message ("url: exec failed: fetch: %s\n", g_strerror(errno));
|
||||||
|
g_free (tmpname);
|
||||||
_exit(127);
|
_exit(127);
|
||||||
}
|
}
|
||||||
else
|
|
||||||
|
|
|
@ -9,6 +9,8 @@ include/gck/gckmath.h
|
||||||
include/gck/gcktypes.h
|
include/gck/gcktypes.h
|
||||||
include/gck/gckui.h
|
include/gck/gckui.h
|
||||||
include/gck/gckvector.h
|
include/gck/gckvector.h
|
||||||
|
include/libgimp/gimpcolorbutton.h
|
||||||
|
include/libgimp/gimpcompat.h
|
||||||
include/libgimp/color_display.h
|
include/libgimp/color_display.h
|
||||||
include/libgimp/color_selector.h
|
include/libgimp/color_selector.h
|
||||||
include/libgimp/gimp.h
|
include/libgimp/gimp.h
|
||||||
|
@ -36,21 +38,22 @@ include/libgimp/parasiteP.h
|
||||||
include/libgimp/parasiteio.h
|
include/libgimp/parasiteio.h
|
||||||
lib/libgck.a
|
lib/libgck.a
|
||||||
lib/libgck.so
|
lib/libgck.so
|
||||||
lib/libgck.so.10
|
lib/libgck.so.11
|
||||||
lib/libgimp.a
|
lib/libgimp.a
|
||||||
lib/libgimp.so
|
lib/libgimp.so
|
||||||
lib/libgimp.so.10
|
lib/libgimp.so.11
|
||||||
lib/libgimpui.a
|
lib/libgimpui.a
|
||||||
lib/libgimpui.so
|
lib/libgimpui.so
|
||||||
lib/libgimpui.so.10
|
lib/libgimpui.so.11
|
||||||
lib/libgpc.a
|
lib/libgpc.a
|
||||||
lib/libmegawidget.a
|
lib/libmegawidget.a
|
||||||
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
|
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
|
||||||
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
|
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
|
||||||
libexec/gimp/1.1/modules/libcdisplay_gamma.so
|
libexec/gimp/1.1/modules/libcdisplay_gamma.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_gtk.so
|
libexec/gimp/1.1/modules/libcolorsel_gtk.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_triangle.so
|
libexec/gimp/1.1/modules/libcolorsel_triangle.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_water.so
|
libexec/gimp/1.1/modules/libcolorsel_water.a
|
||||||
|
libexec/gimp/1.1/plug-ins/helpbrowser
|
||||||
libexec/gimp/1.1/plug-ins/AlienMap
|
libexec/gimp/1.1/plug-ins/AlienMap
|
||||||
libexec/gimp/1.1/plug-ins/AlienMap2
|
libexec/gimp/1.1/plug-ins/AlienMap2
|
||||||
libexec/gimp/1.1/plug-ins/CEL
|
libexec/gimp/1.1/plug-ins/CEL
|
||||||
|
@ -1039,6 +1042,7 @@ share/gimp/tips/gimp_tips.ja.txt
|
||||||
share/gimp/tips/gimp_tips.it.txt
|
share/gimp/tips/gimp_tips.it.txt
|
||||||
share/gimp/tips/gimp_conseils.fr.txt
|
share/gimp/tips/gimp_conseils.fr.txt
|
||||||
share/gimp/tips/gimp_tips.ru.txt
|
share/gimp/tips/gimp_tips.ru.txt
|
||||||
|
share/gimp/tips/gimp_tips.ko.txt
|
||||||
share/gimp/unitrc
|
share/gimp/unitrc
|
||||||
share/gimp/user_install
|
share/gimp/user_install
|
||||||
share/locale/de/LC_MESSAGES/gimp.mo
|
share/locale/de/LC_MESSAGES/gimp.mo
|
||||||
|
|
|
@ -1,16 +1,17 @@
|
||||||
# New ports collection makefile for: Gimp
|
# New ports collection makefile for: Gimp
|
||||||
# Version required: 1.1.10
|
# Version required: 1.1.11
|
||||||
# Date created: Mon Nov 18 21:28:43 CST 1996
|
# Date created: Mon Nov 18 21:28:43 CST 1996
|
||||||
# Whom: erich@FreeBSD.org
|
# Whom: erich@FreeBSD.org
|
||||||
#
|
#
|
||||||
# $FreeBSD$
|
# $FreeBSD$
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= gimp-1.1.10
|
DISTNAME= gimp-${VERSION}
|
||||||
CATEGORIES= graphics
|
CATEGORIES= graphics
|
||||||
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.10/ \
|
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v${VERSION}/ \
|
||||||
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.10/ \
|
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v${VERSION}/ \
|
||||||
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.10/
|
http://www.ameth.org/gimp/pub/gimp/unstable/v${VERSION}/ \
|
||||||
|
ftp://ftp.gimp.org/pub/gimp/unstable/old/v${VERSION}/
|
||||||
|
|
||||||
MAINTAINER= erich@FreeBSD.org
|
MAINTAINER= erich@FreeBSD.org
|
||||||
|
|
||||||
|
@ -22,6 +23,7 @@ LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \
|
||||||
png.3:${PORTSDIR}/graphics/png \
|
png.3:${PORTSDIR}/graphics/png \
|
||||||
tiff.4:${PORTSDIR}/graphics/tiff
|
tiff.4:${PORTSDIR}/graphics/tiff
|
||||||
|
|
||||||
|
VERSION= 1.1.11
|
||||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (gimp-1.1.10.tar.bz2) = a5bf11f5bd1050d9d0ed1fc941f4302c
|
MD5 (gimp-1.1.11.tar.bz2) = c22832463f6a6333c1cab549dba8bcbc
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
--- plug-ins/common/url.c.orig Sat May 30 15:32:36 1998
|
--- plug-ins/common/url.c Sun Nov 7 19:24:37 1999
|
||||||
+++ plug-ins/common/url.c Sun Jun 7 10:09:34 1998
|
+++ plug-ins/common/url.c.new Sun Nov 7 19:26:39 1999
|
||||||
@@ -146,8 +146,8 @@
|
@@ -151,8 +151,8 @@
|
||||||
}
|
}
|
||||||
else if (pid == 0)
|
else if (pid == 0)
|
||||||
{
|
{
|
||||||
|
@ -8,6 +8,6 @@
|
||||||
- g_message ("url: exec failed: wget: %s\n", g_strerror(errno));
|
- g_message ("url: exec failed: wget: %s\n", g_strerror(errno));
|
||||||
+ execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL);
|
+ execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL);
|
||||||
+ g_message ("url: exec failed: fetch: %s\n", g_strerror(errno));
|
+ g_message ("url: exec failed: fetch: %s\n", g_strerror(errno));
|
||||||
|
g_free (tmpname);
|
||||||
_exit(127);
|
_exit(127);
|
||||||
}
|
}
|
||||||
else
|
|
||||||
|
|
|
@ -9,6 +9,8 @@ include/gck/gckmath.h
|
||||||
include/gck/gcktypes.h
|
include/gck/gcktypes.h
|
||||||
include/gck/gckui.h
|
include/gck/gckui.h
|
||||||
include/gck/gckvector.h
|
include/gck/gckvector.h
|
||||||
|
include/libgimp/gimpcolorbutton.h
|
||||||
|
include/libgimp/gimpcompat.h
|
||||||
include/libgimp/color_display.h
|
include/libgimp/color_display.h
|
||||||
include/libgimp/color_selector.h
|
include/libgimp/color_selector.h
|
||||||
include/libgimp/gimp.h
|
include/libgimp/gimp.h
|
||||||
|
@ -36,21 +38,22 @@ include/libgimp/parasiteP.h
|
||||||
include/libgimp/parasiteio.h
|
include/libgimp/parasiteio.h
|
||||||
lib/libgck.a
|
lib/libgck.a
|
||||||
lib/libgck.so
|
lib/libgck.so
|
||||||
lib/libgck.so.10
|
lib/libgck.so.11
|
||||||
lib/libgimp.a
|
lib/libgimp.a
|
||||||
lib/libgimp.so
|
lib/libgimp.so
|
||||||
lib/libgimp.so.10
|
lib/libgimp.so.11
|
||||||
lib/libgimpui.a
|
lib/libgimpui.a
|
||||||
lib/libgimpui.so
|
lib/libgimpui.so
|
||||||
lib/libgimpui.so.10
|
lib/libgimpui.so.11
|
||||||
lib/libgpc.a
|
lib/libgpc.a
|
||||||
lib/libmegawidget.a
|
lib/libmegawidget.a
|
||||||
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
|
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
|
||||||
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
|
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
|
||||||
libexec/gimp/1.1/modules/libcdisplay_gamma.so
|
libexec/gimp/1.1/modules/libcdisplay_gamma.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_gtk.so
|
libexec/gimp/1.1/modules/libcolorsel_gtk.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_triangle.so
|
libexec/gimp/1.1/modules/libcolorsel_triangle.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_water.so
|
libexec/gimp/1.1/modules/libcolorsel_water.a
|
||||||
|
libexec/gimp/1.1/plug-ins/helpbrowser
|
||||||
libexec/gimp/1.1/plug-ins/AlienMap
|
libexec/gimp/1.1/plug-ins/AlienMap
|
||||||
libexec/gimp/1.1/plug-ins/AlienMap2
|
libexec/gimp/1.1/plug-ins/AlienMap2
|
||||||
libexec/gimp/1.1/plug-ins/CEL
|
libexec/gimp/1.1/plug-ins/CEL
|
||||||
|
@ -1039,6 +1042,7 @@ share/gimp/tips/gimp_tips.ja.txt
|
||||||
share/gimp/tips/gimp_tips.it.txt
|
share/gimp/tips/gimp_tips.it.txt
|
||||||
share/gimp/tips/gimp_conseils.fr.txt
|
share/gimp/tips/gimp_conseils.fr.txt
|
||||||
share/gimp/tips/gimp_tips.ru.txt
|
share/gimp/tips/gimp_tips.ru.txt
|
||||||
|
share/gimp/tips/gimp_tips.ko.txt
|
||||||
share/gimp/unitrc
|
share/gimp/unitrc
|
||||||
share/gimp/user_install
|
share/gimp/user_install
|
||||||
share/locale/de/LC_MESSAGES/gimp.mo
|
share/locale/de/LC_MESSAGES/gimp.mo
|
||||||
|
|
|
@ -1,16 +1,17 @@
|
||||||
# New ports collection makefile for: Gimp
|
# New ports collection makefile for: Gimp
|
||||||
# Version required: 1.1.10
|
# Version required: 1.1.11
|
||||||
# Date created: Mon Nov 18 21:28:43 CST 1996
|
# Date created: Mon Nov 18 21:28:43 CST 1996
|
||||||
# Whom: erich@FreeBSD.org
|
# Whom: erich@FreeBSD.org
|
||||||
#
|
#
|
||||||
# $FreeBSD$
|
# $FreeBSD$
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= gimp-1.1.10
|
DISTNAME= gimp-${VERSION}
|
||||||
CATEGORIES= graphics
|
CATEGORIES= graphics
|
||||||
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.10/ \
|
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v${VERSION}/ \
|
||||||
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.10/ \
|
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v${VERSION}/ \
|
||||||
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.10/
|
http://www.ameth.org/gimp/pub/gimp/unstable/v${VERSION}/ \
|
||||||
|
ftp://ftp.gimp.org/pub/gimp/unstable/old/v${VERSION}/
|
||||||
|
|
||||||
MAINTAINER= erich@FreeBSD.org
|
MAINTAINER= erich@FreeBSD.org
|
||||||
|
|
||||||
|
@ -22,6 +23,7 @@ LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \
|
||||||
png.3:${PORTSDIR}/graphics/png \
|
png.3:${PORTSDIR}/graphics/png \
|
||||||
tiff.4:${PORTSDIR}/graphics/tiff
|
tiff.4:${PORTSDIR}/graphics/tiff
|
||||||
|
|
||||||
|
VERSION= 1.1.11
|
||||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (gimp-1.1.10.tar.bz2) = a5bf11f5bd1050d9d0ed1fc941f4302c
|
MD5 (gimp-1.1.11.tar.bz2) = c22832463f6a6333c1cab549dba8bcbc
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
--- plug-ins/common/url.c.orig Sat May 30 15:32:36 1998
|
--- plug-ins/common/url.c Sun Nov 7 19:24:37 1999
|
||||||
+++ plug-ins/common/url.c Sun Jun 7 10:09:34 1998
|
+++ plug-ins/common/url.c.new Sun Nov 7 19:26:39 1999
|
||||||
@@ -146,8 +146,8 @@
|
@@ -151,8 +151,8 @@
|
||||||
}
|
}
|
||||||
else if (pid == 0)
|
else if (pid == 0)
|
||||||
{
|
{
|
||||||
|
@ -8,6 +8,6 @@
|
||||||
- g_message ("url: exec failed: wget: %s\n", g_strerror(errno));
|
- g_message ("url: exec failed: wget: %s\n", g_strerror(errno));
|
||||||
+ execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL);
|
+ execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL);
|
||||||
+ g_message ("url: exec failed: fetch: %s\n", g_strerror(errno));
|
+ g_message ("url: exec failed: fetch: %s\n", g_strerror(errno));
|
||||||
|
g_free (tmpname);
|
||||||
_exit(127);
|
_exit(127);
|
||||||
}
|
}
|
||||||
else
|
|
||||||
|
|
|
@ -9,6 +9,8 @@ include/gck/gckmath.h
|
||||||
include/gck/gcktypes.h
|
include/gck/gcktypes.h
|
||||||
include/gck/gckui.h
|
include/gck/gckui.h
|
||||||
include/gck/gckvector.h
|
include/gck/gckvector.h
|
||||||
|
include/libgimp/gimpcolorbutton.h
|
||||||
|
include/libgimp/gimpcompat.h
|
||||||
include/libgimp/color_display.h
|
include/libgimp/color_display.h
|
||||||
include/libgimp/color_selector.h
|
include/libgimp/color_selector.h
|
||||||
include/libgimp/gimp.h
|
include/libgimp/gimp.h
|
||||||
|
@ -36,21 +38,22 @@ include/libgimp/parasiteP.h
|
||||||
include/libgimp/parasiteio.h
|
include/libgimp/parasiteio.h
|
||||||
lib/libgck.a
|
lib/libgck.a
|
||||||
lib/libgck.so
|
lib/libgck.so
|
||||||
lib/libgck.so.10
|
lib/libgck.so.11
|
||||||
lib/libgimp.a
|
lib/libgimp.a
|
||||||
lib/libgimp.so
|
lib/libgimp.so
|
||||||
lib/libgimp.so.10
|
lib/libgimp.so.11
|
||||||
lib/libgimpui.a
|
lib/libgimpui.a
|
||||||
lib/libgimpui.so
|
lib/libgimpui.so
|
||||||
lib/libgimpui.so.10
|
lib/libgimpui.so.11
|
||||||
lib/libgpc.a
|
lib/libgpc.a
|
||||||
lib/libmegawidget.a
|
lib/libmegawidget.a
|
||||||
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
|
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
|
||||||
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
|
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
|
||||||
libexec/gimp/1.1/modules/libcdisplay_gamma.so
|
libexec/gimp/1.1/modules/libcdisplay_gamma.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_gtk.so
|
libexec/gimp/1.1/modules/libcolorsel_gtk.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_triangle.so
|
libexec/gimp/1.1/modules/libcolorsel_triangle.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_water.so
|
libexec/gimp/1.1/modules/libcolorsel_water.a
|
||||||
|
libexec/gimp/1.1/plug-ins/helpbrowser
|
||||||
libexec/gimp/1.1/plug-ins/AlienMap
|
libexec/gimp/1.1/plug-ins/AlienMap
|
||||||
libexec/gimp/1.1/plug-ins/AlienMap2
|
libexec/gimp/1.1/plug-ins/AlienMap2
|
||||||
libexec/gimp/1.1/plug-ins/CEL
|
libexec/gimp/1.1/plug-ins/CEL
|
||||||
|
@ -1039,6 +1042,7 @@ share/gimp/tips/gimp_tips.ja.txt
|
||||||
share/gimp/tips/gimp_tips.it.txt
|
share/gimp/tips/gimp_tips.it.txt
|
||||||
share/gimp/tips/gimp_conseils.fr.txt
|
share/gimp/tips/gimp_conseils.fr.txt
|
||||||
share/gimp/tips/gimp_tips.ru.txt
|
share/gimp/tips/gimp_tips.ru.txt
|
||||||
|
share/gimp/tips/gimp_tips.ko.txt
|
||||||
share/gimp/unitrc
|
share/gimp/unitrc
|
||||||
share/gimp/user_install
|
share/gimp/user_install
|
||||||
share/locale/de/LC_MESSAGES/gimp.mo
|
share/locale/de/LC_MESSAGES/gimp.mo
|
||||||
|
|
|
@ -1,16 +1,17 @@
|
||||||
# New ports collection makefile for: Gimp
|
# New ports collection makefile for: Gimp
|
||||||
# Version required: 1.1.10
|
# Version required: 1.1.11
|
||||||
# Date created: Mon Nov 18 21:28:43 CST 1996
|
# Date created: Mon Nov 18 21:28:43 CST 1996
|
||||||
# Whom: erich@FreeBSD.org
|
# Whom: erich@FreeBSD.org
|
||||||
#
|
#
|
||||||
# $FreeBSD$
|
# $FreeBSD$
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= gimp-1.1.10
|
DISTNAME= gimp-${VERSION}
|
||||||
CATEGORIES= graphics
|
CATEGORIES= graphics
|
||||||
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.10/ \
|
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v${VERSION}/ \
|
||||||
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.10/ \
|
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v${VERSION}/ \
|
||||||
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.10/
|
http://www.ameth.org/gimp/pub/gimp/unstable/v${VERSION}/ \
|
||||||
|
ftp://ftp.gimp.org/pub/gimp/unstable/old/v${VERSION}/
|
||||||
|
|
||||||
MAINTAINER= erich@FreeBSD.org
|
MAINTAINER= erich@FreeBSD.org
|
||||||
|
|
||||||
|
@ -22,6 +23,7 @@ LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \
|
||||||
png.3:${PORTSDIR}/graphics/png \
|
png.3:${PORTSDIR}/graphics/png \
|
||||||
tiff.4:${PORTSDIR}/graphics/tiff
|
tiff.4:${PORTSDIR}/graphics/tiff
|
||||||
|
|
||||||
|
VERSION= 1.1.11
|
||||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (gimp-1.1.10.tar.bz2) = a5bf11f5bd1050d9d0ed1fc941f4302c
|
MD5 (gimp-1.1.11.tar.bz2) = c22832463f6a6333c1cab549dba8bcbc
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
--- plug-ins/common/url.c.orig Sat May 30 15:32:36 1998
|
--- plug-ins/common/url.c Sun Nov 7 19:24:37 1999
|
||||||
+++ plug-ins/common/url.c Sun Jun 7 10:09:34 1998
|
+++ plug-ins/common/url.c.new Sun Nov 7 19:26:39 1999
|
||||||
@@ -146,8 +146,8 @@
|
@@ -151,8 +151,8 @@
|
||||||
}
|
}
|
||||||
else if (pid == 0)
|
else if (pid == 0)
|
||||||
{
|
{
|
||||||
|
@ -8,6 +8,6 @@
|
||||||
- g_message ("url: exec failed: wget: %s\n", g_strerror(errno));
|
- g_message ("url: exec failed: wget: %s\n", g_strerror(errno));
|
||||||
+ execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL);
|
+ execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL);
|
||||||
+ g_message ("url: exec failed: fetch: %s\n", g_strerror(errno));
|
+ g_message ("url: exec failed: fetch: %s\n", g_strerror(errno));
|
||||||
|
g_free (tmpname);
|
||||||
_exit(127);
|
_exit(127);
|
||||||
}
|
}
|
||||||
else
|
|
||||||
|
|
|
@ -9,6 +9,8 @@ include/gck/gckmath.h
|
||||||
include/gck/gcktypes.h
|
include/gck/gcktypes.h
|
||||||
include/gck/gckui.h
|
include/gck/gckui.h
|
||||||
include/gck/gckvector.h
|
include/gck/gckvector.h
|
||||||
|
include/libgimp/gimpcolorbutton.h
|
||||||
|
include/libgimp/gimpcompat.h
|
||||||
include/libgimp/color_display.h
|
include/libgimp/color_display.h
|
||||||
include/libgimp/color_selector.h
|
include/libgimp/color_selector.h
|
||||||
include/libgimp/gimp.h
|
include/libgimp/gimp.h
|
||||||
|
@ -36,21 +38,22 @@ include/libgimp/parasiteP.h
|
||||||
include/libgimp/parasiteio.h
|
include/libgimp/parasiteio.h
|
||||||
lib/libgck.a
|
lib/libgck.a
|
||||||
lib/libgck.so
|
lib/libgck.so
|
||||||
lib/libgck.so.10
|
lib/libgck.so.11
|
||||||
lib/libgimp.a
|
lib/libgimp.a
|
||||||
lib/libgimp.so
|
lib/libgimp.so
|
||||||
lib/libgimp.so.10
|
lib/libgimp.so.11
|
||||||
lib/libgimpui.a
|
lib/libgimpui.a
|
||||||
lib/libgimpui.so
|
lib/libgimpui.so
|
||||||
lib/libgimpui.so.10
|
lib/libgimpui.so.11
|
||||||
lib/libgpc.a
|
lib/libgpc.a
|
||||||
lib/libmegawidget.a
|
lib/libmegawidget.a
|
||||||
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
|
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
|
||||||
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
|
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
|
||||||
libexec/gimp/1.1/modules/libcdisplay_gamma.so
|
libexec/gimp/1.1/modules/libcdisplay_gamma.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_gtk.so
|
libexec/gimp/1.1/modules/libcolorsel_gtk.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_triangle.so
|
libexec/gimp/1.1/modules/libcolorsel_triangle.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_water.so
|
libexec/gimp/1.1/modules/libcolorsel_water.a
|
||||||
|
libexec/gimp/1.1/plug-ins/helpbrowser
|
||||||
libexec/gimp/1.1/plug-ins/AlienMap
|
libexec/gimp/1.1/plug-ins/AlienMap
|
||||||
libexec/gimp/1.1/plug-ins/AlienMap2
|
libexec/gimp/1.1/plug-ins/AlienMap2
|
||||||
libexec/gimp/1.1/plug-ins/CEL
|
libexec/gimp/1.1/plug-ins/CEL
|
||||||
|
@ -1039,6 +1042,7 @@ share/gimp/tips/gimp_tips.ja.txt
|
||||||
share/gimp/tips/gimp_tips.it.txt
|
share/gimp/tips/gimp_tips.it.txt
|
||||||
share/gimp/tips/gimp_conseils.fr.txt
|
share/gimp/tips/gimp_conseils.fr.txt
|
||||||
share/gimp/tips/gimp_tips.ru.txt
|
share/gimp/tips/gimp_tips.ru.txt
|
||||||
|
share/gimp/tips/gimp_tips.ko.txt
|
||||||
share/gimp/unitrc
|
share/gimp/unitrc
|
||||||
share/gimp/user_install
|
share/gimp/user_install
|
||||||
share/locale/de/LC_MESSAGES/gimp.mo
|
share/locale/de/LC_MESSAGES/gimp.mo
|
||||||
|
|
|
@ -1,16 +1,17 @@
|
||||||
# New ports collection makefile for: Gimp
|
# New ports collection makefile for: Gimp
|
||||||
# Version required: 1.1.10
|
# Version required: 1.1.11
|
||||||
# Date created: Mon Nov 18 21:28:43 CST 1996
|
# Date created: Mon Nov 18 21:28:43 CST 1996
|
||||||
# Whom: erich@FreeBSD.org
|
# Whom: erich@FreeBSD.org
|
||||||
#
|
#
|
||||||
# $FreeBSD$
|
# $FreeBSD$
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= gimp-1.1.10
|
DISTNAME= gimp-${VERSION}
|
||||||
CATEGORIES= graphics
|
CATEGORIES= graphics
|
||||||
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.10/ \
|
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v${VERSION}/ \
|
||||||
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.10/ \
|
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v${VERSION}/ \
|
||||||
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.10/
|
http://www.ameth.org/gimp/pub/gimp/unstable/v${VERSION}/ \
|
||||||
|
ftp://ftp.gimp.org/pub/gimp/unstable/old/v${VERSION}/
|
||||||
|
|
||||||
MAINTAINER= erich@FreeBSD.org
|
MAINTAINER= erich@FreeBSD.org
|
||||||
|
|
||||||
|
@ -22,6 +23,7 @@ LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \
|
||||||
png.3:${PORTSDIR}/graphics/png \
|
png.3:${PORTSDIR}/graphics/png \
|
||||||
tiff.4:${PORTSDIR}/graphics/tiff
|
tiff.4:${PORTSDIR}/graphics/tiff
|
||||||
|
|
||||||
|
VERSION= 1.1.11
|
||||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (gimp-1.1.10.tar.bz2) = a5bf11f5bd1050d9d0ed1fc941f4302c
|
MD5 (gimp-1.1.11.tar.bz2) = c22832463f6a6333c1cab549dba8bcbc
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
--- plug-ins/common/url.c.orig Sat May 30 15:32:36 1998
|
--- plug-ins/common/url.c Sun Nov 7 19:24:37 1999
|
||||||
+++ plug-ins/common/url.c Sun Jun 7 10:09:34 1998
|
+++ plug-ins/common/url.c.new Sun Nov 7 19:26:39 1999
|
||||||
@@ -146,8 +146,8 @@
|
@@ -151,8 +151,8 @@
|
||||||
}
|
}
|
||||||
else if (pid == 0)
|
else if (pid == 0)
|
||||||
{
|
{
|
||||||
|
@ -8,6 +8,6 @@
|
||||||
- g_message ("url: exec failed: wget: %s\n", g_strerror(errno));
|
- g_message ("url: exec failed: wget: %s\n", g_strerror(errno));
|
||||||
+ execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL);
|
+ execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL);
|
||||||
+ g_message ("url: exec failed: fetch: %s\n", g_strerror(errno));
|
+ g_message ("url: exec failed: fetch: %s\n", g_strerror(errno));
|
||||||
|
g_free (tmpname);
|
||||||
_exit(127);
|
_exit(127);
|
||||||
}
|
}
|
||||||
else
|
|
||||||
|
|
|
@ -9,6 +9,8 @@ include/gck/gckmath.h
|
||||||
include/gck/gcktypes.h
|
include/gck/gcktypes.h
|
||||||
include/gck/gckui.h
|
include/gck/gckui.h
|
||||||
include/gck/gckvector.h
|
include/gck/gckvector.h
|
||||||
|
include/libgimp/gimpcolorbutton.h
|
||||||
|
include/libgimp/gimpcompat.h
|
||||||
include/libgimp/color_display.h
|
include/libgimp/color_display.h
|
||||||
include/libgimp/color_selector.h
|
include/libgimp/color_selector.h
|
||||||
include/libgimp/gimp.h
|
include/libgimp/gimp.h
|
||||||
|
@ -36,21 +38,22 @@ include/libgimp/parasiteP.h
|
||||||
include/libgimp/parasiteio.h
|
include/libgimp/parasiteio.h
|
||||||
lib/libgck.a
|
lib/libgck.a
|
||||||
lib/libgck.so
|
lib/libgck.so
|
||||||
lib/libgck.so.10
|
lib/libgck.so.11
|
||||||
lib/libgimp.a
|
lib/libgimp.a
|
||||||
lib/libgimp.so
|
lib/libgimp.so
|
||||||
lib/libgimp.so.10
|
lib/libgimp.so.11
|
||||||
lib/libgimpui.a
|
lib/libgimpui.a
|
||||||
lib/libgimpui.so
|
lib/libgimpui.so
|
||||||
lib/libgimpui.so.10
|
lib/libgimpui.so.11
|
||||||
lib/libgpc.a
|
lib/libgpc.a
|
||||||
lib/libmegawidget.a
|
lib/libmegawidget.a
|
||||||
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
|
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
|
||||||
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
|
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
|
||||||
libexec/gimp/1.1/modules/libcdisplay_gamma.so
|
libexec/gimp/1.1/modules/libcdisplay_gamma.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_gtk.so
|
libexec/gimp/1.1/modules/libcolorsel_gtk.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_triangle.so
|
libexec/gimp/1.1/modules/libcolorsel_triangle.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_water.so
|
libexec/gimp/1.1/modules/libcolorsel_water.a
|
||||||
|
libexec/gimp/1.1/plug-ins/helpbrowser
|
||||||
libexec/gimp/1.1/plug-ins/AlienMap
|
libexec/gimp/1.1/plug-ins/AlienMap
|
||||||
libexec/gimp/1.1/plug-ins/AlienMap2
|
libexec/gimp/1.1/plug-ins/AlienMap2
|
||||||
libexec/gimp/1.1/plug-ins/CEL
|
libexec/gimp/1.1/plug-ins/CEL
|
||||||
|
@ -1039,6 +1042,7 @@ share/gimp/tips/gimp_tips.ja.txt
|
||||||
share/gimp/tips/gimp_tips.it.txt
|
share/gimp/tips/gimp_tips.it.txt
|
||||||
share/gimp/tips/gimp_conseils.fr.txt
|
share/gimp/tips/gimp_conseils.fr.txt
|
||||||
share/gimp/tips/gimp_tips.ru.txt
|
share/gimp/tips/gimp_tips.ru.txt
|
||||||
|
share/gimp/tips/gimp_tips.ko.txt
|
||||||
share/gimp/unitrc
|
share/gimp/unitrc
|
||||||
share/gimp/user_install
|
share/gimp/user_install
|
||||||
share/locale/de/LC_MESSAGES/gimp.mo
|
share/locale/de/LC_MESSAGES/gimp.mo
|
||||||
|
|
|
@ -1,16 +1,17 @@
|
||||||
# New ports collection makefile for: Gimp
|
# New ports collection makefile for: Gimp
|
||||||
# Version required: 1.1.10
|
# Version required: 1.1.11
|
||||||
# Date created: Mon Nov 18 21:28:43 CST 1996
|
# Date created: Mon Nov 18 21:28:43 CST 1996
|
||||||
# Whom: erich@FreeBSD.org
|
# Whom: erich@FreeBSD.org
|
||||||
#
|
#
|
||||||
# $FreeBSD$
|
# $FreeBSD$
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= gimp-1.1.10
|
DISTNAME= gimp-${VERSION}
|
||||||
CATEGORIES= graphics
|
CATEGORIES= graphics
|
||||||
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.10/ \
|
MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v${VERSION}/ \
|
||||||
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.10/ \
|
ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v${VERSION}/ \
|
||||||
http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.10/
|
http://www.ameth.org/gimp/pub/gimp/unstable/v${VERSION}/ \
|
||||||
|
ftp://ftp.gimp.org/pub/gimp/unstable/old/v${VERSION}/
|
||||||
|
|
||||||
MAINTAINER= erich@FreeBSD.org
|
MAINTAINER= erich@FreeBSD.org
|
||||||
|
|
||||||
|
@ -22,6 +23,7 @@ LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \
|
||||||
png.3:${PORTSDIR}/graphics/png \
|
png.3:${PORTSDIR}/graphics/png \
|
||||||
tiff.4:${PORTSDIR}/graphics/tiff
|
tiff.4:${PORTSDIR}/graphics/tiff
|
||||||
|
|
||||||
|
VERSION= 1.1.11
|
||||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (gimp-1.1.10.tar.bz2) = a5bf11f5bd1050d9d0ed1fc941f4302c
|
MD5 (gimp-1.1.11.tar.bz2) = c22832463f6a6333c1cab549dba8bcbc
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
--- plug-ins/common/url.c.orig Sat May 30 15:32:36 1998
|
--- plug-ins/common/url.c Sun Nov 7 19:24:37 1999
|
||||||
+++ plug-ins/common/url.c Sun Jun 7 10:09:34 1998
|
+++ plug-ins/common/url.c.new Sun Nov 7 19:26:39 1999
|
||||||
@@ -146,8 +146,8 @@
|
@@ -151,8 +151,8 @@
|
||||||
}
|
}
|
||||||
else if (pid == 0)
|
else if (pid == 0)
|
||||||
{
|
{
|
||||||
|
@ -8,6 +8,6 @@
|
||||||
- g_message ("url: exec failed: wget: %s\n", g_strerror(errno));
|
- g_message ("url: exec failed: wget: %s\n", g_strerror(errno));
|
||||||
+ execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL);
|
+ execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL);
|
||||||
+ g_message ("url: exec failed: fetch: %s\n", g_strerror(errno));
|
+ g_message ("url: exec failed: fetch: %s\n", g_strerror(errno));
|
||||||
|
g_free (tmpname);
|
||||||
_exit(127);
|
_exit(127);
|
||||||
}
|
}
|
||||||
else
|
|
||||||
|
|
|
@ -9,6 +9,8 @@ include/gck/gckmath.h
|
||||||
include/gck/gcktypes.h
|
include/gck/gcktypes.h
|
||||||
include/gck/gckui.h
|
include/gck/gckui.h
|
||||||
include/gck/gckvector.h
|
include/gck/gckvector.h
|
||||||
|
include/libgimp/gimpcolorbutton.h
|
||||||
|
include/libgimp/gimpcompat.h
|
||||||
include/libgimp/color_display.h
|
include/libgimp/color_display.h
|
||||||
include/libgimp/color_selector.h
|
include/libgimp/color_selector.h
|
||||||
include/libgimp/gimp.h
|
include/libgimp/gimp.h
|
||||||
|
@ -36,21 +38,22 @@ include/libgimp/parasiteP.h
|
||||||
include/libgimp/parasiteio.h
|
include/libgimp/parasiteio.h
|
||||||
lib/libgck.a
|
lib/libgck.a
|
||||||
lib/libgck.so
|
lib/libgck.so
|
||||||
lib/libgck.so.10
|
lib/libgck.so.11
|
||||||
lib/libgimp.a
|
lib/libgimp.a
|
||||||
lib/libgimp.so
|
lib/libgimp.so
|
||||||
lib/libgimp.so.10
|
lib/libgimp.so.11
|
||||||
lib/libgimpui.a
|
lib/libgimpui.a
|
||||||
lib/libgimpui.so
|
lib/libgimpui.so
|
||||||
lib/libgimpui.so.10
|
lib/libgimpui.so.11
|
||||||
lib/libgpc.a
|
lib/libgpc.a
|
||||||
lib/libmegawidget.a
|
lib/libmegawidget.a
|
||||||
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
|
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
|
||||||
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
|
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
|
||||||
libexec/gimp/1.1/modules/libcdisplay_gamma.so
|
libexec/gimp/1.1/modules/libcdisplay_gamma.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_gtk.so
|
libexec/gimp/1.1/modules/libcolorsel_gtk.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_triangle.so
|
libexec/gimp/1.1/modules/libcolorsel_triangle.a
|
||||||
libexec/gimp/1.1/modules/libcolorsel_water.so
|
libexec/gimp/1.1/modules/libcolorsel_water.a
|
||||||
|
libexec/gimp/1.1/plug-ins/helpbrowser
|
||||||
libexec/gimp/1.1/plug-ins/AlienMap
|
libexec/gimp/1.1/plug-ins/AlienMap
|
||||||
libexec/gimp/1.1/plug-ins/AlienMap2
|
libexec/gimp/1.1/plug-ins/AlienMap2
|
||||||
libexec/gimp/1.1/plug-ins/CEL
|
libexec/gimp/1.1/plug-ins/CEL
|
||||||
|
@ -1039,6 +1042,7 @@ share/gimp/tips/gimp_tips.ja.txt
|
||||||
share/gimp/tips/gimp_tips.it.txt
|
share/gimp/tips/gimp_tips.it.txt
|
||||||
share/gimp/tips/gimp_conseils.fr.txt
|
share/gimp/tips/gimp_conseils.fr.txt
|
||||||
share/gimp/tips/gimp_tips.ru.txt
|
share/gimp/tips/gimp_tips.ru.txt
|
||||||
|
share/gimp/tips/gimp_tips.ko.txt
|
||||||
share/gimp/unitrc
|
share/gimp/unitrc
|
||||||
share/gimp/user_install
|
share/gimp/user_install
|
||||||
share/locale/de/LC_MESSAGES/gimp.mo
|
share/locale/de/LC_MESSAGES/gimp.mo
|
||||||
|
|
Loading…
Add table
Reference in a new issue