[arch-commits] Commit in kchmviewer/repos (5 files)

2020-07-07 Thread Felix Yan via arch-commits
Date: Tuesday, July 7, 2020 @ 12:38:20
  Author: felixonmars
Revision: 658164

archrelease: copy trunk to community-staging-x86_64

Added:
  kchmviewer/repos/community-staging-x86_64/
  kchmviewer/repos/community-staging-x86_64/PKGBUILD
(from rev 658163, kchmviewer/trunk/PKGBUILD)
  kchmviewer/repos/community-staging-x86_64/fix-qt5-build.patch
(from rev 658163, kchmviewer/trunk/fix-qt5-build.patch)
  kchmviewer/repos/community-staging-x86_64/kchmviewer-7.7-underlinking.patch
(from rev 658163, kchmviewer/trunk/kchmviewer-7.7-underlinking.patch)
  kchmviewer/repos/community-staging-x86_64/kchmviewer.changelog
(from rev 658163, kchmviewer/trunk/kchmviewer.changelog)

---+
 PKGBUILD  |   43 +++
 fix-qt5-build.patch   |   24 +++
 kchmviewer-7.7-underlinking.patch |   11 ++
 kchmviewer.changelog  |   57 
 4 files changed, 135 insertions(+)

Copied: kchmviewer/repos/community-staging-x86_64/PKGBUILD (from rev 658163, 
kchmviewer/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-07-07 12:38:20 UTC (rev 658164)
@@ -0,0 +1,43 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Alexander Bogdanov 
+
+pkgname=kchmviewer
+pkgver=7.7
+pkgrel=5
+pkgdesc="A .chm files (MS HTML help file format) viewer"
+arch=('x86_64')
+url="http://kchmviewer.sourceforge.net/";
+license=('GPL')
+depends=('chmlib' 'libzip' 'qt5-webkit')
+changelog=$pkgname.changelog
+source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
+$pkgname-$pkgver-underlinking.patch
+fix-qt5-build.patch)
+sha256sums=('27cbac45c786b1718550a87e6f86010e161302b426c6396ff2a3091b913b17dd'
+'bb9345a0ecaf70e06cfad06c6c2dbbfca79c3462e1f4bb459e80ecaa31ea58cc'
+'7d070f4eaa79fa2fd8c4a06807b4792807056e9c248d55e98169d01066248f3d')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -Np1 -i "${srcdir}"/$pkgname-$pkgver-underlinking.patch
+  patch -Np1 -i "${srcdir}"/fix-qt5-build.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm755 bin/$pkgname "${pkgdir}"/usr/bin/$pkgname
+#icon/desktop file
+  install -Dm644 packages/$pkgname.png 
"${pkgdir}"/usr/share/pixmaps/$pkgname.png
+  install -Dm644 packages/$pkgname.desktop 
"${pkgdir}"/usr/share/applications/$pkgname.desktop
+}

Copied: kchmviewer/repos/community-staging-x86_64/fix-qt5-build.patch (from rev 
658163, kchmviewer/trunk/fix-qt5-build.patch)
===
--- community-staging-x86_64/fix-qt5-build.patch
(rev 0)
+++ community-staging-x86_64/fix-qt5-build.patch2020-07-07 12:38:20 UTC 
(rev 658164)
@@ -0,0 +1,24 @@
+diff -Naur kchmviewer-7.7.orig/src/src.pro kchmviewer-7.7/src/src.pro
+--- kchmviewer-7.7.orig/src/src.pro2016-10-05 09:35:34.149265000 +0200
 kchmviewer-7.7/src/src.pro 2017-02-07 15:16:27.749908883 +0100
