--- qbrew-0.3.4.orig/debian/dirs +++ qbrew-0.3.4/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/share/pixmaps --- qbrew-0.3.4.orig/debian/docs +++ qbrew-0.3.4/debian/docs @@ -0,0 +1,3 @@ +AUTHORS +README +TODO --- qbrew-0.3.4.orig/debian/menu +++ qbrew-0.3.4/debian/menu @@ -0,0 +1,8 @@ +?package(qbrew):\ + needs="X11"\ + section="Apps/Tools"\ + title="QBrew"\ + longtitle="Homebrewer's recipe calculator"\ + command="/usr/bin/qbrew"\ + icon16x16="/usr/share/pixmaps/qbrew_16x16.xpm"\ + icon32x32="/usr/share/pixmaps/qbrew_32x32.xpm" --- qbrew-0.3.4.orig/debian/control +++ qbrew-0.3.4/debian/control @@ -0,0 +1,17 @@ +Source: qbrew +Section: x11 +Priority: extra +Maintainer: Tobias Toedter +Build-Depends: debhelper (>> 4.0.0), libqt3-mt-dev, xlibs-dev, autotools-dev, dpatch +Standards-Version: 3.6.1 + +Package: qbrew +Architecture: any +Depends: ${shlibs:Depends} +Description: Homebrewer's recipe calculator (uses Qt) + QBrew is a recipe calculator for homebrewed beers. It uses Qt for creating + its graphical user interface and provides facilities for creating own beer + recipes. It even has a manual describing how to brew your first beer + yourself! + . + Homepage: http://www.usermode.org/code.html --- qbrew-0.3.4.orig/debian/rules +++ qbrew-0.3.4/debian/rules @@ -0,0 +1,111 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# Include the Makefile snippet for dpatch +include /usr/share/dpatch/dpatch.make +PACKAGE=qbrew + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +# FOR AUTOCONF 2.52 AND NEWER ONLY +ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) + CONFFLAGS += --build $(DEB_HOST_GNU_TYPE) +else + CONFFLAGS += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +endif + +config.status: configure + dh_testdir + + # Link to the newest config.{guess,sub} files from autotools-dev + rm -f config/config.guess + rm -f config/config.sub + + ln -s /usr/share/misc/config.sub config/config.sub + ln -s /usr/share/misc/config.guess config/config.guess + + # Add here commands to configure the package. + env CFLAGS="$(CFLAGS)" \ + ./configure $(CONFFLAGS) \ + --prefix=/usr \ + --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info + + +build: build-stamp + +build-stamp: patch-stamp config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + + touch build-stamp + +clean: unpatch + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) distclean + + # Remove the symlinks + -rm -f config/config.sub config/config.guess + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/qbrew. + $(MAKE) install DESTDIR=$(CURDIR)/debian/qbrew + install -m 0644 pics/qbrew_16x16.xpm $(CURDIR)/debian/qbrew/usr/share/pixmaps + install -m 0644 pics/qbrew_32x32.xpm $(CURDIR)/debian/qbrew/usr/share/pixmaps + + +# 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_installman debian/qbrew.1 + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install patch unpatch --- qbrew-0.3.4.orig/debian/watch +++ qbrew-0.3.4/debian/watch @@ -0,0 +1,6 @@ +# Example watch control file for uscan +# Rename this file to "watch" and then you can run the "uscan" command +# to check for upstream updates and more. +# Site Directory Pattern Version Script +version=2 +http://www.usermode.org/code/qbrew-(.*)\.tar\.gz debian uupdate --- qbrew-0.3.4.orig/debian/qbrew.doc-base +++ qbrew-0.3.4/debian/qbrew.doc-base @@ -0,0 +1,11 @@ +Document: qbrew +Title: The QBrew Handbook +Author: David Johnson +Abstract: This handbook describes what QBrew is + and how it can be used to + create beer recipes for homebrewers. +Section: Apps/Tools + +Format: HTML +Index: /usr/share/doc/qbrew/en/qbrew-handbook.html +Files: /usr/share/doc/qbrew/en/*.html --- qbrew-0.3.4.orig/debian/changelog +++ qbrew-0.3.4/debian/changelog @@ -0,0 +1,151 @@ +qbrew (0.3.4-1build1) breezy; urgency=low + + * Rebuild for new C++ ABI + + -- Matthias Klose Mon, 6 Jun 2005 16:30:48 +0000 + +qbrew (0.3.4-1) unstable; urgency=low + + * New upstream release + * Included the file AUTHORS + * Fixed handling of config.{guess,sub} -- the files were copied to + the wrong location, so they were not used by the configure script + * Generated the xpm menu icons from the upstream svg file. They + look so much nicer now! + + -- Tobias Toedter Mon, 4 Oct 2004 20:08:23 +0200 + +qbrew (0.3.3.1-1) unstable; urgency=low + + * New upstream release, fixes a bug with spinbuttons under Qt + * Build-Depends: on autotools-dev, to handle config.{guess,sub} in a + sane way + * Build-Depends: on dpatch. The use of dpatch is newly introduced. + + -- Tobias Toedter Tue, 18 May 2004 18:49:39 +0200 + +qbrew (0.3.3-5) unstable; urgency=low + + * Changing the copyright file to say something meaningful about + the copyright + * Removed xlibs from Build-Depends, since xlibs-dev is already listed + there + * Removed zlib1g and xutils from Build-Depends, since they both were + not needed at all. Oops. + * Removed the (pre|post)(inst|rm) scripts, since there were no + special actions to perform. The necessary scripts are now generated + automatically by dh_installdocs and dh_installmenu + * Quoted all strings in the menu file + + -- Tobias Toedter Sun, 7 Mar 2004 16:43:23 +0100 + +qbrew (0.3.3-4) unstable; urgency=low + + * Changed maintainer email address + * Changed short description (removed "A" according to policy) + * Added a black outline to the menu icons at upstream's request + * Updated to Standards-Version 3.6.1 for the upcoming release + (no changes needed) + + -- Tobias Toedter Sun, 2 Nov 2003 12:58:12 +0100 + +qbrew (0.3.3-3) unstable; urgency=low + + * Included two icons to follow new menu policy + * Updated Standards-Version to 3.5.10 (no changes needed) + + -- Tobias Toedter Sat, 31 May 2003 13:05:44 +0200 + +qbrew (0.3.3-2) unstable; urgency=low + + * Removed Build-Depend on libstdc++2.10-glibc2.2 (Closes: #192289) + + -- Tobias Toedter Thu, 8 May 2003 20:52:17 +0200 + +qbrew (0.3.3-1) unstable; urgency=low + + * New maintainer (Closes: #190195, #142618) + * New upstream version, uses more up-to-date Qt (Closes: #188632) + * Removed Build-Depend on obsolete xlib6g-dev (Closes: #170175) + * Patched main Makefile.am and .in so that some info-files are not + copied twice into the package directory + + -- Tobias Toedter Sat, 26 Apr 2003 17:58:25 +0200 + +qbrew (0.3.0-2) unstable; urgency=low + + * NMU + * Adding include of to main.cpp, c++ is a bit stricter than C + * This should satisfy ia643 compiler (Closes: #142618) + + -- Moshe Zadka Sun, 21 Apr 2002 01:10:34 -0500 + +qbrew (0.3.0-1) unstable; urgency=low + + * New upstream version. + * Fixed spelling mistake in description. (Closes: #125294) + + -- Remi Lefebvre Wed, 10 Apr 2002 22:29:47 -0400 + +qbrew (0.2.0-2) unstable; urgency=low + + * Updated config.{guess,sub}. (Closes: #121623) + + -- Remi Lefebvre Fri, 30 Nov 2001 22:40:56 -0500 + +qbrew (0.2.0-1) unstable; urgency=low + + * New upstream. + + -- Remi Lefebvre Wed, 25 Apr 2001 21:32:55 -0400 + +qbrew (0.1.4-3) unstable; urgency=low + + * Rebuild qbrew against new qt libs. (Closes: 89783) + * Updated config.sub to enable build on ARM architecture. (Closes: #90490) + + -- Remi Lefebvre Wed, 21 Mar 2001 08:58:23 -0500 + +qbrew (0.1.4-2) unstable; urgency=low + + * Recompiled to fix dependency on libmng. (Closes: #86532) + + -- Remi Lefebvre Sun, 18 Feb 2001 20:15:43 -0500 + +qbrew (0.1.4-1) unstable; urgency=low + + * Built on new libqt2.2. (Closes: #72540) + * New upstream release. + + -- Remi Lefebvre Mon, 25 Sep 2000 23:12:01 -0400 + +qbrew (0.1.3-3) unstable; urgency=low + + * Build against libqt2.1. + + -- Remi Lefebvre Wed, 19 Jul 2000 14:22:59 -0400 + +qbrew (0.1.3-2) unstable; urgency=low + + * Added build-depend on debhelper. (Closes: #66995) + + -- Remi Lefebvre Mon, 10 Jul 2000 12:47:45 -0400 + +qbrew (0.1.3-1) unstable; urgency=low + + * New policy standard. + * New upstream release. + + -- Remi Lefebvre Fri, 16 Jun 2000 22:24:13 -0400 + +qbrew (0.1.1-1) unstable; urgency=low + + * New upstream version. + + -- Remi Lefebvre Mon, 13 Dec 1999 13:52:33 -0500 + +qbrew (0.1.0-1) unstable; urgency=low + + * Initial Release. + + -- Remi Lefebvre Tue, 23 Nov 1999 18:38:11 -0500 --- qbrew-0.3.4.orig/debian/compat +++ qbrew-0.3.4/debian/compat @@ -0,0 +1 @@ +4 --- qbrew-0.3.4.orig/debian/README.Debian +++ qbrew-0.3.4/debian/README.Debian @@ -0,0 +1,13 @@ +qbrew for Debian +---------------- + +If you want to know how to start brewing yourself, there's a manual for that +available from within the program - Menu "Help", Topic "Primer". + +QBrew comes with two sample recipes in the package directory, +"/usr/share/doc/qbrew/examples". Although they look sane, I haven't tried +them myself and cannot guarantee for the taste ;-) + +Happy brewing! + + -- Tobias Toedter , Sun, 2 Nov 2003 13:11:03 +0100 --- qbrew-0.3.4.orig/debian/patches/20_Makefile-cleanup.dpatch +++ qbrew-0.3.4/debian/patches/20_Makefile-cleanup.dpatch @@ -0,0 +1,55 @@ +#! /bin/sh -e +## 99-unnamed.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: No description. + +if [ $# -lt 1 ]; then + echo "`basename $0`: script expects -patch|-unpatch as argument" >&2 + exit 1 +fi + +[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts +patch_opts="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}" + +case "$1" in + -patch) patch -p1 ${patch_opts} < $0;; + -unpatch) patch -R -p1 ${patch_opts} < $0;; + *) + echo "`basename $0`: script expects -patch|-unpatch as argument" >&2 + exit 1;; +esac + +exit 0 + +@DPATCH@ +--- qbrew-0.3.3.1.orig/Makefile.am ++++ qbrew-0.3.3.1/Makefile.am +@@ -2,7 +2,11 @@ + + EXTRA_DIST = AUTHORS INSTALL TODO Makefile.dist config win + +-pkgdata_DATA = ChangeLog LICENSE README paleale.qbrew stout.qbrew ++#pkgdata_DATA = ChangeLog LICENSE README paleale.qbrew stout.qbrew ++# The first three files are copied automatically to the right place with ++# the debhelper scripts. ++# The example files will be copied with dh_installexamples. ++pkgdata_DATA = + + AUTOMAKE_OPTIONS = foreign no-dependencies + +--- qbrew-0.3.3.1.orig/Makefile.in ++++ qbrew-0.3.3.1/Makefile.in +@@ -85,7 +85,11 @@ + + EXTRA_DIST = AUTHORS INSTALL TODO Makefile.dist config win + +-pkgdata_DATA = ChangeLog LICENSE README paleale.qbrew stout.qbrew ++#pkgdata_DATA = ChangeLog LICENSE README paleale.qbrew stout.qbrew ++# The first three files are copied automatically to the right place with ++# the debhelper scripts. ++# The example files will be copied with dh_installexamples. ++pkgdata_DATA = + + AUTOMAKE_OPTIONS = foreign no-dependencies + subdir = . --- qbrew-0.3.4.orig/debian/patches/00list +++ qbrew-0.3.4/debian/patches/00list @@ -0,0 +1,2 @@ +10_pixmaps-for-menu.dpatch +20_Makefile-cleanup.dpatch --- qbrew-0.3.4.orig/debian/patches/10_pixmaps-for-menu.dpatch +++ qbrew-0.3.4/debian/patches/10_pixmaps-for-menu.dpatch @@ -0,0 +1,504 @@ +#! /bin/sh -e +## 10-pixmaps-for-menu.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Adds a 16x16 and a 32x32 pixmap of qbrew to the pics/ directory. + +if [ $# -lt 1 ]; then + echo "`basename $0`: script expects -patch|-unpatch as argument" >&2 + exit 1 +fi + +[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts +patch_opts="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}" + +case "$1" in + -patch) patch -p1 ${patch_opts} < $0;; + -unpatch) patch -R -p1 ${patch_opts} < $0;; + *) + echo "`basename $0`: script expects -patch|-unpatch as argument" >&2 + exit 1;; +esac + +exit 0 + +@DPATCH@ +--- qbrew-0.3.4.orig/pics/qbrew_32x32.xpm ++++ qbrew-0.3.4/pics/qbrew_32x32.xpm +@@ -0,0 +1,327 @@ ++/* XPM */ ++static char * qbrew_32x32_xpm[] = { ++"32 32 292 2", ++" c None", ++". c #4C6623", ++"+ c #4C6523", ++"@ c #4E6825", ++"# c #4D6724", ++"$ c #59722E", ++"% c #58712D", ++"& c #506A26", ++"* c #556E2B", ++"= c #5B7430", ++"- c #5F7733", ++"; c #516A28", ++"> c #5B7330", ++", c #637B36", ++"' c #617935", ++") c #506A27", ++"! c #57712D", ++"~ c #718944", ++"{ c #849A54", ++"] c #879C56", ++"^ c #819651", ++"/ c #556F2B", ++"( c #6C833E", ++"_ c #6C823D", ++": c #687E3A", ++"< c #506926", ++"[ c #5C7530", ++"} c #59712E", ++"| c #526B29", ++"1 c #647C38", ++"2 c #859A55", ++"3 c #8DA15B", ++"4 c #93A65F", ++"5 c #96A962", ++"6 c #738944", ++"7 c #5B742F", ++"8 c #69803B", ++"9 c #758A45", ++"0 c #728843", ++"a c #5E7532", ++"b c #59732F", ++"c c #6B823D", ++"d c #6D833E", ++"e c #657D38", ++"f c #576F2D", ++"g c #536C29", ++"h c #7B914C", ++"i c #8CA05A", ++"j c #95A861", ++"k c #9DAF68", ++"l c #A5B56E", ++"m c #7C914C", ++"n c #7B8F4A", ++"o c #99AB64", ++"p c #5F7633", ++"q c #7D924C", ++"r c #57702C", ++"s c #5B732F", ++"t c #566F2B", ++"u c #516A27", ++"v c #5A732F", ++"w c #869B55", ++"x c #9DAE67", ++"y c #A2B16B", ++"z c #647B37", ++"A c #9AAC65", ++"B c #A1B26A", ++"C c #889B54", ++"D c #687F3A", ++"E c #5C7430", ++"F c #7B904A", ++"G c #788D48", ++"H c #6A813C", ++"I c #546D29", ++"J c #7A914B", ++"K c #889D57", ++"L c #829752", ++"M c #637B37", ++"N c #6B833E", ++"O c #778D48", ++"P c #798F4A", ++"Q c #98AB64", ++"R c #9FB069", ++"S c #A4B46D", ++"T c #80944D", ++"U c #7E934D", ++"V c #80944E", ++"W c #7A8E49", ++"X c #6A803C", ++"Y c #4E6724", ++"Z c #546C29", ++"` c #7B924C", ++" . c #8FA35D", ++".. c #91A45D", ++"+. c #8B9F5A", ++"@. c #94A760", ++"#. c #9CAE67", ++"$. c #819650", ++"%. c #839751", ++"&. c #708641", ++"*. c #677E3A", ++"=. c #59712D", ++"-. c #6F8741", ++";. c #A0B16A", ++">. c #A9B971", ++",. c #7A904B", ++"'. c #617835", ++"). c #899E58", ++"!. c #8EA25C", ++"~. c #92A55F", ++"{. c #94A761", ++"]. c #6F8541", ++"^. c #57702D", ++"/. c #7A8F4A", ++"(. c #738843", ++"_. c #607834", ++":. c #536C28", ++"<. c #556D2A", ++"[. c #8A9F59", ++"}. c #8FA25C", ++"|. c #657D39", ++"1. c #899D57", ++"2. c #647D38", ++"3. c #69813C", ++"4. c #6E8540", ++"5. c #6B823E", ++"6. c #627A36", ++"7. c #768C47", ++"8. c #9BAC65", ++"9. c #778C47", ++"0. c #5A722F", ++"a. c #536D2A", ++"b. c #4F6926", ++"c. c #536D29", ++"d. c #7B904B", ++"e. c #7E934E", ++"f. c #94A660", ++"g. c #96A861", ++"h. c #8B9E58", ++"i. c #738A46", ++"j. c #9BAD66", ++"k. c #A7B770", ++"l. c #A3B46C", ++"m. c #728944", ++"n. c #758B46", ++"o. c #6E8441", ++"p. c #7B904C", ++"q. c #728743", ++"r. c #5F7834", ++"s. c #56702C", ++"t. c #819751", ++"u. c #97AA63", ++"v. c #A1B26B", ++"w. c #879B55", ++"x. c #9BAC66", ++"y. c #A6B66F", ++"z. c #A2B36C", ++"A. c #96A862", ++"B. c #8DA15A", ++"C. c #566F2C", ++"D. c #637C37", ++"E. c #5D7532", ++"F. c #7C934E", ++"G. c #95A761", ++"H. c #748B46", ++"I. c #768B46", ++"J. c #91A55E", ++"K. c #677F3B", ++"L. c #546D2A", ++"M. c #859B55", ++"N. c #829751", ++"O. c #6D8540", ++"P. c #607935", ++"Q. c #687F3B", ++"R. c #6F8642", ++"S. c #6A823D", ++"T. c #6A823E", ++"U. c #A4B56D", ++"V. c #A3B36C", ++"W. c #839953", ++"X. c #8EA15B", ++"Y. c #97A963", ++"Z. c #809550", ++"`. c #95A760", ++" + c #7F9550", ++".+ c #9CAD66", ++"++ c #627935", ++"@+ c #647C39", ++"#+ c #A7B76F", ++"$+ c #A5B56D", ++"%+ c #647D39", ++"&+ c #667E3A", ++"*+ c #6C8440", ++"=+ c #738A45", ++"-+ c #69803C", ++";+ c #ADBC74", ++">+ c #92A45E", ++",+ c #667E39", ++"'+ c #5E7733", ++")+ c #81964F", ++"!+ c #9EAF68", ++"~+ c #92A560", ++"{+ c #526C29", ++"]+ c #788E49", ++"^+ c #819551", ++"/+ c #7A8F49", ++"(+ c #57712E", ++"_+ c #7D944E", ++":+ c #98AA63", ++"<+ c #708742", ++"[+ c #526C27", ++"}+ c #506A28", ++"|+ c #657D37", ++"1+ c #708843", ++"2+ c #667D39", ++"3+ c #5E7732", ++"4+ c #617936", ++"5+ c #98AA64", ++"6+ c #647C37", ++"7+ c #8B9F59", ++"8+ c #546E2B", ++"9+ c #92A55E", ++"0+ c #748A45", ++"a+ c #617B36", ++"b+ c #6F8843", ++"c+ c #869A55", ++"d+ c #5E7632", ++"e+ c #94A65F", ++"f+ c #A8B870", ++"g+ c #8FA35C", ++"h+ c #58712E", ++"i+ c #7A914C", ++"j+ c #6F8441", ++"k+ c #A5B66E", ++"l+ c #98A963", ++"m+ c #657C39", ++"n+ c #A9B871", ++"o+ c #889C56", ++"p+ c #546E2A", ++"q+ c #869C56", ++"r+ c #839853", ++"s+ c #516C27", ++"t+ c #768D48", ++"u+ c #6E8541", ++"v+ c #69813D", ++"w+ c #5F7833", ++"x+ c #718742", ++"y+ c #809651", ++"z+ c #8A9E58", ++"A+ c #7F944F", ++"B+ c #879B54", ++"C+ c #6A813D", ++"D+ c #80944F", ++"E+ c #8B9D57", ++"F+ c #5E7633", ++"G+ c #738A44", ++"H+ c #93A760", ++"I+ c #768C46", ++"J+ c #758C46", ++"K+ c #637A37", ++"L+ c #97A862", ++"M+ c #849954", ++"N+ c #A0B26A", ++"O+ c #768B47", ++"P+ c #526C28", ++"Q+ c #556E2A", ++"R+ c #516B28", ++"S+ c #5C7531", ++"T+ c #859A54", ++"U+ c #6F8641", ++"V+ c #7A8F4B", ++"W+ c #93A660", ++"X+ c #728844", ++"Y+ c #849952", ++"Z+ c #617934", ++"`+ c #8B9E59", ++" @ c #7C934D", ++".@ c #6D833F", ++"+@ c #708741", ++"@@ c #5E7734", ++"#@ c #546C2A", ++"$@ c #6C8540", ++"%@ c #748C46", ++"&@ c #788E48", ++"*@ c #5D7632", ++"=@ c #576F2C", ++"-@ c #91A45E", ++";@ c #526B28", ++">@ c #536D28", ++",@ c #80954F", ++"'@ c #97A962", ++")@ c #768D47", ++" . + ", ++" . @ @ # ", ++" @ $ % @ ", ++" & * = - ; > , ' ) ", ++" ! ~ { ] ] ^ / ( _ : < [ } ", ++" | 1 2 3 4 5 5 6 7 8 9 0 a @ b , c d e f ", ++" g h i j k l m n o p q _ r s t u g ", ++" ) / v w x y z A B C D E F G 0 H g ", ++" I J K L M N O P Q R S T $ U V W 0 X r Y ", ++" Z ` .5 A ..> / +.@.o #.k $.$ %.V G &.*.=.# ", ++" -.i 5 ;.>.D ,.'.).!.~.{.j @.].^.0 /.(.H _.:.. ", ++" <.^ [.@.#.}.|.1.2.3.4.0 5.6.6.7.8.9.6.0.a.b. ", ++" c.6.H d.+.M e.3 f.g.g.h.c i.3 j.k.l.5 m.n.o. ", ++" b.( p.q.r.s.t.i u.v.S #.w.6.3 x.y.z.A.' B.[.C. ", ++" D.3 5 5 = E.F.w }.G.A.~.H./ 1.j #.A I.O j.J.K. ", ++" L.M.~.k N.O.r P.Q.R.S.6._.6 U T.3 ~.e.D U.V.A.4. ", ++" D.W.X.Y.6.Z.!.j `.1.v + ..+l.++,.@+_.5 #+$+5 P. ", ++" %+&+*+=+E.L !.j.l z.-+` J.R ;+>+,+$ '+)+R !+~+* ", ++" {+]+^+/+(+_+K ~.:+Y.<+z .j.V.x ]+n.3 E i j d.[+ ", ++" }+R.X.A |+= 1+m.i.2+3+].4+L @.5+3 6+x :+] } 7+t ", ++" 8+t.3 9+'.n.0+q a+b+i A .+_.).c+d+e+f+k g+a./ ", ++" h+i+t.j+&.[.5+k+l+m+3 j.n+o+$ p+q+R >.!+r+s+ ", ++" b.I @+[ t+K {.!+R 3+K Y.R #.u+n.v+A ;.o w+ ", ++" }+H. .x+H.y+z+g+A+_., g+{.B+C+>.<+D+5 w <. ", ++" * W.~.E+f F+= E G+H+I+J+=+K+j.l L+r K ^. ", ++" s. +[.X.- M+X.6.!.#.N+, ^.T.5+j.O+P+Q+ ", ++" R+p+_.5.S+T+j U+V+W+:+X+Y+Z+`+c+I ", ++" Z @3 |.m !.j } W..@+@x @@1 #@ ", ++" $@W.%@S+2+> &@*@=@-@{ ;@ ", ++" P+>@% 3.,@' 5 '@Q+N L. ", ++" c.A+)@L.$.*@ ", ++" R+ ;@ "}; +--- qbrew-0.3.4.orig/pics/qbrew_16x16.xpm ++++ qbrew-0.3.4/pics/qbrew_16x16.xpm +@@ -0,0 +1,146 @@ ++/* XPM */ ++static char * qbrew_16x16_xpm[] = { ++"16 16 127 2", ++" c None", ++". c #4C6623", ++"+ c #5D7533", ++"@ c #536C29", ++"# c #556E2B", ++"$ c #617936", ++"% c #7B924D", ++"& c #869B55", ++"* c #667E39", ++"= c #6A813C", ++"- c #5E7632", ++"; c #6D843F", ++"> c #657C37", ++", c #57702C", ++"' c #6D8440", ++") c #93A65F", ++"! c #879B55", ++"~ c #91A45C", ++"{ c #738844", ++"] c #657B37", ++"^ c #5F7633", ++"/ c #566F2B", ++"( c #869B56", ++"_ c #6F8641", ++": c #98AB64", ++"< c #9DAE67", ++"[ c #697F3B", ++"} c #7E934D", ++"| c #728843", ++"1 c #5A732E", ++"2 c #657D39", ++"3 c #8CA05A", ++"4 c #9CAD67", ++"5 c #708743", ++"6 c #69803D", ++"7 c #80954F", ++"8 c #7D934D", ++"9 c #728944", ++"0 c #748945", ++"a c #5B732F", ++"b c #506926", ++"c c #5C7430", ++"d c #677F3C", ++"e c #627A36", ++"f c #819651", ++"g c #91A45D", ++"h c #99AA63", ++"i c #677F3B", ++"j c #8DA15B", ++"k c #A7B770", ++"l c #81954F", ++"m c #7B914C", ++"n c #7C934D", ++"o c #8DA15A", ++"p c #637C38", ++"q c #708744", ++"r c #7E944E", ++"s c #788E48", ++"t c #6C823F", ++"u c #829752", ++"v c #97A963", ++"w c #788D49", ++"x c #9BAD66", ++"y c #637C37", ++"z c #5E7732", ++"A c #7C924D", ++"B c #718842", ++"C c #94A65F", ++"D c #7B8F49", ++"E c #7E944F", ++"F c #9CAD66", ++"G c #788D48", ++"H c #607734", ++"I c #94A760", ++"J c #A5B56D", ++"K c #5A742F", ++"L c #788F49", ++"M c #617A37", ++"N c #768D48", ++"O c #809450", ++"P c #748944", ++"Q c #708843", ++"R c #839752", ++"S c #8A9E59", ++"T c #6E8441", ++"U c #80964F", ++"V c #647C38", ++"W c #839853", ++"X c #6E8541", ++"Y c #819751", ++"Z c #869953", ++"` c #6B823E", ++" . c #A8B870", ++".. c #6A803B", ++"+. c #5C7530", ++"@. c #68803B", ++"#. c #738B46", ++"$. c #93A661", ++"%. c #798F49", ++"&. c #829751", ++"*. c #99AA65", ++"=. c #7B8E4A", ++"-. c #798E4A", ++";. c #9DAF68", ++">. c #647D39", ++",. c #8A9F59", ++"'. c #607936", ++"). c #667D39", ++"!. c #859953", ++"~. c #687F3A", ++"{. c #9EB068", ++"]. c #6A813D", ++"^. c #657C38", ++"/. c #57702D", ++"(. c #6C8440", ++"_. c #899E57", ++":. c #748A46", ++"<. c #788E49", ++"[. c #7B904B", ++"}. c #718743", ++"|. c #5F7834", ++"1. c #6C833E", ++"2. c #82964F", ++"3. c #6B7F3D", ++"4. c #637D38", ++"5. c #5F7733", ++"6. c #617A35", ++" . . ", ++" + @ # ", ++" $ % & * = - ; > ", ++" , ' ) ! ~ { ] ^ / ", ++" ; ( _ ' : < [ } | 1 ", ++" 2 3 4 5 6 7 8 9 0 = a b ", ++" c d e f g h i j k l m ", ++" n o p q r s t u v w x y ", ++" z A B f C D E F G H I J $ ", ++" K L M N O P Q x R S T U ", ++" V W X Y _ 3 Z ` f ... ", ++" +.@.#.$.%.&.*.=.-.;. ", ++" >.,.'.).!.%.~.{.].^. ", ++" /.(.` _.:.<.[.}. ", ++" |.2 1.2.3.4. ", ++" 5.6.). "}; --- qbrew-0.3.4.orig/debian/copyright +++ qbrew-0.3.4/debian/copyright @@ -0,0 +1,39 @@ +This package was debianized by Remi Lefebvre on +Tue, 23 Nov 1999 18:38:11 -0500. + +Copyright (c) for the Debian packaging + Remi Lefebvre 1999-2002 + Tobias Toedter 2003-2004 + +It was downloaded from http://www.usermode.org/code.html + +Upstream Author: David Johnson + +Copyright (c) 1999-2004 David Johnson +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN +NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +------------------------------------------------------------------------------ +This product contains software written by Abe Kabakoff +This product contains software written by Michal Palczewski --- qbrew-0.3.4.orig/debian/examples +++ qbrew-0.3.4/debian/examples @@ -0,0 +1,2 @@ +paleale.qbrew +stout.qbrew --- qbrew-0.3.4.orig/debian/qbrew.1 +++ qbrew-0.3.4/debian/qbrew.1 @@ -0,0 +1,58 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH QBREW 1 "November 2, 2003" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +qbrew \- homebrewer's recipe calculator (uses Qt) +.SH SYNOPSIS +.B qbrew +.RI [ options ] " file" +.SH DESCRIPTION +This manual page documents briefly the +.B qbrew +command. +This manual page was written for the Debian distribution +because the original program does not have a manual page. +Instead, it has documentation in the html format viewable +from within the program. +.PP +.B qbrew +is a recipe calculator for homebrewed beers. +In addition to managing recipes, it provides facilities for +creating new beer recipes. +It uses Qt for its graphical user interface. +.SH OPTIONS +This program follows the usual GNU command line syntax, with long +options starting with two dashes (`-'). +.B qbrew +supports the standard options for Qt and the X Window System (\-style, +\-geometry, \-display and others). +In addition, the following options are used: +.TP +.B \-h, \-\-help +Show summary of options. +.TP +.B \-v, \-\-version +Show version of program. +.TP +.I file +Start the program and open the specified file. +.SH AUTHOR +.B qbrew +was written by David Johnson . +Please send any bug reports to him. +This manual page was written by Tobias Toedter , +for the Debian project (but may be used by others).