--- kcollectd-0.9.orig/po/de.po +++ kcollectd-0.9/po/de.po @@ -10,6 +10,7 @@ "PO-Revision-Date: 2009-06-16 20:41+0200\n" "Last-Translator: M G Berberich \n" "Language-Team: German \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" --- kcollectd-0.9.orig/doc/en/index.docbook +++ kcollectd-0.9/doc/en/index.docbook @@ -1,5 +1,5 @@ -kcollectd 0.8"> --- kcollectd-0.9.orig/kcollectd/gui.cc +++ kcollectd-0.9/kcollectd/gui.cc @@ -127,21 +127,21 @@ const directory_iterator end_itr; for (directory_iterator host(rrdpath); host != end_itr; ++host ) { if (is_directory(*host)) { - QTreeWidgetItem *hostitem = mkItem(listview, host->leaf()); + QTreeWidgetItem *hostitem = mkItem(listview, host->path().filename().string()); hostitem->setFlags(hostitem->flags() & ~Qt::ItemIsSelectable); for (directory_iterator sensor(*host); sensor != end_itr; ++sensor ) { if (is_directory(*sensor)) { - QTreeWidgetItem *sensoritem = mkItem(hostitem, sensor->leaf()); + QTreeWidgetItem *sensoritem = mkItem(hostitem, sensor->path().filename().string()); sensoritem->setFlags(sensoritem->flags() & ~Qt::ItemIsSelectable); for (directory_iterator rrd(*sensor); rrd != end_itr; ++rrd ) { if (is_regular(*rrd) && extension(*rrd) == ".rrd") { QTreeWidgetItem *rrditem = mkItem(sensoritem, basename(*rrd)); rrditem->setFlags(rrditem->flags() & ~Qt::ItemIsSelectable); std::ostringstream info; - info << host->leaf() << delimiter - << sensor->leaf() << delimiter + info << host->path().filename().string() << delimiter + << sensor->path().filename().string() << delimiter << basename(*rrd); - get_datasources(rrd->string(), info.str(), rrditem); + get_datasources(rrd->path().string(), info.str(), rrditem); } } } --- kcollectd-0.9.orig/kcollectd/kcollectd.cc +++ kcollectd-0.9/kcollectd/kcollectd.cc @@ -73,7 +73,7 @@ gui->show(); } } - catch(basic_filesystem_error &e) { + catch(const std::exception &e) { KMessageBox::error(0, i18n("Failed to read collectd-structure at \'%1\'\n" "Terminating.", QString(RRD_BASEDIR))); exit(1); --- kcollectd-0.9.orig/debian/changelog +++ kcollectd-0.9/debian/changelog @@ -0,0 +1,119 @@ +kcollectd (0.9-2.1build2) saucy; urgency=low + + * No change rebuild for Boost 1.53 transition. + + -- Dmitrijs Ledkovs Fri, 26 Apr 2013 19:18:42 +0100 + +kcollectd (0.9-2.1build1) quantal; urgency=low + + * No change rebuild for boost 1.49 transition + + -- Dmitrijs Ledkovs Tue, 29 May 2012 17:08:49 +0100 + +kcollectd (0.9-2.1) unstable; urgency=medium + + * Non-maintainer upload. + * kcollectd/gui.cc, kcollectd/kcollectd.cc: + - Port to new boost1.46 filesystem API (Closes: #624931) + * doc/en/index.docbook: + - Bump doctype version to 4.2 to avoid FTBFS. + * debian/control: + - Promote collectd to Depends (Closes: #620023). + + -- Luca Falavigna Thu, 25 Aug 2011 00:30:43 +0200 + +kcollectd (0.9-2) unstable; urgency=low + + * Added build-dependencies on shared-mime-info, since this + dependency has been removed from kdelibs5. + (Closes: #581322, #582557). + + -- M G Berberich Fri, 21 May 2010 22:20:56 +0200 + +kcollectd (0.9-1) unstable; urgency=low + + * New upstream release. + + -- M G Berberich Sun, 07 Feb 2010 20:03:42 +0100 + +kcollectd (0.8.2-1) unstable; urgency=low + + * New upstream release. + - Fixed build failure when using binutils-gold (Closes: #554939). + + -- M G Berberich Mon, 30 Nov 2009 22:06:55 +0100 + +kcollectd (0.8.1-1) unstable; urgency=low + + * Initial Debian upload (Closes: #533080). + * New upstream release. + + -- M G Berberich Sun, 11 Oct 2009 17:27:45 +0200 + +kcollectd (0.8-1) unstable; urgency=low + + * Changed description and packaging-licence. + * New upstream release. + + -- M G Berberich Sun, 07 Jun 2009 18:52:24 +0200 + +kcollectd (0.6-1) unstable; urgency=low + + * New upstream release. + + -- M G Berberich Wed, 06 May 2009 21:54:24 +0200 + +kcollectd (0.5-1) unstable; urgency=low + + * New upstream release. + + -- M G Berberich Tue, 28 Apr 2009 23:16:51 +0200 + +kcollectd (0.4-1) unstable; urgency=low + + * New upstream release. + + -- M G Berberich Sun, 19 Apr 2009 13:49:28 +0200 + +kcollectd (0.3-5) unstable; urgency=low + + * Dependencies corrected. + + -- M G Berberich Mon, 23 Mar 2009 19:22:55 +0100 + +kcollectd (0.3-4) unstable; urgency=low + + * Changed the find-qt3-moc method to configure option. + + -- M G Berberich Fri, 20 Feb 2009 22:34:04 +0100 + +kcollectd (0.3-3) unstable; urgency=low + + * Fixed mysterious qobject-problem - hopefully. + + -- M G Berberich Fri, 20 Feb 2009 10:11:37 +0100 + +kcollectd (0.3-2) unstable; urgency=low + + * Fixed moc-path problem. + + -- M G Berberich Mon, 09 Feb 2009 21:35:53 +0100 + +kcollectd (0.3-1) unstable; urgency=low + + * New upstream. + + -- M G Berberich Sun, 11 Jan 2009 14:02:40 +0100 + +kcollectd (0.2-1) unstable; urgency=low + + * New upstream. + + -- M G Berberich Thu, 31 Jul 2008 20:46:00 +0200 + +kcollectd (0.1-1) unstable; urgency=low + + * Initial release. + + -- M G Berberich Thu, 10 Jul 2008 21:52:18 +0200 + --- kcollectd-0.9.orig/debian/rules +++ kcollectd-0.9/debian/rules @@ -0,0 +1,80 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) +CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +else +CROSS= --build $(DEB_BUILD_GNU_TYPE) +endif + +config: config.stamp + +config.stamp: + dh_testdir + mkdir -p BUILD + (cd BUILD; cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_SKIP_RPATH=true ..) + touch $@ + + +build: build-stamp + +build-stamp: config.stamp + dh_testdir + (cd BUILD; $(MAKE)) + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + rm -rf BUILD build-stamp config.stamp + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + + (cd BUILD; $(MAKE) DESTDIR=$(CURDIR)/debian/kcollectd install) + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples + dh_installman + dh_link + dh_strip + dh_compress -Xdocbook + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- kcollectd-0.9.orig/debian/control +++ kcollectd-0.9/debian/control @@ -0,0 +1,17 @@ +Source: kcollectd +Section: utils +Priority: extra +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: M G Berberich +Build-Depends: debhelper (>= 7), cmake, kdelibs5-dev, shared-mime-info, libboost-filesystem-dev, librrd-dev +Standards-Version: 3.8.4 +Homepage: http://www.forwiss.uni-passau.de/~berberic/Linux/kcollectd.html + +Package: kcollectd +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, collectd +Suggests: khelpcenter4 +Description: simple collectd graphing frontend for KDE + Kcollectd is a graphical KDE-frontend to collectd that allows to view + RRD files that have been created by collectd. It allows to easily + navigate in the data with the mouse and can be used as a chart recorder. --- kcollectd-0.9.orig/debian/kcollectd.manpages +++ kcollectd-0.9/debian/kcollectd.manpages @@ -0,0 +1 @@ +doc/kcollectd.1 --- kcollectd-0.9.orig/debian/copyright +++ kcollectd-0.9/debian/copyright @@ -0,0 +1,52 @@ +This package was debianized by M G Berberich + on Son, 11 Jan 2009 14:27:00 +0200. + +It was downloaded from +http://www.forwiss.uni-passau.de/~berberic/Linux/kcollectd/ + +Upstream Author: + + M G Berberich + +Copyright: + + Copyright (C) 2008-2009 M G Berberich + +License: + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +On Debian systems, the complete text of the GNU General Public License +can be found in the file `/usr/share/common-licenses/GPL-3'. + + +The file po/de.po is in the public domain. + + +The file doc/en/index.docbook is under FDL. + + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.3 + or any later version published by the Free Software Foundation; + with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + +On Debian systems, the complete text of the FDL can be found in the +file `/usr/share/common-licenses/GFDL-1.3'. + + +The Debian packaging is Copyright 2009, M G Berberich + and is licensed under the GPL, see +`/usr/share/common-licenses/GPL-3'. --- kcollectd-0.9.orig/debian/watch +++ kcollectd-0.9/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://www.forwiss.uni-passau.de/~berberic/Linux/kcollectd/kcollectd-(.*)\.tar\.(?:bz2|gz) --- kcollectd-0.9.orig/debian/compat +++ kcollectd-0.9/debian/compat @@ -0,0 +1 @@ +7