--- libguytools2-2.0.1.orig/toolsysinfo.cpp +++ libguytools2-2.0.1/toolsysinfo.cpp @@ -9,6 +9,7 @@ // Module: System information // **************************************************************************** +#include #include #include #include --- libguytools2-2.0.1.orig/debian/control +++ libguytools2-2.0.1/debian/control @@ -0,0 +1,28 @@ +Source: libguytools2 +Section: libs +Priority: optional +Maintainer: Debian Forensics +Uploaders: Michael Prokop +Build-depends: debhelper (>> 5.0.0), libqt4-dev +Standards-Version: 3.9.1 +Homepage: http://sourceforge.net/projects/libguytools/ +Vcs-git: git://git.debian.org/forensics/libguytools.git +Vcs-Browser: http://git.debian.org/?p=forensics/libguytools.git + +Package: libguytools2-dev +Section: libdevel +Architecture: i386 amd64 powerpc armhf +Depends: libguytools2 (= ${binary:Version}) +Description: development files for libguytools being a small programming toolbox + Includes modules for configuration file handling, error handling, logging and + system information retrieval. A signal handler enables applications to do stack + backtracing in case of segmentation faults. This package provides the + development files for libguytools2. + +Package: libguytools2 +Architecture: i386 amd64 powerpc armhf +Depends: ${shlibs:Depends} +Description: libguytools is a small programming toolbox + Includes modules for configuration file handling, error handling, logging and + system information retrieval. A signal handler enables applications to do stack + backtracing in case of segmentation faults. --- libguytools2-2.0.1.orig/debian/compat +++ libguytools2-2.0.1/debian/compat @@ -0,0 +1 @@ +5 --- libguytools2-2.0.1.orig/debian/libguytools2.dirs +++ libguytools2-2.0.1/debian/libguytools2.dirs @@ -0,0 +1 @@ +usr/lib --- libguytools2-2.0.1.orig/debian/libguytools2.links +++ libguytools2-2.0.1/debian/libguytools2.links @@ -0,0 +1,2 @@ +# See chapter 8.1 in the Debian Policy Manual +usr/lib/libguytools.so.2.0.1 usr/lib/libguytools.so.2 --- libguytools2-2.0.1.orig/debian/libguytools2.install +++ libguytools2-2.0.1/debian/libguytools2.install @@ -0,0 +1 @@ +usr/lib/*.so.*.*.* --- libguytools2-2.0.1.orig/debian/copyright +++ libguytools2-2.0.1/debian/copyright @@ -0,0 +1,31 @@ +This package was debianised by Guy Voncken +and Michael Prokop + +It was downloaded from http://sourceforge.net/projects/libguytools/ + +Upstream Author: Guy Voncken + +Copyright: © Copyright 2009, 2010 by Guy Voncken + +License: + + This package 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; version 2 dated June, 1991. + + This package 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 package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + 02110-1301, USA. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-2'. + +The Debian packaging is © 2009 by Guy Voncken +and © 2009, 2010 by Michael Prokop +and is licensed under the GPL, see above. --- libguytools2-2.0.1.orig/debian/libguytools2-dev.dirs +++ libguytools2-2.0.1/debian/libguytools2-dev.dirs @@ -0,0 +1,3 @@ +usr/lib +usr/include +usr/include/libguytools2 --- libguytools2-2.0.1.orig/debian/changelog +++ libguytools2-2.0.1/debian/changelog @@ -0,0 +1,11 @@ +libguytools2 (2.0.1-1.1) unstable; urgency=low + + * NMU, added armhf to the arch list. (Closes: #623134) + + -- Konstantinos Margaritis Wed, 11 Jan 2012 22:20:05 +0000 + +libguytools2 (2.0.1-1) unstable; urgency=low + + * Initial release of new libguytools version. + + -- Michael Prokop Wed, 16 Feb 2011 15:44:59 +0100 --- libguytools2-2.0.1.orig/debian/libguytools2-dev.install +++ libguytools2-2.0.1/debian/libguytools2-dev.install @@ -0,0 +1,2 @@ +usr/include/* +usr/lib/*.so --- libguytools2-2.0.1.orig/debian/rules +++ libguytools2-2.0.1/debian/rules @@ -0,0 +1,60 @@ +#!/usr/bin/make -f +# libguytools1 debian/rules + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +build: build-stamp +build-stamp: + dh_testdir + ./create_version_file.sh + lrelease tools.pro + qmake-qt4 tools.pro + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + # dpkg-buildpackage starts with cleaning, so we have to be sure that there's a Makefile (and thus call qmake) + qmake-qt4 toolsstatic.pro + $(MAKE) clean + dh_clean + + # remove leftover files: + rm -f Makefile libguytools_version.pro.inc lib/libguytools* + rmdir lib || true + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + mkdir -p debian/tmp/usr/lib debian/tmp/usr/include/libguytools2 + cp -d lib/libguytool* debian/tmp/usr/lib/ + cp -R include/* debian/tmp/usr/include/libguytools2 + +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs + dh_install --sourcedir=$(CURDIR)/debian/tmp --exclude=.svn + dh_link + dh_strip + dh_compress + dh_fixperms + dh_makeshlibs -V + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-indep: build install + +binary: binary-indep binary-arch + +.PHONY: build clean binary-indep binary-arch binary install