--- vdk-doc-1.2.4.orig/debian/changelog +++ vdk-doc-1.2.4/debian/changelog @@ -0,0 +1,74 @@ +vdk-doc (1.2.4-4) unstable; urgency=low + + * rebuild to fix /usr/doc transition (closes: #359605) + + -- Michael Vogt Tue, 28 Mar 2006 09:57:03 +0200 + +vdk-doc (1.2.4-3) unstable; urgency=low + + * added build-depend on debhelper (closes: #190616) + + -- Michael Vogt Tue, 8 Jul 2003 17:57:38 +0200 + +vdk-doc (1.2.4-2) unstable; urgency=low + + * new debian maintainer, closes bug: #88238 + + -- Michael Vogt Thu, 12 Apr 2001 10:55:09 +0200 + +vdk-doc (1.2.4-1) unstable; urgency=low + + * New upstream release. + + -- Ionutz Borcoman Tue, 14 Nov 2000 13:00:20 +0900 + +vdk-doc (1.2.1-1) unstable; urgency=low + + * New upstream release. + * Removed the HTML doc as it is ugly and difficult to use. + + -- Ionutz Borcoman Thu, 10 Aug 2000 18:52:06 +0900 + +vdk-doc (1.0.2-1) unstable; urgency=low + + * New upstream release. + + -- Ionutz Borcoman Wed, 27 Oct 1999 20:29:01 +0900 + +vdk-doc (0.6.3-1) unstable; urgency=low + + * New upstream release. + + -- Ionutz Borcoman Mon, 19 Jul 1999 13:23:57 +0900 + +vdk-doc (0.6.0-3) unstable; urgency=low + + * Fixes Bug#34235 + + -- Ionutz Borcoman Mon, 8 Mar 1999 13:23:57 +0900 + +vdk-doc (0.6.0-2) unstable; urgency=low + + * Corrected the info from control file. + + -- Ionutz Borcoman Wed, 3 Mar 1999 13:23:57 +0900 + +vdk-doc (0.6.0-1) unstable; urgency=low + + * New upstream release. + + -- Ionutz Borcoman Wed, 3 Mar 1999 13:23:57 +0900 + +vdk-doc (0.5-2) unstable; urgency=low + + * Refined copyright notice. + + -- Ionutz Borcoman Sat, 27 Feb 1999 13:23:57 +0900 + +vdk-doc (0.5-1) unstable; urgency=low + + * Initial release. + + -- Ionutz Borcoman Fri, 26 Feb 1999 13:23:57 +0900 + + --- vdk-doc-1.2.4.orig/debian/control +++ vdk-doc-1.2.4/debian/control @@ -0,0 +1,16 @@ +Source: vdk-doc +Priority: optional +Maintainer: Michael Vogt +Standards-Version: 3.5.10 +Build-Depends: debhelper (>> 2.0.0) + +Package: vdk-doc +Section: doc +Architecture: all +Suggests: libvdk1-dev +Description: The Visual Development Kit C++ library + The Visual Development Kit (VDK) is a C++ library + that wraps the GTK+ toolkit. + . + This package contains the reference for VDK. It will be + put in /usr/share/doc/vdk-doc/. --- vdk-doc-1.2.4.orig/debian/compat +++ vdk-doc-1.2.4/debian/compat @@ -0,0 +1 @@ +4 \ No newline at end of file --- vdk-doc-1.2.4.orig/debian/copyright +++ vdk-doc-1.2.4/debian/copyright @@ -0,0 +1,9 @@ +This package was debianized by: + Ionutz Borcoman + on Wed, 24 Feb 1998 13:23:57 +0900. + +It was made from files downloaded from: + http://vdkbuilder.sourceforge.net/ + +Copyright: + GFDL (GNU Free Documentation License) \ No newline at end of file --- vdk-doc-1.2.4.orig/debian/docs +++ vdk-doc-1.2.4/debian/docs @@ -0,0 +1 @@ +vdk124refmanual.ps --- vdk-doc-1.2.4.orig/debian/rules +++ vdk-doc-1.2.4/debian/rules @@ -0,0 +1,52 @@ +#!/usr/bin/make -f + +# debian/rules file for gtk+ Debian package +# written Feb 1999 by Ionutz Borcoman +# used script written April 1998 by Ben Gertzfield + +build: build-stamp +build-stamp: + dh_testdir + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp install-stamp + # Add here commands to clean up after the build process. + dh_clean + +install: install-stamp +install-stamp: build + dh_testdir + dh_testroot + dh_clean + touch install-stamp + +# Build architecture-independent files here. +binary-indep: build install vdk-doc + +# Build architecture-dependent files here. +binary-arch: + +vdk-doc: build + dh_testdir + dh_testroot + dh_installdirs + dh_installdocs + dh_installchangelogs + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_makeshlibs + 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