--- libmath-bezier-perl-0.01.orig/debian/rules +++ libmath-bezier-perl-0.01/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ --- libmath-bezier-perl-0.01.orig/debian/libmath-bezier-perl.docs +++ libmath-bezier-perl-0.01/debian/libmath-bezier-perl.docs @@ -0,0 +1 @@ +README --- libmath-bezier-perl-0.01.orig/debian/watch +++ libmath-bezier-perl-0.01/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Math-Bezier/ .*/Math-Bezier-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libmath-bezier-perl-0.01.orig/debian/control +++ libmath-bezier-perl-0.01/debian/control @@ -0,0 +1,29 @@ +Source: libmath-bezier-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl +Maintainer: Richard Holland +Standards-Version: 3.9.1 +Homepage: http://search.cpan.org/dist/Math-Bezier/ + +Package: libmath-bezier-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Description: solution of Bezier Curves + Math::Bezier implements the algorithm for the solution of Bezier curves as + presented by Robert D. Miller in Graphics Gems V, "Quick and Simple Bezier + Curve Drawing". + . + A new Bezier curve is created using the new() constructor, passing a list of + (x, y) control points. + . + use Math::Bezier; + . + my @control = ( 0, 0, 10, 20, 30, -20, 40, 0 ); + . + my $bezier = Math::Bezier->new(@control); + . + Alternately, a reference to a list of control points may be passed. + . + This description was automagically extracted from the module by dh-make-perl. --- libmath-bezier-perl-0.01.orig/debian/changelog +++ libmath-bezier-perl-0.01/debian/changelog @@ -0,0 +1,5 @@ +libmath-bezier-perl (0.01-1) unstable; urgency=low + + * Initial Release. (Closes: #592516) + + -- Richard Holland Thu, 19 Aug 2010 10:55:25 +0200 --- libmath-bezier-perl-0.01.orig/debian/copyright +++ libmath-bezier-perl-0.01/debian/copyright @@ -0,0 +1,36 @@ +Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 +Maintainer: Andy Wardley +Source: http://search.cpan.org/dist/Math-Bezier/ +Name: Math-Bezier +DISCLAIMER: This copyright info was automatically extracted + from the perl module. It may not be accurate, so you better + check the module sources in order to ensure the module for its + inclusion in Debian or for general legal information. Please, + if licensing information is incorrectly generated, file a bug + on dh-make-perl. + NOTE: Don't forget to remove this disclaimer once you are happy + with this file. + +Files: * +Copyright: Andy Wardley +License: Artistic + +Files: debian/* +Copyright: 2010, Richard Holland +License: Artistic or 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 version 1 of the + General Public License can be found in `/usr/share/common-licenses/GPL-1'. --- libmath-bezier-perl-0.01.orig/debian/compat +++ libmath-bezier-perl-0.01/debian/compat @@ -0,0 +1 @@ +7