--- libdebian-package-html-perl-0.1.orig/lib/Debian/Package/HTML.pm
+++ libdebian-package-html-perl-0.1/lib/Debian/Package/HTML.pm
@@ -146,7 +146,7 @@
# Documentation
-=head1 Debian::Package::HTML
+=head1 NAME
Debian::Package::HTML - Generates a webpage information (and Linda/Lintian checks) about a Debian binary or source package using HTML::Template
@@ -323,7 +323,7 @@
Jose Parrella (joseparrella@cantv.net) wrote the original code, then modularized and OOed the code.
-Thanks go to Christian Sánchez (csanchez@unplug.org.ve) who helped with the original HTML::Template'ing
+Thanks go to Christian Sanchez (csanchez@unplug.org.ve) who helped with the original HTML::Template'ing
=head1 COPYRIGHT
--- libdebian-package-html-perl-0.1.orig/debian/compat
+++ libdebian-package-html-perl-0.1/debian/compat
@@ -0,0 +1 @@
+4
--- libdebian-package-html-perl-0.1.orig/debian/control
+++ libdebian-package-html-perl-0.1/debian/control
@@ -0,0 +1,17 @@
+Source: libdebian-package-html-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2), libhtml-template-perl (>= 2.6-2)
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Jose Parrella
+Standards-Version: 3.7.3
+
+Package: libdebian-package-html-perl
+Architecture: all
+Depends: ${perl:Depends}, libhtml-template-perl (>= 2.6-2)
+Description: generates HTML from a Debian source/binary package
+ This module outputs a webpage using HTML::Template templates which
+ resumes the information of a normal build environment for a package
+ in Debian (source files, binary packages and changelogs) using
+ Linda/Lintian for sanity checks. It is useful for making unified presentation
+ webpages for those packages which are being sponsorized by someone in Debian.
--- libdebian-package-html-perl-0.1.orig/debian/changelog
+++ libdebian-package-html-perl-0.1/debian/changelog
@@ -0,0 +1,12 @@
+libdebian-package-html-perl (0.1-2) unstable; urgency=low
+
+ * debian/rules: fixes unconditional rmdir (Closes: #467832)
+
+ -- Jose Parrella Sun, 09 Mar 2008 20:40:08 -0430
+
+libdebian-package-html-perl (0.1-1) unstable; urgency=low
+
+ * Initial Release (Closes: #379284)
+
+ -- Jose Parrella Thu, 20 Jul 2006 14:01:22 -0400
+
--- libdebian-package-html-perl-0.1.orig/debian/copyright
+++ libdebian-package-html-perl-0.1/debian/copyright
@@ -0,0 +1,16 @@
+This is the debian package for the Debian-Package-HTML module.
+It was created by Jose Parrella using dh-make-perl.
+
+The upstream author is:
+
+Jose Parrella (joseparrella@cantv.net)
+
+Copyright 2006 Jose Parrella. All rights reserved.
+
+This library is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+Perl is distributed under your choice of the GNU General Public License or
+the Artistic License. On Debian GNU/Linux systems, the complete text of the
+GNU General Public License can be found in `/usr/share/common-licenses/GPL'
+and the Artistic Licence in `/usr/share/common-licenses/Artistic'.
--- libdebian-package-html-perl-0.1.orig/debian/rules
+++ libdebian-package-html-perl-0.1/debian/rules
@@ -0,0 +1,63 @@
+#!/usr/bin/make -f
+
+export PERL_MM_USE_DEFAULT=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+
+ $(PERL) Makefile.PL INSTALLDIRS=vendor
+ $(MAKE) OPTIMIZE="-Wall -O2 -g"
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+
+ [ ! -f Makefile ] || $(MAKE) realclean
+
+ dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+
+ $(MAKE) test
+ $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+ [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
+
+ touch install-stamp
+
+binary-arch:
+
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installdocs README
+ dh_installchangelogs Changes
+ dh_perl
+ dh_link
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+source diff:
+ @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary