summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'kde-base')
-rw-r--r--kde-base/ksplash/ChangeLog6
-rw-r--r--kde-base/ksplash/files/ksplash-4.3.5-libpng14.patch28
2 files changed, 5 insertions, 29 deletions
diff --git a/kde-base/ksplash/ChangeLog b/kde-base/ksplash/ChangeLog
index e8cf35d40d96..64a902a95019 100644
--- a/kde-base/ksplash/ChangeLog
+++ b/kde-base/ksplash/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for kde-base/ksplash
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/ksplash/ChangeLog,v 1.74 2010/08/09 17:34:46 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/ksplash/ChangeLog,v 1.75 2010/08/10 13:20:35 scarabeus Exp $
+
+ 10 Aug 2010; Tomáš Chvátal <scarabeus@gentoo.org>
+ -files/ksplash-4.3.5-libpng14.patch:
+ Drop unused patch.
09 Aug 2010; Tomáš Chvátal <scarabeus@gentoo.org> ksplash-4.4.5.ebuild:
Drop alpha ia64 and sparc per the AT Lead permission.
diff --git a/kde-base/ksplash/files/ksplash-4.3.5-libpng14.patch b/kde-base/ksplash/files/ksplash-4.3.5-libpng14.patch
deleted file mode 100644
index 1077fdcc8f2b..000000000000
--- a/kde-base/ksplash/files/ksplash-4.3.5-libpng14.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-http://bugs.gentoo.org/319901
-
---- ksplash/ksplashx/qpngio.cpp
-+++ ksplash/ksplashx/qpngio.cpp
-@@ -151,7 +151,11 @@
- image.setColor( i, qRgba(c,c,c,0xff) );
- }
- if ( png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) ) {
-+ #if PNG_LIBPNG_VER < 10400
- const int g = info_ptr->trans_values.gray;
-+ #else
-+ const int g = info_ptr->trans_color.gray;
-+ #endif
- if (g < ncols) {
- image.setAlphaBuffer(true);
- image.setColor(g, image.color(g) & RGB_MASK);
-@@ -179,7 +183,11 @@
- info_ptr->palette[i].red,
- info_ptr->palette[i].green,
- info_ptr->palette[i].blue,
-+ #if PNG_LIBPNG_VER < 10400
- info_ptr->trans[i]
-+ #else
-+ info_ptr->trans_alpha[i]
-+ #endif
- )
- );
- i++;