summaryrefslogtreecommitdiff
path: root/graphics/libkexiv2-kde4/files/patch-libkexiv2__libkexiv2__kexiv2.cpp
diff options
context:
space:
mode:
authorAlberto Villa <avilla@FreeBSD.org>2011-10-17 00:03:42 +0000
committerAlberto Villa <avilla@FreeBSD.org>2011-10-17 00:03:42 +0000
commita2d3b5a4bc5047210b788a128596ec34749ffa11 (patch)
treec3c20b47c3435ddcaf02b8570db6aab5b70011af /graphics/libkexiv2-kde4/files/patch-libkexiv2__libkexiv2__kexiv2.cpp
parent- Add dependency on security/pam_kde. (diff)
The KDE/FreeBSD team is pleased to announce KDE Software Compilation
4.7.2. The official release notes can be found at: http://kde.org/announcements/announce-4.7.2.php This release ships with many improvements. Read more about them here: http://FreeBSD.kde.org/news.php#itemKDESC472availableinports We'd like to say thanks to all testers and contributors, especially to lwhsu@ for his effort on hosting our test packages. PR: 156293 [1] 159219 [2] 160164 [3] Submitted by: Oleg Sidorkin <osidorkin@gmail.com> [1] Alvaro Castillo <gobledb@gmail.com> [2] dkeav04@gmail.com [3] Tested by: exp-run via pav
Diffstat (limited to 'graphics/libkexiv2-kde4/files/patch-libkexiv2__libkexiv2__kexiv2.cpp')
-rw-r--r--graphics/libkexiv2-kde4/files/patch-libkexiv2__libkexiv2__kexiv2.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/graphics/libkexiv2-kde4/files/patch-libkexiv2__libkexiv2__kexiv2.cpp b/graphics/libkexiv2-kde4/files/patch-libkexiv2__libkexiv2__kexiv2.cpp
deleted file mode 100644
index beb1972ce786..000000000000
--- a/graphics/libkexiv2-kde4/files/patch-libkexiv2__libkexiv2__kexiv2.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
---- ./libkexiv2/libkexiv2/kexiv2.cpp.orig 2009-02-27 09:39:37.000000000 +0100
-+++ ./libkexiv2/libkexiv2/kexiv2.cpp 2011-04-12 00:45:19.851801624 +0200
-@@ -1603,7 +1603,11 @@
- {
- std::string exifkey(exifTagName);
- Exiv2::ExifKey ek(exifkey);
-+#if (EXIV2_TEST_VERSION(0,21,0))
-+ return QString::fromLocal8Bit( ek.tagLabel().c_str() );
-+#else
- return QString::fromLocal8Bit( Exiv2::ExifTags::tagTitle(ek.tag(), ek.ifdId()) );
-+#endif
- }
- catch (Exiv2::Error& e)
- {
-@@ -1619,7 +1623,11 @@
- {
- std::string exifkey(exifTagName);
- Exiv2::ExifKey ek(exifkey);
-+#if (EXIV2_TEST_VERSION(0,21,0))
-+ return QString::fromLocal8Bit( ek.tagDesc().c_str() );
-+#else
- return QString::fromLocal8Bit( Exiv2::ExifTags::tagDesc(ek.tag(), ek.ifdId()) );
-+#endif
- }
- catch (Exiv2::Error& e)
- {