--- libimage-seek-perl-0.02.orig/debian/control +++ libimage-seek-perl-0.02/debian/control @@ -0,0 +1,19 @@ +Source: libimage-seek-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7), perl (>= 5.6.0-12) +Maintainer: Debian Perl Group +Uploaders: gregor herrmann +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Image-Seek/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libimage-seek-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libimage-seek-perl/ + +Package: libimage-seek-perl +Architecture: any +Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends} +Description: Perl module to find similar pictures in a library + ImgSeek (http://www.imgseek.net/) is an implementation of Haar wavelet + decomposition techniques to find similar pictures in a library. + Image::Seek is a port of the ImgSeek library to Perl's XS. It can deal with + image objects produced by the Imager and Image::Imlib2 libraries. --- libimage-seek-perl-0.02.orig/debian/clean +++ libimage-seek-perl-0.02/debian/clean @@ -0,0 +1,2 @@ +const-c.inc +const-xs.inc --- libimage-seek-perl-0.02.orig/debian/copyright +++ libimage-seek-perl-0.02/debian/copyright @@ -0,0 +1,59 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Lilo Huang +Upstream-Source: http://search.cpan.org/dist/Image-Seek/ +Upstream-Name: Image-Seek + +Files: * +Copyright: + 2005 by Simon Cozens + 2008 by Lilo Huang +License: GPL-2+ + This library is free software; as it is a derivative work of imgseek, + this library is distributed under the same terms (GPL) as imgseek. + . + (Taken from lib/Image/Seek.pm, README says "same as Perl itself") + +Files: haar.cpp +Copyright: + Version from imgSeek Copyright (C) 2003 Ricardo Niederberger Cabral + XS version derived & Copyright (C) 2005 Simon Cozens +License: GPL-2+ + +Files: haar.h, imgdb.cpp, imgdb.h +Copyright: 2003 Ricardo Niederberger Cabral +License: GPL-2+ + +Files: ppport.h +Copyright: + Version 3.x, Copyright (c) 2004, Marcus Holland-Moritz. + Version 2.x, Copyright (C) 2001, Paul Marquess. + Version 1.x, Copyright (C) 1999, Kenneth Albanowski. +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: 2008, gregor herrmann +License: Artistic | GPL-1+ + +License: Artistic + This program is free software; you can redistribute it and/or modify + it under the terms of the Artistic License, which comes with Perl. + On Debian GNU/Linux systems, the complete text of the Artistic License + can be found in /usr/share/common-licenses/Artistic + +License: GPL-1+ + 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 1, or (at your option) + any later version. + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' + +License: GPL-2+ + 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. + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' --- libimage-seek-perl-0.02.orig/debian/watch +++ libimage-seek-perl-0.02/debian/watch @@ -0,0 +1,5 @@ +# format version number, currently 3; this line is compulsory! +version=3 +http://search.cpan.org/dist/Image-Seek/ .*/Image-Seek-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ +# newer versions: +http://www.cpan.org/modules/by-authors/id/K/KE/KENWU/Image-Seek-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libimage-seek-perl-0.02.orig/debian/compat +++ libimage-seek-perl-0.02/debian/compat @@ -0,0 +1 @@ +7 --- libimage-seek-perl-0.02.orig/debian/changelog +++ libimage-seek-perl-0.02/debian/changelog @@ -0,0 +1,5 @@ +libimage-seek-perl (0.02-1) unstable; urgency=low + + * Initial Release (closes: #505151). + + -- gregor herrmann Mon, 10 Nov 2008 19:43:57 +0100 --- libimage-seek-perl-0.02.orig/debian/rules +++ libimage-seek-perl-0.02/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh build + touch $@ + +clean: + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-arch: install + dh $@ + +binary-indep: + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build