--- /dev/null
++teleschorsch (0.0.8-1) unstable; urgency=low
++
++ * New upstream release (contains manpage).
++ * Create a symlink qteleschorsch.1 -> teleschorsch.1.
++
++ -- gregor herrmann <gregor+debian@comodo.priv.at> Sun, 4 Mar 2007 18:45:30 +0100
++
+teleschorsch (0.0.7-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- gregor herrmann <gregor+debian@comodo.priv.at> Sun, 4 Mar 2007 03:14:46 +0100
+
+teleschorsch (0.0.6-1) unstable; urgency=low
+
+ * New upstream release.
+ * Change priorities for update-alternatives in postinst to make qteleschorsch
+ the default binary now that it's more or less finished.
+
+ -- gregor herrmann <gregor+debian@comodo.priv.at> Fri, 2 Mar 2007 16:16:36 +0100
+
+teleschorsch (0.0.5-1) unstable; urgency=low
+
+ * New upstream release.
+ * Put only one entry (the generic one, pointing to /usr/bin/teleschorsch
+ which is handled by the alternatives sytem) into the .desktop file.
+
+ -- gregor herrmann <gregor+debian@comodo.priv.at> Fri, 2 Mar 2007 00:40:25 +0100
+
+teleschorsch (0.0.4-2) unstable; urgency=low
+
+ * Add Name[de] and addidtional [Desktop entry] headers to .desktop file.
+
+ -- gregor herrmann <gregor+debian@comodo.priv.at> Wed, 28 Feb 2007 23:36:51 +0100
+
+teleschorsch (0.0.4-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- gregor herrmann <gregor+debian@comodo.priv.at> Wed, 28 Feb 2007 23:20:24 +0100
+
+teleschorsch (0.0.3-2) unstable; urgency=low
+
+ * Add AudioVideo to .desktop file.
+
+ -- gregor herrmann <gregor+debian@comodo.priv.at> Wed, 28 Feb 2007 22:51:33 +0100
+
+teleschorsch (0.0.3-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- gregor herrmann <gregor+debian@comodo.priv.at> Tue, 27 Feb 2007 23:01:59 +0100
+
+teleschorsch (0.0.2-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- gregor herrmann <gregor+debian@comodo.priv.at> Sun, 25 Feb 2007 17:38:52 +0100
+
+teleschorsch (0.0.1-1) unstable; urgency=low
+
+ * Initial release.
+
+ -- gregor herrmann <gregor+debian@comodo.priv.at> Sun, 25 Feb 2007 14:33:49 +0100
+
--- /dev/null
- # dh_installman
- dh_link
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ CFLAGS += -O0
+else
+ CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+ dh_testdir
+ qmake
+ touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp
+ dh_testdir
+ $(MAKE)
+ touch $@
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp configure-stamp
+ [ ! -f Makefile ] || $(MAKE) distclean
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs ChangeLog
+ dh_installdocs
+# dh_installexamples
+ dh_install
+ dh_installmenu
+ dh_desktop
+# dh_installdebconf
+# dh_installlogrotate
+# dh_installemacsen
+# dh_installpam
+# dh_installmime
+# dh_python
+# dh_installinit
+# dh_installcron
+# dh_installinfo
++ dh_installman teleschorsch.1
++ dh_link usr/share/man/man1/teleschorsch.1 usr/share/man/man1/qteleschorsch.1
+ dh_strip
+ dh_compress
+ dh_fixperms
+# dh_perl
+# dh_makeshlibs
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure