Codebase list m2300w / 71d8596
Initial Release. Till Kamppeter authored 17 years ago Bazaar Package Importer committed 17 years ago
6 changed file(s) with 142 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 m2300w (0.51-0ubuntu1) feisty; urgency=low
1
2 * Initial Release.
3
4 -- Till Kamppeter <till.kamppeter@gmail.com> Mon, 15 Jan 2007 12:00:00 +0000
0 Source: m2300w
1 Section: text
2 Priority: optional
3 Maintainer: Till Kamppeter <till.kamppeter@gmail.com>
4 Build-Depends: debhelper (>= 5.0.0), groff, dpatch
5 Standards-Version: 3.7.2
6
7 Package: m2300w
8 Architecture: any
9 Depends: ${shlibs:Depends}
10 Suggests: psutils
11 Description: Driver for the Minolta magicolor 2300W/24000W color laser printers
12 The m2300w driver is an open source Linux driver for the
13 Konica Minolta magicolor 2300W and 2400W color laser printers.
14 .
15 The driver is basically intended for being used in conjunction with
16 "foomatic" (see http://www.linuxprinting.org/foomatic.html), which
17 is a database-driven system for integrating free software printer
18 drivers with common spoolers under Unix, like CUPS, LPRng, LPD,
19 GNUlpr, PPR, PDQ, CPS, and direct printing.
20 .
21 Home Page: http://sourceforge.net/projects/m2300w/
22
23 Package: m2300w-ppds
24 Architecture: all
25 Depends: m2300w, foomatic-filters
26 Description: PPD files for the m2300w printer driver package
27 These PPD files allow easy setup of printers with the m2300w driver
28 .
29 Home Page: http://sourceforge.net/projects/m2300w/
0 This package was debianized by Till Kamppeter <till.kamppeter@gmail.com> on
1 Mon, 15 Jan 2007.
2
3 It was downloaded from http://sourceforge.net/projects/m2300w/
4
5 Upstream Authors:
6 Leif Birkenfeld <leif@birkenfeld-home.de>
7
8 Copyright: Copyright 2004 Leif Birkenfeld
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
21
22 On Debian systems, the complete text of the GNU General
23 Public License can be found in `/usr/share/common-licenses/GPL'.
0 README
1 README.ghostscript
0 #!/usr/bin/make -f
1
2 # Uncomment this to turn on verbose mode.
3 #export DH_VERBOSE=1
4
5 CFLAGS = -Wall -g
6
7 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
8 CFLAGS += -O0
9 else
10 CFLAGS += -O2
11 endif
12 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
13 INSTALL_PROGRAM += -s
14 endif
15
16 patch: patch-stamp
17 patch-stamp:
18 dh_testdir
19 dpatch apply-all
20 touch patch-stamp
21
22 configure: configure-stamp
23 configure-stamp: patch
24 dh_testdir
25 touch configure-stamp
26 ./configure --prefix=/usr
27
28 build: build-stamp
29 build-stamp: configure-stamp
30 dh_testdir
31 $(MAKE) CFLAGS="$(CFLAGS)"
32 touch build-stamp
33
34 unpatch:
35 dh_testdir
36 dpatch deapply-all
37 rm -rf debian/patched
38
39 clean: unpatch
40 dh_testdir
41 dh_testroot
42 rm -f build-stamp configure-stamp patch-stamp
43 -$(MAKE) clean
44 dh_clean
45
46 install: build
47 dh_testdir
48 dh_testroot
49 dh_clean -k
50 dh_installdirs
51 $(MAKE) INSTROOT=$(CURDIR)/debian/m2300w install
52 # Remove unwished directories and files
53 rm -rf $(CURDIR)/debian/m2300w/usr/share/YaST2
54 rm -rf $(CURDIR)/debian/m2300w/usr/share/doc/m2300w-0.51
55 rm -rf $(CURDIR)/debian/m2300w/usr/share/foomatic
56 rm -rf $(CURDIR)/debian/m2300w/usr/share/m2300w/*/foomatic
57 # Move files which do not go into the main package
58 mkdir -p $(CURDIR)/debian/m2300w-ppds/usr/share/ppd/m2300w
59 mv $(CURDIR)/debian/m2300w/usr/share/cups/model/Minolta/*.ppd* $(CURDIR)/debian/m2300w-ppds/usr/share/ppd/m2300w
60 rm -rf $(CURDIR)/debian/m2300w/usr/share/cups
61 # Build architecture-dependent files here.
62 binary-arch: build install
63 dh_testdir
64 dh_testroot
65 dh_installchangelogs
66 dh_installdocs
67 dh_installexamples
68 dh_installman
69 dh_strip
70 dh_compress
71 dh_fixperms
72 dh_installdeb
73 dh_shlibdeps
74 dh_gencontrol
75 dh_md5sums
76 dh_builddeb
77
78 binary: binary-indep binary-arch
79 .PHONY: build clean binary-indep binary-arch binary install configure