+@@ -114,20 +114,10 @@
+ 
+ greaterThan(QT_MAJOR_VERSION, 4) {
+ # Qt 5
+-greaterThan(QT_MINOR_VERSION, 5) {
+-# Qt 5.6+
+-error("You use Qt5.6+ - QWebEngine is not yet suitable for kchmviewer 
and is not supported")
+-QT += webengine webenginewidgets
+-DEFINES += USE_WEBENGINE
+-SOURCES += viewwindow_webengine.cpp dataprovider_qwebengine.cpp
+-HEADERS += dataprovider_qwebengine.h viewwindow_webengine.h
+-} else {
+-# Qt 5.0-5.5
+ QT += webkit webkitwidgets
+ DEFINES += USE_WEBKIT
+ SOURCES += viewwindow_webkit.cpp dataprovider_qwebkit.cpp
+ HEADERS += dataprovider_qwebkit.h viewwindow_webkit.h
+-}
+ } else {
+ message("Qt4 is not supported anymore, please do not report any errors")
+ QT += webkit webkitwidgets

Copied: 
kchmviewer/repos/community-staging-x86_64/kchmviewer-7.7-underlinking.patch 
(from rev 658163, kchmviewer/trunk/kchmviewer-7.7-underlinking.patch)
===
--- community-staging-x86_64/kchmviewer-7.7-underlinking.patch  
(rev 0)
+++ community-staging-x86_64/kchmviewer-7.7-underlinking.patch  2020-07-07 
12:38:20 UTC (rev 658164)
@@ -0,0 +1,11 @@
+--- a/src/src.pro
 b/src/src.pro
+@@ -108,7 +108,7 @@
+ HEADERS += dbus_interface.h
+ SOURCES += dbus_interface.cpp
+ CONFIG += dbus
+-LIBS += ../lib/libebook/libebook.a
++LIBS += ../lib/libebook/libebook.a -lchm -lzip
+ POST_TARGETDEPS += ../lib/libebook/libebook.a
+ }
+ 

Copied: kchmviewer/repos/community-staging-x86_64/kchmviewer.changelog (from 
rev 658163, kchmviewer/trunk/kchmviewer.changelog)

[arch-commits] Commit in kchmviewer/repos (5 files)

2018-11-09 Thread Felix Yan via arch-commits
Date: Friday, November 9, 2018 @ 21:04:01
  Author: felixonmars
Revision: 404496

archrelease: copy trunk to community-staging-x86_64

Added:
  kchmviewer/repos/community-staging-x86_64/
  kchmviewer/repos/community-staging-x86_64/PKGBUILD
(from rev 404495, kchmviewer/trunk/PKGBUILD)
  kchmviewer/repos/community-staging-x86_64/fix-qt5-build.patch
(from rev 404495, kchmviewer/trunk/fix-qt5-build.patch)
  kchmviewer/repos/community-staging-x86_64/kchmviewer-7.7-underlinking.patch
(from rev 404495, kchmviewer/trunk/kchmviewer-7.7-underlinking.patch)
  kchmviewer/repos/community-staging-x86_64/kchmviewer.changelog
(from rev 404495, kchmviewer/trunk/kchmviewer.changelog)

---+
 PKGBUILD  |   43 +++
 fix-qt5-build.patch   |   24 +++
 kchmviewer-7.7-underlinking.patch |   11 ++
 kchmviewer.changelog  |   57 
 4 files changed, 135 insertions(+)

Copied: kchmviewer/repos/community-staging-x86_64/PKGBUILD (from rev 404495, 
kchmviewer/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-11-09 21:04:01 UTC (rev 404496)
@@ -0,0 +1,43 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Alexander Bogdanov 
+
+pkgname=kchmviewer
+pkgver=7.7
+pkgrel=4
+pkgdesc="A .chm files (MS HTML help file format) viewer"
+arch=('x86_64')
+url="http://kchmviewer.sourceforge.net/";
+license=('GPL')
+depends=('chmlib' 'libzip' 'qt5-webkit')
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
+$pkgname-$pkgver-underlinking.patch
+fix-qt5-build.patch)
+sha256sums=('27cbac45c786b1718550a87e6f86010e161302b426c6396ff2a3091b913b17dd'
+'bb9345a0ecaf70e06cfad06c6c2dbbfca79c3462e1f4bb459e80ecaa31ea58cc'
+'7d070f4eaa79fa2fd8c4a06807b4792807056e9c248d55e98169d01066248f3d')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -Np1 -i "${srcdir}"/$pkgname-$pkgver-underlinking.patch
+  patch -Np1 -i "${srcdir}"/fix-qt5-build.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm755 bin/$pkgname "${pkgdir}"/usr/bin/$pkgname
+#icon/desktop file
+  install -Dm644 packages/$pkgname.png 
"${pkgdir}"/usr/share/pixmaps/$pkgname.png
+  install -Dm644 packages/$pkgname.desktop 
"${pkgdir}"/usr/share/applications/$pkgname.desktop
+}

