--- qimageblitz-0.0.4.orig/debian/docs +++ qimageblitz-0.0.4/debian/docs @@ -0,0 +1,2 @@ +README.BLITZ +README.PORTING --- qimageblitz-0.0.4.orig/debian/cdbs/kde.mk +++ qimageblitz-0.0.4/debian/cdbs/kde.mk @@ -0,0 +1,87 @@ +# until bug 377524 resolved. +include debian/cdbs/cmake.mk +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/patchsys-quilt.mk +include /usr/share/cdbs/1/rules/utils.mk + +DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el +DEB_CMAKE_EXTRA_FLAGS += \ + -DCMAKE_BUILD_TYPE=Debian \ + $(KDE4-ENABLE-FINAL) \ + -DKDE4_BUILD_TESTS=false \ + -DKDE_DISTRIBUTION_TEXT="Debian packages" \ + -DCMAKE_SKIP_RPATH=true \ + -DKDE4_USE_ALWAYS_FULL_RPATH=false \ + -DCONFIG_INSTALL_DIR=/etc/kde4 \ + -DDATA_INSTALL_DIR=/usr/share/kde4/apps \ + -DHTML_INSTALL_DIR=/usr/share/doc/kde4/HTML \ + -DKCFG_INSTALL_DIR=/usr/share/kde4/config.kcfg \ + -DLIB_INSTALL_DIR=/usr/lib \ + -DSYSCONF_INSTALL_DIR=/etc \ + -DCMAKE_SHARED_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed" \ + -DCMAKE_MODULE_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed" \ + -DCMAKE_EXE_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed" + +#DEB_CMAKE_PREFIX = /usr/lib/kde4 +DEB_DH_INSTALL_ARGS = --sourcedir=debian/tmp +#DEB_DH_SHLIBDEPS_ARGS = -l/usr/lib/kde4/lib/ +DEB_KDE_ENABLE_FINAL ?= +#DEB_MAKE_ENVVARS += XDG_CONFIG_DIRS=/etc/xdg XDG_DATA_DIRS=/usr/share +#DEB_STRIP_EXCLUDE = so + +ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb + ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches))) + KDE4-ENABLE-FINAL = $(if $(DEB_KDE_ENABLE_FINAL),-DKDE4_ENABLE_FINAL=true,) + else + KDE4-ENABLE-FINAL = + endif +endif + +common-build-arch:: debian/stamp-man-pages +debian/stamp-man-pages: + if ! test -d debian/man/out; then mkdir -p debian/man/out; fi + for f in $$(find debian/man -name '*.sgml'); do \ + docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \ + done + for f in $$(find debian/man -name '*.man'); do \ + soelim -I debian/man $$f \ + > debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \ + done + touch debian/stamp-man-pages + +clean:: +ifndef THIS_SHOULD_GO_TO_UNSTABLE + #guard against experimental uploads to unstable + dpkg-parsechangelog | grep ^Distribution | grep -q 'experimental\|UNRELEASED' +endif + rm -rf debian/man/out + -rmdir debian/man + rm -f debian/stamp-man-pages + rm -f CMakeCache.txt + + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi + if test -e debian/$(cdbs_curpkg).lintian; then \ + install -p -D -m644 debian/$(cdbs_curpkg).lintian \ + debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \ + fi + if test -e debian/$(cdbs_curpkg).presubj; then \ + install -p -D -m644 debian/$(cdbs_curpkg).presubj \ + debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \ + fi + +binary-install/$(DEB_SOURCE_PACKAGE)-doc-html:: + set -e; \ + for doc in `cd $(DEB_DESTDIR)/usr/share/doc/kde/HTML/en; find . -name index.docbook`; do \ + pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \ + echo Building $$pkg HTML docs...; \ + mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/kde/HTML/en/$$pkg; \ + cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/kde/HTML/en/$$pkg; \ + meinproc4 $(DEB_DESTDIR)/usr/share/doc/kde/HTML/en/$$pkg/index.docbook; \ + done + for pkg in $(DOC_HTML_PRUNE) ; do \ + rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/kde/HTML/en/$$pkg; \ + done + --- qimageblitz-0.0.4.orig/debian/cdbs/cmake.mk +++ qimageblitz-0.0.4/debian/cdbs/cmake.mk @@ -0,0 +1,60 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright (C) 2006 Peter Rockai +# Copyright (C) 2006 Fathi Boudra +# Description: A class for cmake packages +# +# 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 2, 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, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +ifndef _cdbs_bootstrap +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class +endif + +ifndef _cdbs_class_cmake +_cdbs_class_cmake := 1 + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) + +ifdef _cdbs_tarball_dir +DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE) +else +DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE) +endif + +DEB_MAKE_INSTALL_TARGET = install DESTDIR=$(DEB_DESTDIR) +DEB_CMAKE_PREFIX =/usr + +# Overriden from makefile-vars.mk +# We pass CFLAGS and friends to ./configure, so no need to pass them to make +DEB_MAKE_INVOKE = $(DEB_MAKE_ENVVARS) $(MAKE) -C $(DEB_BUILDDIR) + +include $(_cdbs_class_path)/makefile.mk$(_cdbs_makefile_suffix) + +common-configure-arch common-configure-indep:: common-configure-impl +common-configure-impl:: $(DEB_BUILDDIR)/CMakeCache.txt +$(DEB_BUILDDIR)/CMakeCache.txt: + cd $(DEB_BUILDDIR) && cmake $(CURDIR)/$(DEB_SRCDIR) \ + -DCMAKE_INSTALL_PREFIX="$(DEB_CMAKE_PREFIX)" \ + $(DEB_CMAKE_EXTRA_FLAGS) -DCMAKE_CXX_FLAGS="$(CXXFLAGS)" \ + -DCMAKE_C_FLAGS="$(CFLAGS)" -DCMAKE_VERBOSE_MAKEFILE=ON + mkdir -p $(DEB_DESTDIR) + +cleanbuilddir:: + -if test "$(DEB_BUILDDIR)" != "$(DEB_SRCDIR)"; then rm -rf $(DEB_BUILDDIR); fi + +endif + --- qimageblitz-0.0.4.orig/debian/libqimageblitz4.install +++ qimageblitz-0.0.4/debian/libqimageblitz4.install @@ -0,0 +1,2 @@ +usr/lib/libqimageblitz.so.4.0.0 +usr/lib/libqimageblitz.so.4 --- qimageblitz-0.0.4.orig/debian/control +++ qimageblitz-0.0.4/debian/control @@ -0,0 +1,41 @@ +Source: qimageblitz +Priority: optional +Section: libs +Maintainer: Debian Qt/KDE Maintainers +Uploaders: Sune Vuorela +Build-Depends: debhelper (>= 6), cdbs, cmake, quilt, libqt4-dev +Standards-Version: 3.7.3 +Homepage: http://www.kde.org/ + +Package: libqimageblitz4 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: KDE/Qt image filter library + Blitz is an interim graphical effect and filter library for KDE 4.0 that + contains many improvements over KDE 3.x's kdefx library, including bugfixes + and speed improvements. It is expected to be replaced by Quasar for KDE 4.1. + +Package: libqimageblitz-dbg +Section: libs +Priority: extra +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, libqimageblitz4 (= ${binary:Version}) +Description: Debugging symbols for qimageblitz + Blitz is an interim graphical effect and filter library for KDE 4.0 that + contains many improvements over KDE 3.x's kdefx library, including bugfixes + and speed improvements. It is expected to be replaced by Quasar for KDE 4.1. + . + This package contains the debugging symbols for qimageblitz. + +Package: libqimageblitz-dev +Section: libdevel +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, libqimageblitz4 (= ${binary:Version}) +Description: KDE/Qt image filter library - development files + Blitz is an interim graphical effect and filter library for KDE 4.0 that + contains many improvements over KDE 3.x's kdefx library, including bugfixes + and speed improvements. It is expected to be replaced by Quasar for KDE 4.1. + . + This is the development package which contains headers and static libraries + for qimageblitz. --- qimageblitz-0.0.4.orig/debian/patches/series +++ qimageblitz-0.0.4/debian/patches/series @@ -0,0 +1,2 @@ +10_no_cpu_optimizations.diff +11_.gnu.note.diff --- qimageblitz-0.0.4.orig/debian/patches/10_no_cpu_optimizations.diff +++ qimageblitz-0.0.4/debian/patches/10_no_cpu_optimizations.diff @@ -0,0 +1,25 @@ +Index: qimageblitz-0.0.4/blitz/CMakeLists.txt +=================================================================== +--- qimageblitz-0.0.4.orig/blitz/CMakeLists.txt 2007-11-07 12:58:44.000000000 +0100 ++++ qimageblitz-0.0.4/blitz/CMakeLists.txt 2008-01-22 01:16:22.000000000 +0100 +@@ -17,13 +17,13 @@ + + CHECK_INCLUDE_FILE(stdint.h HAVE_STDINT_H) + +-if(NOT MSVC) +- CHECK_CXX_SOURCE_COMPILES(" int main() { __asm__(\"pxor %mm0, %mm0\") ; }" HAVE_MMX) +- CHECK_CXX_SOURCE_COMPILES(" int main() { __asm__(\"xorps %xmm0, %xmm0\"); }" HAVE_SSE) +- CHECK_CXX_SOURCE_COMPILES(" int main() { __asm__(\"xorpd %xmm0, %xmm0\"); }" HAVE_SSE2) +- CHECK_CXX_SOURCE_COMPILES(" int main() { __asm__(\"pi2fd %mm0, %mm0\"); }" HAVE_3DNOW) +- CHECK_CXX_SOURCE_COMPILES(" int main() { __asm__(\"mtspr 256, %0; vand %%v0, %%v0, %%v0\" : : \"r\"(-1) ); }" HAVE_ALTIVEC) +-endif(NOT MSVC) ++#if(NOT MSVC) ++# CHECK_CXX_SOURCE_COMPILES(" int main() { __asm__(\"pxor %mm0, %mm0\") ; }" HAVE_MMX) ++# CHECK_CXX_SOURCE_COMPILES(" int main() { __asm__(\"xorps %xmm0, %xmm0\"); }" HAVE_SSE) ++# CHECK_CXX_SOURCE_COMPILES(" int main() { __asm__(\"xorpd %xmm0, %xmm0\"); }" HAVE_SSE2) ++# CHECK_CXX_SOURCE_COMPILES(" int main() { __asm__(\"pi2fd %mm0, %mm0\"); }" HAVE_3DNOW) ++# CHECK_CXX_SOURCE_COMPILES(" int main() { __asm__(\"mtspr 256, %0; vand %%v0, %%v0, %%v0\" : : \"r\"(-1) ); }" HAVE_ALTIVEC) ++#endif(NOT MSVC) + + SET(BLITZ_LIB_MAJOR_VERSION "4") + SET(BLITZ_LIB_MINOR_VERSION "0") --- qimageblitz-0.0.4.orig/debian/patches/11_.gnu.note.diff +++ qimageblitz-0.0.4/debian/patches/11_.gnu.note.diff @@ -0,0 +1,12 @@ +Index: qimageblitz-0.0.4/blitz/asm_scale.S +=================================================================== +--- qimageblitz-0.0.4.orig/blitz/asm_scale.S 2007-11-07 12:58:44.000000000 +0100 ++++ qimageblitz-0.0.4/blitz/asm_scale.S 2008-01-22 01:16:23.000000000 +0100 +@@ -813,4 +813,7 @@ + + SIZE(qimageScale_mmx_AARGBA) + ++.section .note.GNU-stack,"",%progbits ++ + #endif ++ --- qimageblitz-0.0.4.orig/debian/libqimageblitz-dev.install +++ qimageblitz-0.0.4/debian/libqimageblitz-dev.install @@ -0,0 +1,6 @@ +./usr/bin/blitztest +./usr/include/qimageblitz/blitzcpu.h +./usr/include/qimageblitz/qimageblitz_export.h +./usr/include/qimageblitz/qimageblitz.h +./usr/lib/libqimageblitz.so +./usr/lib/pkgconfig/qimageblitz.pc --- qimageblitz-0.0.4.orig/debian/libqimageblitz-dev.manpages +++ qimageblitz-0.0.4/debian/libqimageblitz-dev.manpages @@ -0,0 +1 @@ +debian/blitztest.1 --- qimageblitz-0.0.4.orig/debian/compat +++ qimageblitz-0.0.4/debian/compat @@ -0,0 +1 @@ +6 --- qimageblitz-0.0.4.orig/debian/changelog +++ qimageblitz-0.0.4/debian/changelog @@ -0,0 +1,41 @@ +qimageblitz (1:0.0.4-1) unstable; urgency=low + + * New upstream release. + + +++ Changes by Matthew Rosewarne: + + * Tweak description. + * Add Homepage: to control. + * Build -dbg package. + * Bump Standards-Version to 3.7.3, no changes needed. + + +++ Changes by Ana Beatriz Guerrero Lopez: + + * Add an epoch to fix the versioning number. + * Update debhlper to 6. + * Update years in copyright file. + * Refresh patches offset. + * Add a depend on libqimageblitz4 for the -dev package. + + -- Debian Qt/KDE Maintainers Tue, 22 Jan 2008 01:12:28 +0100 + +qimageblitz (0.0.706674-2) unstable; urgency=low + + * Update copyright file. + + -- Sune Vuorela Fri, 31 Aug 2007 09:43:34 +0200 + +qimageblitz (0.0.706674-1) unstable; urgency=low + + * New upstream release. + * Package name change to avoid clashes with blitz++. + + -- Sune Vuorela Fri, 31 Aug 2007 08:28:37 +0200 + +blitz (0.0.3+svn699563-1) unstable; urgency=low + + * Initial release. (Closes: #436987) + - Hack away newer cpu optimizations. + - Add a .gnu.note section to asm file - fixes lintian warning. + + -- Sune Vuorela Sun, 12 Aug 2007 19:16:04 +0200 --- qimageblitz-0.0.4.orig/debian/copyright +++ qimageblitz-0.0.4/debian/copyright @@ -0,0 +1,157 @@ +This package was debianized by Sune Vuorela on +Fri, 10 Aug 2007 00:53:22 +0200. + +It was downloaded from + +Upstream Author: + + Daniel M. Duley + +Copyright: +blitz/blitz.cpp: + | Copyright (C) 1998, 1999, 2001, 2002, 2004, 2005, 2007 + | Daniel M. Duley + | (C) 2004 Zack Rusin + | (C) 2000 Josef Weidendorfer + | (C) 1999 Geert Jansen + | (C) 1998, 1999 Christian Tibirna + | (C) 1998, 1999 Dirk Mueller + | + | Copyright (C) 2003 ImageMagick Studio, a non-profit organization dedicated to + | making software imaging solutions freely available. + | // Diagonal dgradient code inspired by BlackBox (mosfet) + | // BlackBox dgradient is (C) Brad Hughes, and + | // Mike Cole . +-- +blitz/blitzcpu.h: + | Copyright (C) 2003 Fredrik Hoglund + | Copyright (C) 2004 Daniel M. Duley +--- +blitz/blitzcpu.cpp: + | Copyright (C) 2003 Fredrik Hoglund + | Copyright (C) 2004 Daniel M. Duley +--- +blitz/colors.cpp: + | Copyright (C) 1998, 1999, 2001, 2002, 2004, 2005, 2007 + | Daniel M. Duley + | (C) 2000 Josef Weidendorfer + | (C) 1999 Geert Jansen +-- +blitz/convolve.cpp: + | Copyright (C) 2004, 2005, 2007 Daniel M. Duley +-- +blitz/convolve.cpp: + | Copyright (C) 2003 ImageMagick Studio, a non-profit organization dedicated to + | making software imaging solutions freely available. +-- +blitz/gradient.cpp: + | Copyright (C) 1998, 1999, 2001, 2002, 2004, 2005, 2007 + | Daniel M. Duley + | (C) 2004 Zack Rusin + | (C) 2000 Josef Weidendorfer + | (C) 1999 Geert Jansen + | (C) 1998, 1999 Christian Tibirna + | (C) 1998, 1999 Dirk Mueller +-- +blitz/histogram.cpp: + | Copyright (C) 1998, 1999, 2001, 2002, 2004, 2005, 2007 + | Daniel M. Duley + | Copyright (C) 2003 ImageMagick Studio, a non-profit organization dedicated to + | -making software imaging solutions freely available. +-- +blitz/mcpu.cpp: + | * Copyright (C) 2003 Fredrik Hoglund + | * Copyright (C) 2004 Daniel M. Duley +-- +blitz/mcpu.h: + | * Copyright (C) 2003 Fredrik Hoglund + | * Copyright (C) 2004 Daniel M. Duley +-- +blitz/qimageblitz.h: + | Copyright (C) 1998, 1999, 2001, 2002, 2004, 2005, 2007 + | Daniel M. Duley + | (C) 2004 Zack Rusin + | (C) 2000 Josef Weidendorfer + | (C) 1999 Geert Jansen + | (C) 1998, 1999 Christian Tibirna + | (C) 1998, 1999 Dirk Mueller +-- +blitz/qimageblitz_export.h: + | Copyright (C) 2007 Christian Ehrlicher +-- +blitz/scale.cpp: + | * Copyright (C) 2004, 2005, 2007 Daniel M. Duley + | * Imlib2 is (C) Carsten Haitzler and various contributors. The MMX code + | * is by Willem Monsuwe . All other modifications are + | * (C) Daniel M. Duley. +-- +blitz/scalefilter.cpp: + | Copyright (C) 2004, 2005, 2007 Daniel M. Duley + | Copyright (C) 2003 ImageMagick Studio, a non-profit organization dedicated to + | making software imaging solutions freely available. +-- +blitz/private/blitz_p.h:5 + | Copyright (C) 1998, 1999, 2001, 2002, 2004, 2005, 2Daniel M. Duley +-- +blitz/private/inlinehsv.h: + | Copyright (C) 2005, 2007 Daniel M. Duley +-- +blitz/private/interpolate.h: + | Copyright (C) 2005, 2007 Daniel M. Duley + +License: + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Portions of this software are were originally based on ImageMagick's + algorithms. ImageMagick is copyrighted under the following conditions: + + Copyright (C) 2003 ImageMagick Studio, a non-profit organization dedicated to + making software imaging solutions freely available. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files ("ImageMagick"), to deal + in ImageMagick without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of ImageMagick, and to permit persons to whom the ImageMagick is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of ImageMagick. + + The software is provided "as is", without warranty of any kind, express or + implied, including but not limited to the warranties of merchantability, + fitness for a particular purpose and noninfringement. In no event shall + ImageMagick Studio be liable for any claim, damages or other liability, + whether in an action of contract, tort or otherwise, arising from, out of or + in connection with ImageMagick or the use or other dealings in ImageMagick. + + Except as contained in this notice, the name of the ImageMagick Studio shall + not be used in advertising or otherwise to promote the sale, use or other + dealings in ImageMagick without prior written authorization from the + ImageMagick Studio. + + + +The Debian packaging is (C) 2007-2008, Debian Qt/KDE Maintainers and is licensed under +the license mentioned above. + --- qimageblitz-0.0.4.orig/debian/blitztest.1 +++ qimageblitz-0.0.4/debian/blitztest.1 @@ -0,0 +1,34 @@ +.\" Hey, EMACS: -*- nroff -*- +.TH BLITZTEST 1 "August 12, 2007" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +blitztest \- program to test blitz imaging filter library +.SH SYNOPSIS +.B blitztest +.RI imagefile +.br +.SH DESCRIPTION +This manual page documents briefly the +.B blitztest +command. Blitztest shows a window to demonstrate what the capabilities of the blitz library is. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +.br +.SH AUTHOR +blitz was written by Daniel M. Duley. +.PP +This manual page was written by Sune Vuorela , +for the Debian project (but may be used by others). --- qimageblitz-0.0.4.orig/debian/rules +++ qimageblitz-0.0.4/debian/rules @@ -0,0 +1,3 @@ +#!/usr/bin/make -f +THIS_SHOULD_GO_TO_UNSTABLE=1 +include debian/cdbs/kde.mk