diff options
author | Wulf Krueger <philantrop@gentoo.org> | 2007-05-21 20:15:56 +0000 |
---|---|---|
committer | Wulf Krueger <philantrop@gentoo.org> | 2007-05-21 20:15:56 +0000 |
commit | c60cf7678dd602b5c304cf3ddde89edfc44ea841 (patch) | |
tree | 40de001e725c9aaf98980d9483284bd9c9fa784c /media-gfx/digikam/files | |
parent | Needs >=dev-java/commons-io-1.3. Found in bug #178645. (diff) | |
download | historical-c60cf7678dd602b5c304cf3ddde89edfc44ea841.tar.gz historical-c60cf7678dd602b5c304cf3ddde89edfc44ea841.tar.bz2 historical-c60cf7678dd602b5c304cf3ddde89edfc44ea841.zip |
Added patch to compile with >=media-gfx/exiv2-0.14. Fixes bug 178939. Fixed manifest, fixes bug 166516.
Package-Manager: portage-2.1.2.7
Diffstat (limited to 'media-gfx/digikam/files')
-rw-r--r-- | media-gfx/digikam/files/digikam-0.9.1-exiv2.patch | 116 |
1 files changed, 116 insertions, 0 deletions
diff --git a/media-gfx/digikam/files/digikam-0.9.1-exiv2.patch b/media-gfx/digikam/files/digikam-0.9.1-exiv2.patch new file mode 100644 index 000000000000..2b6c72db38f2 --- /dev/null +++ b/media-gfx/digikam/files/digikam-0.9.1-exiv2.patch @@ -0,0 +1,116 @@ +--- digikam-0.9.1.orig/digikam/libs/widgets/metadata/exifwidget.cpp 2007-03-04 21:33:32.000000000 +0100 ++++ digikam-0.9.1/digikam/libs/widgets/metadata/exifwidget.cpp 2007-05-17 15:05:43.000000000 +0200 +@@ -181,7 +181,7 @@ + catch (Exiv2::Error& e) + { + DDebug() << "Cannot parse EXIF metadata using Exiv2 (" +- << QString::fromAscii(e.what().c_str()) ++ << QString::fromAscii(e.what()) + << ")" << endl; + return false; + } +@@ -211,7 +211,7 @@ + catch (Exiv2::Error& e) + { + DDebug() << "Cannot get metadata tag title using Exiv2 (" +- << QString::fromAscii(e.what().c_str()) ++ << QString::fromAscii(e.what()) + << ")" << endl; + return i18n("Unknown"); + } +@@ -228,7 +228,7 @@ + catch (Exiv2::Error& e) + { + DDebug() << "Cannot get metadata tag description using Exiv2 (" +- << QString::fromAscii(e.what().c_str()) ++ << QString::fromAscii(e.what()) + << ")" << endl; + return i18n("No description available"); + } +--- digikam-0.9.1.orig/digikam/libs/widgets/metadata/gpswidget.cpp 2007-03-04 21:33:32.000000000 +0100 ++++ digikam-0.9.1/digikam/libs/widgets/metadata/gpswidget.cpp 2007-05-17 15:06:40.000000000 +0200 +@@ -305,7 +305,7 @@ + { + setMetadataEmpty(); + DDebug() << "Cannot parse EXIF metadata using Exiv2 (" +- << QString::fromAscii(e.what().c_str()) ++ << QString::fromAscii(e.what()) + << ")" << endl; + return false; + } +@@ -343,7 +343,7 @@ + catch (Exiv2::Error& e) + { + DDebug() << "Cannot get metadata tag title using Exiv2 (" +- << QString::fromAscii(e.what().c_str()) ++ << QString::fromAscii(e.what()) + << ")" << endl; + return i18n("Unknown"); + } +@@ -360,7 +360,7 @@ + catch (Exiv2::Error& e) + { + DDebug() << "Cannot get metadata tag description using Exiv2 (" +- << QString::fromAscii(e.what().c_str()) ++ << QString::fromAscii(e.what()) + << ")" << endl; + return i18n("No description available"); + } +--- digikam-0.9.1.orig/digikam/libs/widgets/metadata/iptcwidget.cpp 2007-03-04 21:33:32.000000000 +0100 ++++ digikam-0.9.1/digikam/libs/widgets/metadata/iptcwidget.cpp 2007-05-17 15:05:04.000000000 +0200 +@@ -156,7 +156,7 @@ + catch (Exiv2::Error& e) + { + DDebug() << "Cannot parse IPTC metadata using Exiv2 (" +- << QString::fromAscii(e.what().c_str()) ++ << QString::fromAscii(e.what()) + << ")" << endl; + return false; + } +@@ -185,7 +185,7 @@ + catch (Exiv2::Error& e) + { + DDebug() << "Cannot get metadata tag title using Exiv2 (" +- << QString::fromAscii(e.what().c_str()) ++ << QString::fromAscii(e.what()) + << ")" << endl; + return i18n("Unknow"); + } +@@ -202,7 +202,7 @@ + catch (Exiv2::Error& e) + { + DDebug() << "Cannot get metadata tag description using Exiv2 (" +- << QString::fromAscii(e.what().c_str()) ++ << QString::fromAscii(e.what()) + << ")" << endl; + return i18n("No description available"); + } +--- digikam-0.9.1.orig/digikam/libs/widgets/metadata/makernotewidget.cpp 2007-03-04 21:33:32.000000000 +0100 ++++ digikam-0.9.1/digikam/libs/widgets/metadata/makernotewidget.cpp 2007-05-17 15:06:18.000000000 +0200 +@@ -198,7 +198,7 @@ + catch (Exiv2::Error& e) + { + DDebug() << "Cannot parse MAKERNOTE metadata using Exiv2 (" +- << QString::fromAscii(e.what().c_str()) ++ << QString::fromAscii(e.what()) + << ")" << endl; + return false; + } +@@ -227,7 +227,7 @@ + catch (Exiv2::Error& e) + { + DDebug() << "Cannot get metadata tag title using Exiv2 (" +- << QString::fromAscii(e.what().c_str()) ++ << QString::fromAscii(e.what()) + << ")" << endl; + return i18n("Unknown"); + } +@@ -244,7 +244,7 @@ + catch (Exiv2::Error& e) + { + DDebug() << "Cannot get metadata tag description using Exiv2 (" +- << QString::fromAscii(e.what().c_str()) ++ << QString::fromAscii(e.what()) + << ")" << endl; + return i18n("No description available"); + } |