summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-gfx/povray/files')
-rw-r--r--media-gfx/povray/files/povray-3.7.0_beta35-configure-allow-libpng14.patch14
-rw-r--r--media-gfx/povray/files/povray-3.7.0_beta35-libpng14.patch20
-rw-r--r--media-gfx/povray/files/povray-3.7.0_beta35-print-extend-expiration-info.patch28
3 files changed, 0 insertions, 62 deletions
diff --git a/media-gfx/povray/files/povray-3.7.0_beta35-configure-allow-libpng14.patch b/media-gfx/povray/files/povray-3.7.0_beta35-configure-allow-libpng14.patch
deleted file mode 100644
index 363ff8d50d57..000000000000
--- a/media-gfx/povray/files/povray-3.7.0_beta35-configure-allow-libpng14.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- povray-3.7.0.beta.35a/configure.ac.old 2010-05-24 14:57:58.000000000 -0600
-+++ povray-3.7.0.beta.35a/configure.ac 2010-05-24 15:12:20.000000000 -0600
-@@ -361,11 +361,6 @@ else
- fi
- AC_MSG_RESULT([yes])
- AX_CHECK_LIB([png], [$required_libpng_version], [png12 png], [png_get_libpng_ver], [png.h], [png_get_libpng_ver(NULL)], [$with_libpng])
-- ### FIXME: do not allow for 1.4.x
-- AC_MSG_CHECKING([for libpng version < 1.4 (not supported at the moment!)])
-- AX_COMPARE_VERSION([$ax_check_lib_version], [ge], [1.4], [ax_check_lib="bad"], [ax_check_lib="ok"])
-- AC_MSG_RESULT([$ax_check_lib])
-- ###
- if test x"$ax_check_lib" != x"ok"; then
- AC_MSG_ERROR([cannot find a suitable PNG library])
- else
diff --git a/media-gfx/povray/files/povray-3.7.0_beta35-libpng14.patch b/media-gfx/povray/files/povray-3.7.0_beta35-libpng14.patch
deleted file mode 100644
index efc4ca46b10b..000000000000
--- a/media-gfx/povray/files/povray-3.7.0_beta35-libpng14.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- source/base/image/png.cpp
-+++ source/base/image/png.cpp
-@@ -433,7 +433,7 @@
- entry.alpha = 1.0f ;
- if (has_alpha)
- if (index < r_info_ptr->num_trans)
-- entry.alpha = (float) (r_info_ptr->trans[index]) / 255.0;
-+ entry.alpha = (float) (r_info_ptr->trans_alpha[index]) / 255.0;
- colormap.push_back (entry);
- }
-
-@@ -459,7 +459,7 @@
- entry.alpha = 1.0f ;
- if (r_info_ptr->valid & PNG_INFO_tRNS)
- if (index < r_info_ptr->num_trans)
-- entry.alpha = (float) (r_info_ptr->trans[index]) / 255.0;
-+ entry.alpha = (float) (r_info_ptr->trans_alpha[index]) / 255.0;
- colormap.push_back (entry);
- }
-
diff --git a/media-gfx/povray/files/povray-3.7.0_beta35-print-extend-expiration-info.patch b/media-gfx/povray/files/povray-3.7.0_beta35-print-extend-expiration-info.patch
deleted file mode 100644
index beb6d9385c34..000000000000
--- a/media-gfx/povray/files/povray-3.7.0_beta35-print-extend-expiration-info.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- vfe/unix/unixconsole.cpp~ 2008-10-07 17:06:27.000000000 -0600
-+++ vfe/unix/unixconsole.cpp 2008-11-08 14:11:58.000000000 -0700
-@@ -281,10 +281,21 @@
-
- if (user_code != current_code)
- {
-- fprintf(stderr, "%s: this pre-release version of POV-Ray for Unix %s\n",
-- PACKAGE,
-- current_week < 52 ? "has expired" : "is over twelve months old and is no longer usable"
-- );
-+ if (current_week < 52)
-+ {
-+ fprintf(stderr, "%s: this pre-release version of POV-Ray for Unix %s\n",
-+ PACKAGE,
-+ "has expired"
-+ );
-+ fprintf(stderr, "\nTo extend the license period, you can do something like the following\n(adjust syntax for your shell):\n\n export POVRAY_BETA=`povray --betacode 2>&1`\n\n");
-+ }
-+ else
-+ {
-+ fprintf(stderr, "%s: this pre-release version of POV-Ray for Unix %s\n",
-+ PACKAGE,
-+ "is over twelve months old and is no longer usable"
-+ );
-+ }
- exit(RETURN_ERROR);
- }
- current_time = EXPIRE_AT + (current_week+1)*spw - current_time;