--- min12xxw-0.0.9.orig/debian/changelog +++ min12xxw-0.0.9/debian/changelog @@ -0,0 +1,23 @@ +min12xxw (0.0.9-1ubuntu2) jaunty; urgency=low + + * debian/local/apport-hook.py, debian/rules: Added apport hook (LP: #338442). + + -- Till Kamppeter Thu, 26 Mar 2009 17:20:50 +0100 + +min12xxw (0.0.9-1ubuntu1) intrepid; urgency=low + + * debian/control: Updated "Recommends:" for the current packages. + + -- Till Kamppeter Wed, 13 Aug 2008 18:22:51 +0200 + +min12xxw (0.0.9-1build1) feisty; urgency=low + + * Rebuild for changes in the amd64 toolchain. + + -- Matthias Klose Mon, 5 Mar 2007 01:22:51 +0000 + +min12xxw (0.0.9-1) unstable; urgency=low + + * Initial release (closes: #334093). + + -- Stefan Potyra Fri, 6 Jan 2006 14:39:50 +0100 --- min12xxw-0.0.9.orig/debian/copyright +++ min12xxw-0.0.9/debian/copyright @@ -0,0 +1,25 @@ +This package was debianized by Stefan Potyra on +Sat, 23 Apr 2005 01:56:58 +0200. + +It was downloaded from + +(c) 2004-2006 by Manuel Tobias Schiller + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. --- min12xxw-0.0.9.orig/debian/esc-m.1 +++ min12xxw-0.0.9/debian/esc-m.1 @@ -0,0 +1,14 @@ +.TH ESC-M 1 +.SH NAME +esc-m\- ease viewing output of driver data +.SH SYNOPSIS + +esc-m + +.SH DESCRIPTION +.B esc-m +is meant to make the understanding of the printer driver easier. +It reads from stdin and prints some info to stdout. + +.SH SEE ALSO +\fImin12xxw\fP(1) --- min12xxw-0.0.9.orig/debian/rules +++ min12xxw-0.0.9/debian/rules @@ -0,0 +1,66 @@ +#!/usr/bin/make -f + +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 + +config.status: configure + dh_testdir + CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + -$(MAKE) distclean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=$(CURDIR)/debian/min12xxw + # Install Apport hook + install -D -m 644 debian/local/apport-hook.py $(CURDIR)/debian/min12xxw/usr/share/apport/package-hooks/source_min12xxw.py + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installman + 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 --- min12xxw-0.0.9.orig/debian/control +++ min12xxw-0.0.9/debian/control @@ -0,0 +1,16 @@ +Source: min12xxw +Section: graphics +Priority: optional +Maintainer: Stefan Potyra +Build-Depends: debhelper (>= 5.0.0) +Standards-Version: 3.7.2 + +Package: min12xxw +Architecture: any +Depends: ${shlibs:Depends} +Recommends: cups, foomatic-db, foomatic-db-engine +Description: Printer driver for KonicaMinolta PagePro 1[234]xxW + A cups/foomatic printer driver for the KonicaMinolta PagePro 1200W, 1250W, + 1300W, 1350W and 1400W. + . + More Information available at http://www.hinterbergen.de/mala/min12xxw/ --- min12xxw-0.0.9.orig/debian/watch +++ min12xxw-0.0.9/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://www.hinterbergen.de/mala/min12xxw/min12xxw-(.*)\.tar\.gz \ + debian uupdate --- min12xxw-0.0.9.orig/debian/compat +++ min12xxw-0.0.9/debian/compat @@ -0,0 +1 @@ +5 --- min12xxw-0.0.9.orig/debian/docs +++ min12xxw-0.0.9/debian/docs @@ -0,0 +1,6 @@ +FAQ +format.txt +NEWS +README +AUTHORS +usblogs --- min12xxw-0.0.9.orig/debian/manpages +++ min12xxw-0.0.9/debian/manpages @@ -0,0 +1,2 @@ +min12xxw.1 +debian/esc-m.1 --- min12xxw-0.0.9.orig/debian/local/apport-hook.py +++ min12xxw-0.0.9/debian/local/apport-hook.py @@ -0,0 +1,11 @@ +'''apport package hook for min12xxw + +(c) 2009 Canonical Ltd. +Author: Brian Murray +''' + +from apport.hookutils import * + +def add_info(report): + attach_hardware(report) + attach_printing(report)