--- vdk2-tutorial-1.1.orig/debian/changelog +++ vdk2-tutorial-1.1/debian/changelog @@ -0,0 +1,17 @@ +vdk2-tutorial (1.1-3) unstable; urgency=low + + * rebuild to finish /usr/doc transition (closes: #359599) + + -- Michael Vogt Tue, 28 Mar 2006 10:11:37 +0200 + +vdk2-tutorial (1.1-2) unstable; urgency=low + + * fixed missing build-depends (closes: #146915) + + -- Michael Vogt Tue, 14 May 2002 12:31:34 +0200 + +vdk2-tutorial (1.1-1) unstable; urgency=low + + * initial release + + -- Michael Vogt Fri, 5 Apr 2002 11:39:11 +0200 --- vdk2-tutorial-1.1.orig/debian/compat +++ vdk2-tutorial-1.1/debian/compat @@ -0,0 +1 @@ +4 \ No newline at end of file --- vdk2-tutorial-1.1.orig/debian/control +++ vdk2-tutorial-1.1/debian/control @@ -0,0 +1,16 @@ +Source: vdk2-tutorial +Priority: optional +Maintainer: Michael Vogt +Build-Depends: debhelper (>> 3.0.0) +Standards-Version: 3.5.6 + +Package: vdk2-tutorial +Section: doc +Architecture: all +Suggests: libvdk2-dev +Description: Tutorial for the Visual Development Kit C++ library 2 + The Visual Development Kit2 (VDK2) is a C++ library + that wraps the GTK+ toolkit. + . + This package contains a tutorial for VDK2. It will be + put in /usr/share/doc/vdk2-tutorial/. --- vdk2-tutorial-1.1.orig/debian/copyright +++ vdk2-tutorial-1.1/debian/copyright @@ -0,0 +1,10 @@ +This package was debianized by: + Michael Vogt + on Fri, 05 Apr 2002 13:23:57 +0100. + +It was made from files downloaded from: + http://vdkbuilder.sourceforge.net/ + +Copyright: + GFDL 1.1 (GNU Free Documentation License), see + http://www.gnu.org/copyleft/fdl.html \ No newline at end of file --- vdk2-tutorial-1.1.orig/debian/docs +++ vdk2-tutorial-1.1/debian/docs @@ -0,0 +1 @@ +vdktutorial-1.1.pdf --- vdk2-tutorial-1.1.orig/debian/rules +++ vdk2-tutorial-1.1/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