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/gimpshop/files | |
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/gimpshop/files')
4 files changed, 10 insertions, 62 deletions
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> |