diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2006-05-06 00:38:53 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2006-05-06 00:38:53 +0000 |
commit | 4c8f42a196f2a91fe45a088564d00d719f70284d (patch) | |
tree | 3312213a4b06bbe7cc3b990ab3a08b9306d6e5e9 /media-gfx/pixie/files | |
parent | Drop old versions. (diff) | |
download | historical-4c8f42a196f2a91fe45a088564d00d719f70284d.tar.gz historical-4c8f42a196f2a91fe45a088564d00d719f70284d.tar.bz2 historical-4c8f42a196f2a91fe45a088564d00d719f70284d.zip |
Version bump.
Package-Manager: portage-2.1_pre10-r2
Diffstat (limited to 'media-gfx/pixie/files')
-rw-r--r-- | media-gfx/pixie/files/digest-pixie-1.6.3 | 3 | ||||
-rw-r--r-- | media-gfx/pixie/files/pixie-1.6.3-libcommon.patch | 179 |
2 files changed, 182 insertions, 0 deletions
diff --git a/media-gfx/pixie/files/digest-pixie-1.6.3 b/media-gfx/pixie/files/digest-pixie-1.6.3 new file mode 100644 index 000000000000..6b3ec2c27e18 --- /dev/null +++ b/media-gfx/pixie/files/digest-pixie-1.6.3 @@ -0,0 +1,3 @@ +MD5 fa36424619d5dda8515f009e01df2207 Pixie-src-1.6.3.tgz 6125284 +RMD160 d47f70fb6a9362d389c567a73d48dd2c2d4eb939 Pixie-src-1.6.3.tgz 6125284 +SHA256 19cd9aee4b360cde8bb12862b6e312498fd3a257d58d6d133150324a433180b6 Pixie-src-1.6.3.tgz 6125284 diff --git a/media-gfx/pixie/files/pixie-1.6.3-libcommon.patch b/media-gfx/pixie/files/pixie-1.6.3-libcommon.patch new file mode 100644 index 000000000000..ab0a54172a39 --- /dev/null +++ b/media-gfx/pixie/files/pixie-1.6.3-libcommon.patch @@ -0,0 +1,179 @@ +diff -Naurp Pixie.orig/src/common/Makefile.am Pixie/src/common/Makefile.am +--- Pixie.orig/src/common/Makefile.am 2006-04-22 16:36:46.000000000 -0700 ++++ Pixie/src/common/Makefile.am 2006-05-05 17:33:54.000000000 -0700 +@@ -1,10 +1,9 @@ +-lib_LTLIBRARIES = libcommon.la ++lib_LTLIBRARIES = libpixiecommon.la + +-LIBCOMMON_CURRENT_VERSION=0 +-LIBCOMMON_REVISION_VERSION=0 +-LIBCOMMON_AGE_VERSION=0 ++LIBPIXIECOMMON_CURRENT_VERSION=0 ++LIBPIXIECOMMON_REVISION_VERSION=0 ++LIBPIXIECOMMON_AGE_VERSION=0 + +-libcommon_la_LDFLAGS = -export-dynamic -version-info $(LIBCOMMON_CURRENT_VERSION):$(LIBCOMMON_REVISION_VERSION):$(LIBCOMMON_AGE_VERSION) ++libpixiecommon_la_LDFLAGS = -export-dynamic -version-info $(LIBPIXIECOMMON_CURRENT_VERSION):$(LIBPIXIECOMMON_REVISION_VERSION):$(LIBPIXIECOMMON_AGE_VERSION) + +-libcommon_la_SOURCES = algebra.cpp os.cpp memoryman.cpp +- ++libpixiecommon_la_SOURCES = algebra.cpp os.cpp memoryman.cpp +diff -Naurp Pixie.orig/src/common/os.h Pixie/src/common/os.h +--- Pixie.orig/src/common/os.h 2006-04-22 16:36:42.000000000 -0700 ++++ Pixie/src/common/os.h 2006-05-05 17:33:54.000000000 -0700 +@@ -32,7 +32,10 @@ + #define OS_H + + #include "global.h" +-#include "../../config.h" ++ ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif + + #ifdef WIN32 + // >> WIN32 +diff -Naurp Pixie.orig/src/file/Makefile.am Pixie/src/file/Makefile.am +--- Pixie.orig/src/file/Makefile.am 2006-04-22 16:36:46.000000000 -0700 ++++ Pixie/src/file/Makefile.am 2006-05-05 17:33:54.000000000 -0700 +@@ -1,7 +1,7 @@ + displays_LTLIBRARIES = file.la + + file_la_SOURCES = file.cpp +-file_la_LIBADD = ../common/libcommon.la @TIFF_LIBS@ ++file_la_LIBADD = ../common/libpixiecommon.la @TIFF_LIBS@ + file_la_LDFLAGS = -module -avoid-version + + INCLUDES = -I.. +diff -Naurp Pixie.orig/src/framebuffer/Makefile.am Pixie/src/framebuffer/Makefile.am +--- Pixie.orig/src/framebuffer/Makefile.am 2006-04-22 16:36:46.000000000 -0700 ++++ Pixie/src/framebuffer/Makefile.am 2006-05-05 17:33:54.000000000 -0700 +@@ -1,7 +1,7 @@ + displays_LTLIBRARIES = framebuffer.la + + framebuffer_la_SOURCES = framebuffer.cpp fbx.cpp +-framebuffer_la_LIBADD = ../common/libcommon.la @X_LIBS@ ++framebuffer_la_LIBADD = ../common/libpixiecommon.la @X_LIBS@ + framebuffer_la_LDFLAGS = -module -avoid-version @X_LDFLAGS@ + framebuffer_la_CXXFLAGS = @X_CFLAGS@ + +diff -Naurp Pixie.orig/src/openexr/Makefile.am Pixie/src/openexr/Makefile.am +--- Pixie.orig/src/openexr/Makefile.am 2006-04-22 16:36:46.000000000 -0700 ++++ Pixie/src/openexr/Makefile.am 2006-05-05 17:33:54.000000000 -0700 +@@ -3,7 +3,7 @@ if BUILD_OPENEXR + endif + + openexr_la_SOURCES = openexr.cpp +-openexr_la_LIBADD = ../common/libcommon.la @OPENEXR_LIBS@ ++openexr_la_LIBADD = ../common/libpixiecommon.la @OPENEXR_LIBS@ + openexr_la_LDFLAGS = -module -avoid-version + + INCLUDES = -I.. @OPENEXR_INCLUDES@ +diff -Naurp Pixie.orig/src/precomp/Makefile.am Pixie/src/precomp/Makefile.am +--- Pixie.orig/src/precomp/Makefile.am 2006-04-22 16:36:46.000000000 -0700 ++++ Pixie/src/precomp/Makefile.am 2006-05-05 17:33:54.000000000 -0700 +@@ -2,7 +2,7 @@ noinst_PROGRAMS = precomp + + precomp_SOURCES = precomp.cpp + +-precomp_LDADD = ../common/libcommon.la ++precomp_LDADD = ../common/libpixiecommon.la + + INCLUDES = -I.. + +diff -Naurp Pixie.orig/src/rgbe/Makefile.am Pixie/src/rgbe/Makefile.am +--- Pixie.orig/src/rgbe/Makefile.am 2006-04-22 16:36:46.000000000 -0700 ++++ Pixie/src/rgbe/Makefile.am 2006-05-05 17:33:54.000000000 -0700 +@@ -1,7 +1,7 @@ + displays_LTLIBRARIES = rgbe.la + + rgbe_la_SOURCES = file.cpp rgbe.cpp +-rgbe_la_LIBADD = ../common/libcommon.la ++rgbe_la_LIBADD = ../common/libpixiecommon.la + rgbe_la_LDFLAGS = -module -avoid-version + + INCLUDES = -I.. +diff -Naurp Pixie.orig/src/ri/Makefile.am Pixie/src/ri/Makefile.am +--- Pixie.orig/src/ri/Makefile.am 2006-04-22 16:36:46.000000000 -0700 ++++ Pixie/src/ri/Makefile.am 2006-05-05 17:33:54.000000000 -0700 +@@ -66,7 +66,7 @@ libri_la_SOURCES = attributes.cpp \ + xform.cpp \ + zbuffer.cpp + +-libri_la_LIBADD = ../common/libcommon.la @TIFF_LIBS@ ++libri_la_LIBADD = ../common/libpixiecommon.la @TIFF_LIBS@ + + INCLUDES = -I.. + +diff -Naurp Pixie.orig/src/rndr/Makefile.am Pixie/src/rndr/Makefile.am +--- Pixie.orig/src/rndr/Makefile.am 2006-04-22 16:36:46.000000000 -0700 ++++ Pixie/src/rndr/Makefile.am 2006-05-05 17:33:54.000000000 -0700 +@@ -1,7 +1,7 @@ + bin_PROGRAMS = rndr + + rndr_SOURCES = rndr.cpp +-rndr_LDADD = ../ri/libri.la ../common/libcommon.la ++rndr_LDADD = ../ri/libri.la ../common/libpixiecommon.la + + INCLUDES = -I.. + +diff -Naurp Pixie.orig/src/sdr/Makefile.am Pixie/src/sdr/Makefile.am +--- Pixie.orig/src/sdr/Makefile.am 2006-04-22 16:36:46.000000000 -0700 ++++ Pixie/src/sdr/Makefile.am 2006-05-05 17:33:54.000000000 -0700 +@@ -8,7 +8,7 @@ libsdr_la_LDFLAGS = -export-dynamic -ver + + libsdr_la_SOURCES = sdr.cpp + +-libsdr_la_LIBADD = ../common/libcommon.la ++libsdr_la_LIBADD = ../common/libpixiecommon.la + + INCLUDES = -I.. + +diff -Naurp Pixie.orig/src/sdrc/Makefile.am Pixie/src/sdrc/Makefile.am +--- Pixie.orig/src/sdrc/Makefile.am 2006-04-22 16:36:46.000000000 -0700 ++++ Pixie/src/sdrc/Makefile.am 2006-05-05 17:33:54.000000000 -0700 +@@ -1,7 +1,7 @@ + bin_PROGRAMS = sdrc + + sdrc_SOURCES = sdrc.cpp dso.cpp expression.cpp opcodes.cpp sdr.cpp sl.cpp pp1.c pp2.c pp3.c pp4.c pp5.c pp6.c pp7.c pp8.c +-sdrc_LDADD = ../common/libcommon.la ++sdrc_LDADD = ../common/libpixiecommon.la + + INCLUDES = -I.. + +diff -Naurp Pixie.orig/src/sdrinfo/Makefile.am Pixie/src/sdrinfo/Makefile.am +--- Pixie.orig/src/sdrinfo/Makefile.am 2006-04-22 16:36:46.000000000 -0700 ++++ Pixie/src/sdrinfo/Makefile.am 2006-05-05 17:33:54.000000000 -0700 +@@ -1,7 +1,7 @@ + bin_PROGRAMS = sdrinfo + + sdrinfo_SOURCES = sdrinfo.cpp +-sdrinfo_LDADD = ../sdr/libsdr.la ../common/libcommon.la ++sdrinfo_LDADD = ../sdr/libsdr.la ../common/libpixiecommon.la + + INCLUDES = -I.. + +diff -Naurp Pixie.orig/src/show/Makefile.am Pixie/src/show/Makefile.am +--- Pixie.orig/src/show/Makefile.am 2006-04-22 16:36:46.000000000 -0700 ++++ Pixie/src/show/Makefile.am 2006-05-05 17:33:54.000000000 -0700 +@@ -12,7 +12,7 @@ show_SOURCES = cacheView.cpp \ + imageView.cpp \ + show.cpp + +-show_LDADD = @X_LIBS@ @LIBFLTK@ @LIBFLTKGL@ @X_LDFLAGS@ @TIFF_LIBS@ ../common/libcommon.la ++show_LDADD = @X_LIBS@ @LIBFLTK@ @LIBFLTKGL@ @X_LDFLAGS@ @TIFF_LIBS@ ../common/libpixiecommon.la + show_CXXFLAGS = @X_CFLAGS@ + + INCLUDES = -I.. +diff -Naurp Pixie.orig/src/texmake/Makefile.am Pixie/src/texmake/Makefile.am +--- Pixie.orig/src/texmake/Makefile.am 2006-04-22 16:36:46.000000000 -0700 ++++ Pixie/src/texmake/Makefile.am 2006-05-05 17:33:54.000000000 -0700 +@@ -1,7 +1,7 @@ + bin_PROGRAMS = texmake + + texmake_SOURCES = texmake.cpp +-texmake_LDADD = ../ri/libri.la ../common/libcommon.la ++texmake_LDADD = ../ri/libri.la ../common/libpixiecommon.la + + INCLUDES = -I.. + |