--- imview-doc-1.0.1.orig/imview.pdf +++ imview-doc-1.0.1/imview.pdf @@ -24125,16 +24125,3 @@ 3152900 %%EOF - - -

-© Copyright 1997-2005, CSIRO Australia
-Use of this web site and information available from
-it is subject to our
- -Legal Notice and Disclaimer and Privacy -Statement -

- - - \ No newline at end of file --- imview-doc-1.0.1.orig/Makefile +++ imview-doc-1.0.1/Makefile @@ -0,0 +1,10 @@ + +INSTALL=/usr/bin/install + +install: + ${INSTALL} -d $(DESTDIR)/usr/share/doc/imview-doc + cp imview.pdf $(DESTDIR)/usr/share/doc/imview-doc + ${INSTALL} -d $(DESTDIR)/usr/share/doc/imview-doc/html + cp html/* $(DESTDIR)/usr/share/doc/imview-doc/html +clean: + rm -rf $(DESTDIR) --- imview-doc-1.0.1.orig/debian/README.Debian +++ imview-doc-1.0.1/debian/README.Debian @@ -0,0 +1,8 @@ +Imview manual for Debian +------------------------ + +This is the manual for Imview, an image viewing and analysis application +found in the Debian package imview. The HTML documentation was downloaded +from http://www.cmis.csiro.au/Hugues.Talbot/imview/online/ + + -- Teemu Ikonen , Wed, 24 Dec 2003 00:12:48 -0500 --- imview-doc-1.0.1.orig/debian/changelog +++ imview-doc-1.0.1/debian/changelog @@ -0,0 +1,32 @@ +imview-doc (1.0.1-3) unstable; urgency=low + + * control: Change maintainer to Debian Science Maintainers + + * control: Add Uploaders field with Teemu Ikonen + * control: Update to standards-version 3.8.0 + * control: Add Vcs-* fields + * Change doc-base section to Science/Data Analysis. + Fixes lintian warning doc-base-unknown-section. + * Remove html junk from the end of the pdf documentation (closes: #490567) + * copyright: convert to machine readable format + + -- Teemu Ikonen Sun, 13 Jul 2008 14:39:36 +0200 + +imview-doc (1.0.1-2) unstable; urgency=low + + * Change section from non-free/doc to doc, due to GFDL being now allowed + in main + * Update maintainer email + * Update to standards-version 3.7.2 + * Change the debhelper build-depends-indep to build-depends + * Include GFDL 1.1 in debian/copyright + + -- Teemu Ikonen Wed, 10 Jan 2007 17:31:37 +0100 + +imview-doc (1.0.1-1) unstable; urgency=low + + * First upload (closes: #327854) + * Provides documentation for imview (closes: #327143) + + -- Teemu Ikonen Mon, 12 Sep 2005 17:52:05 -0500 + --- imview-doc-1.0.1.orig/debian/compat +++ imview-doc-1.0.1/debian/compat @@ -0,0 +1 @@ +4 --- imview-doc-1.0.1.orig/debian/control +++ imview-doc-1.0.1/debian/control @@ -0,0 +1,17 @@ +Source: imview-doc +Section: doc +Priority: optional +Maintainer: Debian Science Maintainers +Uploaders: Teemu Ikonen +Vcs-Browser: http://git.debian.org/?p=debian-science/packages/imview-doc.git +Vcs-Git: http://git.debian.org/git/debian-science/packages/imview-doc.git +Build-Depends: debhelper (>= 4.0.0) +Standards-Version: 3.8.0 + +Package: imview-doc +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends} +Recommends: imview +Description: The manual for Imview + This is the complete user manual for Imview, an image viewing and analysis + application found in the Debian package imview. --- imview-doc-1.0.1.orig/debian/copyright +++ imview-doc-1.0.1/debian/copyright @@ -0,0 +1,24 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat +Debianized-By: Teemu Ikonen +Debianized-Date: Wed, 24 Dec 2003 23:06:05 -0500. +Original-Source: http://www.cmis.csiro.au/Hugues.Talbot/imview/ +Upstream Author: Hugues Talbot + +Files: debian/* +Copyright: 2003-2008 Teemu Ikonen +License: GPL-2+ + On Debian systems, the complete text of the GNU General Public License + version 2 can be found in file "/usr/share/common-licenses/GPL-2". + +Files: * +Copyright: 1997-2008 Hugues Talbot +License: GFDL-1.1+ + Permissionis granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.1 or + any later version published by the Free Software Foundation; with no + invariant section, with the Front-Cover Texts being this license page, + and with no Back-Cover. A copy of the license is included in the section + entitled "GNU Free Documentation License" in Appendix E. + . + On Debian systems, the complete text of the GNU Free Documentation license + can be found in the file /usr/share/common-licenses/GFDL. --- imview-doc-1.0.1.orig/debian/imview-doc.doc-base +++ imview-doc-1.0.1/debian/imview-doc.doc-base @@ -0,0 +1,12 @@ +Document: imview-manual +Title: Imview Manual +Author: Hugues Talbot +Abstract: This is the manual of Imview, a portable image display application +Section: Science/Data Analysis + +Format: pdf +Files: /usr/share/doc/imview-doc/imview.pdf + +Format: HTML +Index: /usr/share/doc/imview-doc/html/imview.html +Files: /usr/share/doc/imview-doc/html/* --- imview-doc-1.0.1.orig/debian/rules +++ imview-doc-1.0.1/debian/rules @@ -0,0 +1,64 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# This file is public domain software, originally written by Joey Hess. +# +# This version is for packages that are architecture independent. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +VERSION=1.0.1 +ORIG_DIR=imview-doc-$(VERSION).orig +ORIGTAR=imview-doc_$(VERSION).orig.tar.gz +PDFURL=http://www.cmis.csiro.au/Hugues.Talbot/imview/download/imview.pdf +HTMLURL=http://www.cmis.csiro.au/Hugues.Talbot/imview/online/imview.html + + +get-orig-source: + mkdir $(ORIG_DIR) + wget -P $(ORIG_DIR) $(PDFURL) + mkdir $(ORIG_DIR)/html + wget wget -e "robots = off" -k -p -nd -P $(ORIG_DIR)/html $(HTMLURL) + tar -zcf $(ORIGTAR) $(ORIG_DIR) + rm -rf $(ORIG_DIR) + +build: build-stamp +build-stamp: + dh_testdir + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install DESTDIR=$(CURDIR)/debian/imview-doc + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_installman + dh_link + dh_compress -X.pdf + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do by default. + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install