--- krita-plugins-1.6.3.orig/debian/krita-plugins.lintian +++ krita-plugins-1.6.3/debian/krita-plugins.lintian @@ -0,0 +1,3 @@ +krita-plugins: no-shlibs-control-file usr/lib/libkritapluginscommon.so +krita-plugins: postinst-must-call-ldconfig usr/lib/libkritapluginscommon.so +krita-plugins: package-name-doesnt-match-sonames libkritapluginscommon --- krita-plugins-1.6.3.orig/debian/copyright +++ krita-plugins-1.6.3/debian/copyright @@ -0,0 +1,28 @@ +This package was debianized by Jonathan Patrick Davies on +Sun, 28 Oct 2007 10:39:54 +0200. + +It was downloaded from http://www.krita-plugins.org/ + +Upstream Author: + Cyrille Berger + +Copyright: + Copyright (C) 2007 Cyrille Berger + +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 2 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, 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 the /usr/share/common-licenses/GPL file. --- krita-plugins-1.6.3.orig/debian/changelog +++ krita-plugins-1.6.3/debian/changelog @@ -0,0 +1,13 @@ +krita-plugins (1.6.3-0ubuntu1) hardy; urgency=low + + * New upstream release. + * Updated Stardards-Version to 3.7.3. + * Added new plugin "Perlin and Swarming Noise" to control. + + -- Jonathan Patrick Davies Sun, 9 Dec 2007 21:13:54 +0100 + +krita-plugins (1.6.2-0ubuntu1) hardy; urgency=low + + * Initial release. + + -- Jonathan Patrick Davies Sun, 28 Oct 2007 10:39:54 +0200 --- krita-plugins-1.6.3.orig/debian/compat +++ krita-plugins-1.6.3/debian/compat @@ -0,0 +1 @@ +5 --- krita-plugins-1.6.3.orig/debian/control +++ krita-plugins-1.6.3/debian/control @@ -0,0 +1,28 @@ +Source: krita-plugins +Section: kde +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Jonathan Patrick Davies +Build-Depends: debhelper (>= 5.0.0), cdbs, koffice-dev, cmake +Standards-Version: 3.7.3 +Homepage: http://www.krita-plugins.org/ + +Package: krita-plugins +Architecture: any +Depends: ${shlibs:Depends} +Description: plugins for Krita, of the KDE Office Suite + Krita-Plugins is a project dedicated to enhence the user experience and set + of features of Krita, the painting and image editing application of KOffice, + the office suite of the KDE project. + . + Plugins included are: + * Binarize + * Deskew + * Dodge and Burn + * Expand + * Fast blur + * Grayscalizer + * Line Sampler + * Pyramidal Sharpening + * Red eye removal + * Perlin and Swarming Noise --- krita-plugins-1.6.3.orig/debian/rules +++ krita-plugins-1.6.3/debian/rules @@ -0,0 +1,46 @@ +#!/usr/bin/make -f + +build: build-stamp + +build-stamp: + dh_testdir + mkdir build + cd build; cmake -DCMAKE_INSTALL_PREFIX=/usr ../ + cd build; $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + [ ! -f Makefile ] || $(MAKE) distclean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + cd build; $(MAKE) install DESTDIR=$(CURDIR)/debian/krita-plugins + + install -D -m644 debian/krita-plugins.lintian debian/krita-plugins/usr/share/lintian/overrides/krita-plugins + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_install + dh_strip + dh_compress + 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