--- tetzle-1.0.orig/debian/compat +++ tetzle-1.0/debian/compat @@ -0,0 +1 @@ +5 --- tetzle-1.0.orig/debian/copyright +++ tetzle-1.0/debian/copyright @@ -0,0 +1,16 @@ +This package was debianized by Ulrik Mikaelsson on +Mon, 23 Jun 2008 23:31:44 +0200. + +It was downloaded from + +Upstream Author: + Graeme Gott + +Copyright: + Copyright (C) 2008 Graeme Gott + +License: + GPL + +The Debian packaging is (C) 2008, Ulrik Mikaelsson and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- tetzle-1.0.orig/debian/control +++ tetzle-1.0/debian/control @@ -0,0 +1,17 @@ +Source: tetzle +Section: games +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Ulrik Mikaelsson +Build-Depends: debhelper (>= 5), libqt4-dev, mesa-common-dev +Standards-Version: 3.8.0 +Homepage: http://gottcode.org/tetzle/ + +Package: tetzle +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: A jigsaw puzzle game that uses tetrominoes for the pieces. + A jigsaw puzzle game that uses tetrominoes for the pieces. Any image + can be imported and used to create puzzles with a wide range of sizes. + Games are saved automatically, and you can select between currently in + progress games. --- tetzle-1.0.orig/debian/rules +++ tetzle-1.0/debian/rules @@ -0,0 +1,90 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# 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 + + + + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + qmake-qt4 PREFIX=/usr + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #docbook-to-man debian/tetzle.sgml > tetzle.1 + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/tetzle. + qmake-qt4 PREFIX=/usr # Rerun to find and mark built targets for installation + $(MAKE) INSTALL_ROOT=$(CURDIR)/debian/tetzle install + + +# 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_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + 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 --- tetzle-1.0.orig/debian/changelog +++ tetzle-1.0/debian/changelog @@ -0,0 +1,6 @@ +tetzle (1.0-0ubuntu1) hardy; urgency=low + + * Initial release (Closes: #242481) + + -- Ulrik Mikaelsson Mon, 23 Jun 2008 23:31:44 +0200 +