--- tagcloud-1.4.orig/debian/control +++ tagcloud-1.4/debian/control @@ -0,0 +1,16 @@ +Source: tagcloud +Section: perl +Priority: optional +Maintainer: Runa Sandvik +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl +Standards-Version: 3.8.3 +Homepage: http://mcd.perlmonk.org/ + +Package: tagcloud +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends}, libhtml-parser-perl, libhtml-tagcloud-perl, libhttp-server-simple-perl +Description: Visualize tagged notes as a cloud + Tagcloud will start a simple web server and display a webpage where you can + choose which textfile to create a tagcloud from. You can then click on tags to + retrieve the notes, as well as search the fulltext of all the notes. --- tagcloud-1.4.orig/debian/copyright +++ tagcloud-1.4/debian/copyright @@ -0,0 +1,26 @@ +This work was packaged for Debian by: + + Runa Sandvik on Tue, 05 Jan 2010 15:28:17 +0100 + +It was downloaded from http://mcd.perlmonk.org/ + +Upstream Author(s): + + Dan McDonald + +Copyright: + + + +License: + + This program is free software. It may be used, redistributed and/or + modified under the terms of the Artistic License. See + http://www.perl.com/language/misc/Artistic.html + + On Debian systems, the complete text of the Artistic License can be + found in `/usr/share/common-licenses/Artistic'. + +The Debian packaging is: + + Copyright (C) 2010 Runa Sandvik --- tagcloud-1.4.orig/debian/compat +++ tagcloud-1.4/debian/compat @@ -0,0 +1 @@ +7 --- tagcloud-1.4.orig/debian/changelog +++ tagcloud-1.4/debian/changelog @@ -0,0 +1,15 @@ +tagcloud (1.4-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix "missing dependencies": add libhtml-parser-perl, + libhtml-tagcloud-perl, libhttp-server-simple-perl to Depends + (and remove libhtml-tagcloud-perl, libhttp-server-simple-perl from + Build-Depends). Closes: #628576 + + -- gregor herrmann Mon, 05 Sep 2011 18:14:13 +0200 + +tagcloud (1.4-1) unstable; urgency=low + + * Initial release (Closes: #563950) + + -- Runa Sandvik Thu, 07 Jan 2010 11:32:04 +0100 --- tagcloud-1.4.orig/debian/rules +++ tagcloud-1.4/debian/rules @@ -0,0 +1,70 @@ +#!/usr/bin/make -f +#-*- makefile -*- +# Made with the aid of dh_make, by Craig Small +# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. +# Some lines taken from debmake, by Christoph Lameter. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =`pwd`/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-O2 -g -Wall" + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + if [ -e Makefile ]; then \ + $(MAKE) distclean;\ + rm -f Makefile;\ + fi + + dh_clean + +install: + dh_testdir + dh_testroot + dh_installdirs + + $(MAKE) install PREFIX=$(TMP)/usr + [ ! -d $(TMP)/usr/lib/perl5 ] || \ + rmdir -p --ignore-fail-on-non-empty $(TMP)/usr/lib/perl5 + + + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do by default. + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installman docs/tagcloud.1 + dh_installchangelogs + dh_compress + dh_fixperms + dh_installdeb + dh_perl + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary