Codebase list splix / debian/2.0.0-3
Imported Debian patch 2.0.0-3 Luca Niccoli 10 years ago
10 changed file(s) with 53 addition(s) and 12 deletion(s). Raw diff Collapse all Expand all
0 splix (2.0.0-3) unstable; urgency=low
1
2 * Adopt package: set myself as maintainer and remove Jeroen van Wolffelaar
3 and Pablo Mazzini. Thanks for your work! (Closes: #617819)
4 * Fix compilation with recent toolchain. (Closes: #565097)
5 * Fix clean target that would sometimes enter an infinite loop.
6 * Switch to dpkg-source 3.0 (quilt) format
7 * Bump Standards-Version to 3.9.2 (no changes needed).
8
9 -- Luca Niccoli <lultimouomo@gmail.com> Sun, 17 Apr 2011 19:29:05 +0200
10
011 splix (2.0.0-2.2) unstable; urgency=low
112
213 * Non-maintainer upload.
00 Source: splix
11 Section: text
22 Priority: optional
3 Maintainer: Jeroen van Wolffelaar <jeroen@wolffelaar.nl>
4 Uploaders: Pablo Mazzini <pmazzini@gmail.com>
3 Maintainer: Luca Niccoli <lultimouomo@gmail.com>
54 Build-Depends: debhelper (>= 7), libcupsimage2-dev
6 Standards-Version: 3.8.1
5 Standards-Version: 3.9.2
76 Homepage: http://splix.ap2c.org/
87
98 Package: splix
00 This package was debianized by Till Kamppeter <till.kamppeter@gmail.com> on
11 Tue, 12 Dec 2006.
22
3 The current Debian maintainer is Jeroen van Wolffelaar <jeroen@wolffelaar.nl>
3 The current Debian maintainer is Luca Niccoli <lultimouomo@gmail.com>
44
55 It was downloaded from http://splix.ap2c.org/
66
77 Upstream Authors:
88 Aurélien Croc <aurelien@ap2c.org>
99
10 Copyright: (C) 2006, Aurélien Croc (AP²C)
10 License:
11
12 Copyright: (C) 2006, Aurélien Croc (AP²C)
1113
1214 This package is free software; you can redistribute it and/or modify
1315 it under the terms of the GNU General Public License as published by
0 Index: splix-2.0.0/src/qpdl.cpp
1 ===================================================================
2 --- splix-2.0.0.orig/src/qpdl.cpp 2011-03-11 21:02:13.231934000 +0100
3 +++ splix-2.0.0/src/qpdl.cpp 2011-03-11 21:02:26.455934000 +0100
4 @@ -33,7 +33,7 @@
5 {
6 unsigned long version, subVersion, size, dataSize, checkSum;
7 bool color, headerSent=false;
8 - unsigned char header[0x20];
9 + unsigned char header[0x20] __attribute__((aligned(4)));
10 const BandPlane *plane;
11
12 version = request.printer()->qpdlVersion();
0 Index: splix-2.0.0/src/ppdfile.cpp
1 ===================================================================
2 --- splix-2.0.0.orig/src/ppdfile.cpp 2011-03-11 21:05:57.215934000 +0100
3 +++ splix-2.0.0/src/ppdfile.cpp 2011-03-11 21:06:03.067934000 +0100
4 @@ -282,7 +282,7 @@
5 * Opérateur d'assignation
6 * Assignment operator
7 */
8 -void PPDFile::Value::operator = (const PPDFile::Value::Value &val)
9 +void PPDFile::Value::operator = (const PPDFile::Value &val)
10 {
11 if (_preformatted)
12 delete[] _preformatted;
0 fix_alignment.patch
1 gcc-4.5_fix.patch
1010 build: build-stamp
1111 build-stamp: configure-stamp
1212 dh_testdir
13 $(MAKE) DISABLE_JBIG=1 rastertoqpdl_LIBS=-lcupsimage pstoqpdl_LIBS=-lcupsimage
13 /usr/bin/make DISABLE_JBIG=1 rastertoqpdl_LIBS="-lcupsimage -lcups -lpthread" pstoqpdl_LIBS="-lcupsimage -lcups"
1414 touch $@
1515
1616 clean:
1717 dh_testdir
1818 dh_testroot
1919 rm -f build-stamp configure-stamp
20 $(MAKE) clean
21 dh_clean optimized/pstoqpdl optimized/rastertoqpdl
20 $(MAKE) clean DISABLE_JBIG=1
21 dh_clean optimized/pstoqpdl optimized/rastertoqpdl optimized/src/* debug/src/*
2222
2323 install: build
2424 dh_testdir
2525 dh_testroot
26 dh_prep
26 dh_prep
2727 dh_installdirs
2828 $(MAKE) DESTDIR=$(CURDIR)/debian/splix CUPSPPD=/usr/share/ppd/splix DISABLE_JBIG=1 install
2929
0 3.0 (quilt)
00 $(DEPDIR)/src/qpdl.d $(BUILDDIR)/src/qpdl.o: src/qpdl.cpp include/qpdl.h \
1 include/page.h include/band.h include/errlog.h include/request.h \
2 include/printer.h include/bandplane.h
1 include/page.h include/band.h include/errlog.h include/request.h \
2 include/printer.h include/bandplane.h
33
44 include/qpdl.h:
55
3232 {
3333 unsigned long version, subVersion, size, dataSize, checkSum;
3434 bool color, headerSent=false;
35 unsigned char header[0x20] __attribute__((aligned(4)));
35 unsigned char header[0x20];
3636 const BandPlane *plane;
3737
3838 version = request.printer()->qpdlVersion();