Copied: kchmviewer/repos/community-staging-x86_64/fix-qt5-build.patch (from rev 
404495, kchmviewer/trunk/fix-qt5-build.patch)
===
--- community-staging-x86_64/fix-qt5-build.patch
(rev 0)
+++ community-staging-x86_64/fix-qt5-build.patch2018-11-09 21:04:01 UTC 
(rev 404496)
@@ -0,0 +1,24 @@
+diff -Naur kchmviewer-7.7.orig/src/src.pro kchmviewer-7.7/src/src.pro
+--- kchmviewer-7.7.orig/src/src.pro2016-10-05 09:35:34.149265000 +0200
 kchmviewer-7.7/src/src.pro 2017-02-07 15:16:27.749908883 +0100
+@@ -114,20 +114,10 @@
+ 
+ greaterThan(QT_MAJOR_VERSION, 4) {
+ # Qt 5
+-greaterThan(QT_MINOR_VERSION, 5) {
+-# Qt 5.6+
+-error("You use Qt5.6+ - QWebEngine is not yet suitable for kchmviewer 
and is not supported")
+-QT += webengine webenginewidgets
+-DEFINES += USE_WEBENGINE
+-SOURCES += viewwindow_webengine.cpp dataprovider_qwebengine.cpp
+-HEADERS += dataprovider_qwebengine.h viewwindow_webengine.h
+-} else {
+-# Qt 5.0-5.5
+ QT += webkit webkitwidgets
+ DEFINES += USE_WEBKIT
+ SOURCES += viewwindow_webkit.cpp dataprovider_qwebkit.cpp
+ HEADERS += dataprovider_qwebkit.h viewwindow_webkit.h
+-}
+ } else {
+ message("Qt4 is not supported anymore, please do not report any errors")
+ QT += webkit webkitwidgets

Copied: 
kchmviewer/repos/community-staging-x86_64/kchmviewer-7.7-underlinking.patch 
(from rev 404495, kchmviewer/trunk/kchmviewer-7.7-underlinking.patch)
===
--- community-staging-x86_64/kchmviewer-7.7-underlinking.patch  
(rev 0)
+++ community-staging-x86_64/kchmviewer-7.7-underlinking.patch  2018-11-09 
21:04:01 UTC (rev 404496)
@@ -0,0 +1,11 @@
+--- a/src/src.pro
 b/src/src.pro
+@@ -108,7 +108,7 @@
+ HEADERS += dbus_interface.h
+ SOURCES += dbus_interface.cpp
+ CONFIG += dbus
+-LIBS += ../lib/libebook/libebook.a
++LIBS += ../lib/libebook/libebook.a -lchm -lzip
+ POST_TARGETDEPS += ../lib/libebook/libebook.a
+ }
+ 

Copied: kchmviewer/repos/community-staging-x86_64/kchmviewer.changelog (from 
rev 404495, kchmviewer/trunk/kchmviewer.changelog)
==

[arch-commits] Commit in kchmviewer/repos (5 files)

2014-09-30 Thread Jaroslav Lichtblau
Date: Wednesday, October 1, 2014 @ 07:35:15
  Author: jlichtblau
Revision: 119910

archrelease: copy trunk to community-staging-x86_64

Added:
  kchmviewer/repos/community-staging-x86_64/
  kchmviewer/repos/community-staging-x86_64/PKGBUILD
(from rev 119909, kchmviewer/trunk/PKGBUILD)
  kchmviewer/repos/community-staging-x86_64/kchmviewer-build.patch
(from rev 119909, kchmviewer/trunk/kchmviewer-build.patch)
  kchmviewer/repos/community-staging-x86_64/kchmviewer.changelog
(from rev 119909, kchmviewer/trunk/kchmviewer.changelog)
  kchmviewer/repos/community-staging-x86_64/kchmviewer.install
(from rev 119909, kchmviewer/trunk/kchmviewer.install)

+
 PKGBUILD   |   44 
 kchmviewer-build.patch |   23 +++
 kchmviewer.changelog   |   32 
 kchmviewer.install |   12 
 4 files changed, 111 insertions(+)

Copied: kchmviewer/repos/community-staging-x86_64/PKGBUILD (from rev 119909, 
kchmviewer/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-10-01 05:35:15 UTC (rev 119910)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Alexander Bogdanov 
+
+pkgname=kchmviewer
+pkgver=6.1
+pkgrel=2
+pkgdesc="A .chm files (MS HTML help file format) viewer"
+arch=('i686' 'x86_64')
+url="http://kchmviewer.sourceforge.net/";
+license=('GPL')
+depends=('desktop-file-utils' 'chmlib' 'kdebase-runtime' 'xdg-utils')
+makedepends=('automoc4' 'cmake' 'patch')
+options=('libtool')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
+$pkgname-build.patch)
+sha256sums=('f673c3aaca735d799d14b9f6f1b302e9bb77d5c0a0b601b4b5e0beed1c99fe78'
+'567bdcaa1809618fe3a441345586a491247b76e4dd46db8ff8497bd53d74adbc')
+
+build() {
+  cd $pkgname-$pkgver
+
+  patch -Np1 -i "${srcdir}"/$pkgname-build.patch
+
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+#icon file
+  install -D -m644 "${srcdir}"/$pkgname-$pkgver/packages/$pkgname.png \
+"${pkgdir}"/usr/share/pixmaps/$pkgname.png
+
+#msits.protocol file provided by kdegraphics-okular package
+  rm -rf "${pkgdir}"/usr/share/kde4
+#kio_msits.so file provided by kdegraphics-okular package - FS#14376
+  rm -rf "${pkgdir}"/usr/lib
+}

Copied: kchmviewer/repos/community-staging-x86_64/kchmviewer-build.patch (from 
rev 119909, kchmviewer/trunk/kchmviewer-build.patch)
===
--- community-staging-x86_64/kchmviewer-build.patch 
(rev 0)
+++ community-staging-x86_64/kchmviewer-build.patch 2014-10-01 05:35:15 UTC 
(rev 119910)
@@ -0,0 +1,23 @@
+diff -ruN kchmviewer-6.1-orig/packages/kchmviewer.desktop 
kchmviewer-6.1/packages/kchmviewer.desktop
+--- kchmviewer-6.1-orig/packages/kchmviewer.desktop2009-12-15 
07:02:57.0 +0100
 kchmviewer-6.1/packages/kchmviewer.desktop 2014-05-12 20:37:00.983182220 
+0200
+@@ -3,7 +3,6 @@
+ Categories=Qt;KDE;Office;Viewer;
+ Terminal=false
+ Type=Application
+-Encoding=UTF-8
+ Exec=kchmviewer %f
+ Icon=kchmviewer
+ GenericName=CHM file viewer
+diff -ruN kchmviewer-6.1-orig/src/CMakeLists.txt 
kchmviewer-6.1/src/CMakeLists.txt
+--- kchmviewer-6.1-orig/src/CMakeLists.txt 2011-12-19 08:16:43.0 
+0100
 kchmviewer-6.1/src/CMakeLists.txt  2014-05-12 20:35:51.195078972 +0200
+@@ -8,7 +8,7 @@
+   dialog_chooseurlfromlist.cpp
+   dialog_setup.cpp
+   kde-qt.cpp
+-  keyeventfilter.cpp
++# keyeventfilter.cpp
+   main.cpp
+   mainwindow.cpp
+   navigationpanel.cpp

Copied: kchmviewer/repos/community-staging-x86_64/kchmviewer.changelog (from 
rev 119909, kchmviewer/trunk/kchmviewer.changelog)
===
--- community-staging-x86_64/kchmviewer.changelog   
(rev 0)
+++ community-staging-x86_64/kchmviewer.changelog   2014-10-01 05:35:15 UTC 
(rev 119910)
@@ -0,0 +1,32 @@
+2014-05-12  Jaroslav Lichtblau 
+   * kchmviewer 6.1-1
+
+2011-12-21  Jaroslav Lichtblau 
+   * kchmviewer 6.0-1
+
+2011-01-15  Jaroslav Lichtblau 
+   * kchmviewer-5.3
+
+2010-06-14  Jaroslav Lichtblau 
+   * Update to major release 5.2
+
+2009-12-19  Jaroslav Lichtblau 
+   * Update to major release 5.1
+
+2009-07-26  Jaroslav Lichtblau 
+   * Update to major release 4.1
+
+2009-04-30  Jaroslav Lichtblau 
+   * FS#14376 fixed
+
+2009-03-26  Jaroslav Lichtblau 
+   * FS#12349 fixed
+
+2008-12-04  Jaroslav Lichtblau 
+   * Update to major release 4.0 final
+
+2008-11-22  Jaroslav Lichtblau 
+   * Update to major release 4.0beta3 - KDE4 ver

[arch-commits] Commit in kchmviewer/repos (5 files)

2014-09-30 Thread Jaroslav Lichtblau
Date: Wednesday, October 1, 2014 @ 07:40:50
  Author: jlichtblau
Revision: 119911

archrelease: copy trunk to community-staging-i686

Added:
  kchmviewer/repos/community-staging-i686/
  kchmviewer/repos/community-staging-i686/PKGBUILD
(from rev 119910, kchmviewer/trunk/PKGBUILD)
  kchmviewer/repos/community-staging-i686/kchmviewer-build.patch
(from rev 119910, kchmviewer/trunk/kchmviewer-build.patch)
  kchmviewer/repos/community-staging-i686/kchmviewer.changelog
(from rev 119910, kchmviewer/trunk/kchmviewer.changelog)
  kchmviewer/repos/community-staging-i686/kchmviewer.install
(from rev 119910, kchmviewer/trunk/kchmviewer.install)

+
 PKGBUILD   |   44 
 kchmviewer-build.patch |   23 +++
 kchmviewer.changelog   |   32 
 kchmviewer.install |   12 
 4 files changed, 111 insertions(+)

Copied: kchmviewer/repos/community-staging-i686/PKGBUILD (from rev 119910, 
kchmviewer/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-10-01 05:40:50 UTC (rev 119911)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Alexander Bogdanov 
+
+pkgname=kchmviewer
+pkgver=6.1
+pkgrel=2
+pkgdesc="A .chm files (MS HTML help file format) viewer"
+arch=('i686' 'x86_64')
+url="http://kchmviewer.sourceforge.net/";
+license=('GPL')
+depends=('desktop-file-utils' 'chmlib' 'kdebase-runtime' 'xdg-utils')
+makedepends=('automoc4' 'cmake' 'patch')
+options=('libtool')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
+$pkgname-build.patch)
+sha256sums=('f673c3aaca735d799d14b9f6f1b302e9bb77d5c0a0b601b4b5e0beed1c99fe78'
+'567bdcaa1809618fe3a441345586a491247b76e4dd46db8ff8497bd53d74adbc')
+
+build() {
+  cd $pkgname-$pkgver
+
+  patch -Np1 -i "${srcdir}"/$pkgname-build.patch
+
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+#icon file
+  install -D -m644 "${srcdir}"/$pkgname-$pkgver/packages/$pkgname.png \
+"${pkgdir}"/usr/share/pixmaps/$pkgname.png
+
+#msits.protocol file provided by kdegraphics-okular package
+  rm -rf "${pkgdir}"/usr/share/kde4
+#kio_msits.so file provided by kdegraphics-okular package - FS#14376
+  rm -rf "${pkgdir}"/usr/lib
+}

Copied: kchmviewer/repos/community-staging-i686/kchmviewer-build.patch (from 
rev 119910, kchmviewer/trunk/kchmviewer-build.patch)
===
--- community-staging-i686/kchmviewer-build.patch   
(rev 0)
+++ community-staging-i686/kchmviewer-build.patch   2014-10-01 05:40:50 UTC 
(rev 119911)
@@ -0,0 +1,23 @@
+diff -ruN kchmviewer-6.1-orig/packages/kchmviewer.desktop 
kchmviewer-6.1/packages/kchmviewer.desktop
+--- kchmviewer-6.1-orig/packages/kchmviewer.desktop2009-12-15 
07:02:57.0 +0100
 kchmviewer-6.1/packages/kchmviewer.desktop 2014-05-12 20:37:00.983182220 
+0200
+@@ -3,7 +3,6 @@
+ Categories=Qt;KDE;Office;Viewer;
+ Terminal=false
+ Type=Application
+-Encoding=UTF-8
+ Exec=kchmviewer %f
+ Icon=kchmviewer
+ GenericName=CHM file viewer
+diff -ruN kchmviewer-6.1-orig/src/CMakeLists.txt 
kchmviewer-6.1/src/CMakeLists.txt
+--- kchmviewer-6.1-orig/src/CMakeLists.txt 2011-12-19 08:16:43.0 
+0100
 kchmviewer-6.1/src/CMakeLists.txt  2014-05-12 20:35:51.195078972 +0200
+@@ -8,7 +8,7 @@
+   dialog_chooseurlfromlist.cpp
+   dialog_setup.cpp
+   kde-qt.cpp
+-  keyeventfilter.cpp
++# keyeventfilter.cpp
+   main.cpp
+   mainwindow.cpp
+   navigationpanel.cpp

Copied: kchmviewer/repos/community-staging-i686/kchmviewer.changelog (from rev 
119910, kchmviewer/trunk/kchmviewer.changelog)
===
--- community-staging-i686/kchmviewer.changelog (rev 0)
+++ community-staging-i686/kchmviewer.changelog 2014-10-01 05:40:50 UTC (rev 
119911)
@@ -0,0 +1,32 @@
+2014-05-12  Jaroslav Lichtblau 
+   * kchmviewer 6.1-1
+
+2011-12-21  Jaroslav Lichtblau 
+   * kchmviewer 6.0-1
+
+2011-01-15  Jaroslav Lichtblau 
+   * kchmviewer-5.3
+
+2010-06-14  Jaroslav Lichtblau 
+   * Update to major release 5.2
+
+2009-12-19  Jaroslav Lichtblau 
+   * Update to major release 5.1
+
+2009-07-26  Jaroslav Lichtblau 
+   * Update to major release 4.1
+
+2009-04-30  Jaroslav Lichtblau 
+   * FS#14376 fixed
+
+2009-03-26  Jaroslav Lichtblau 
+   * FS#12349 fixed
+
+2008-12-04  Jaroslav Lichtblau 
+   * Update to major release 4.0 final
+
+2008-11-22  Jaroslav Lichtblau 
+   * Update to major release 4.0beta3 - KDE4 version
+
+2007-08-09  Vinay S Shastry