From: gregor herrmann Date: Sun, 4 Mar 2007 17:48:36 +0000 (-0000) Subject: * New upstream release (contains manpage). X-Git-Tag: debian/0.2.3-1~36 X-Git-Url: https://git.toastfreeware.priv.at/debian/teleschorsch.git/commitdiff_plain/fa1469ffdfeb3acaf2a6fa63eff99f38e4d364a8?ds=inline * New upstream release (contains manpage). * Create a symlink qteleschorsch.1 -> teleschorsch.1. --- fa1469ffdfeb3acaf2a6fa63eff99f38e4d364a8 diff --cc debian/changelog index 88c133b,0000000..0e16b0a mode 100644,000000..100644 --- a/debian/changelog +++ b/debian/changelog @@@ -1,58 -1,0 +1,65 @@@ ++teleschorsch (0.0.8-1) unstable; urgency=low ++ ++ * New upstream release (contains manpage). ++ * Create a symlink qteleschorsch.1 -> teleschorsch.1. ++ ++ -- gregor herrmann Sun, 4 Mar 2007 18:45:30 +0100 ++ +teleschorsch (0.0.7-1) unstable; urgency=low + + * New upstream release. + + -- gregor herrmann 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 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 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 Wed, 28 Feb 2007 23:36:51 +0100 + +teleschorsch (0.0.4-1) unstable; urgency=low + + * New upstream release. + + -- gregor herrmann Wed, 28 Feb 2007 23:20:24 +0100 + +teleschorsch (0.0.3-2) unstable; urgency=low + + * Add AudioVideo to .desktop file. + + -- gregor herrmann Wed, 28 Feb 2007 22:51:33 +0100 + +teleschorsch (0.0.3-1) unstable; urgency=low + + * New upstream release. + + -- gregor herrmann Tue, 27 Feb 2007 23:01:59 +0100 + +teleschorsch (0.0.2-1) unstable; urgency=low + + * New upstream release. + + -- gregor herrmann Sun, 25 Feb 2007 17:38:52 +0100 + +teleschorsch (0.0.1-1) unstable; urgency=low + + * Initial release. + + -- gregor herrmann Sun, 25 Feb 2007 14:33:49 +0100 + diff --cc debian/rules index 8ca6300,0000000..5969a05 mode 100755,000000..100755 --- a/debian/rules +++ b/debian/rules @@@ -1,84 -1,0 +1,84 @@@ +#!/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 - dh_link ++ 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