diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-11-10 21:18:09 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-11-10 21:18:09 +0100 |
commit | 8bdf1681e04a9a70a0a697cab65e96b235211633 (patch) | |
tree | 3f8e3c38b5c71334b4e25f1400d45ac8206c95d0 /net-print/hplip/files | |
parent | 1e2b2f3c504115c832a5d254f9d2653757bb0f3f (diff) | |
download | overlay-8bdf1681e04a9a70a0a697cab65e96b235211633.tar.gz overlay-8bdf1681e04a9a70a0a697cab65e96b235211633.tar.bz2 overlay-8bdf1681e04a9a70a0a697cab65e96b235211633.zip |
Fixed hplip
Diffstat (limited to 'net-print/hplip/files')
-rw-r--r-- | net-print/hplip/files/70-hpmud.rules | 19 | ||||
-rw-r--r-- | net-print/hplip/files/hplip-2.8.6b-add-sane-lib.patch | 15 |
2 files changed, 34 insertions, 0 deletions
diff --git a/net-print/hplip/files/70-hpmud.rules b/net-print/hplip/files/70-hpmud.rules new file mode 100644 index 0000000..1e6ab66 --- /dev/null +++ b/net-print/hplip/files/70-hpmud.rules @@ -0,0 +1,19 @@ +# Udev rules file for HP printer products. + +ACTION!="add", GOTO="hpmud_rules_end" + +SUBSYSTEM!="usb|usb_device", GOTO="hpmud_rules_end" +SUBSYSTEM=="usb", ENV{DEVTYPE}!="usb_device" ,GOTO="hpmud_rules_end" + +# Check for AiO products (0x03f0xx11). +ATTRS{idVendor}=="03f0", ATTRS{idProduct}=="??11", GROUP="lp" +# Check for Photosmart products (0x03f0xx02). +ATTRS{idVendor}=="03f0", ATTRS{idProduct}=="??02", GROUP="lp" +# Check for Business Inkjet products (0x03f0xx12). +ATTRS{idVendor}=="03f0", ATTRS{idProduct}=="??12", GROUP="lp" +# Check for Deskjet products (0x03f0xx04). +ATTRS{idVendor}=="03f0", ATTRS{idProduct}=="??04", GROUP="lp" +# Check for LaserJet products (0x03f0xx17). +ATTRS{idVendor}=="03f0", ATTRS{idProduct}=="??17", GROUP="lp" + +LABEL="hpmud_rules_end" diff --git a/net-print/hplip/files/hplip-2.8.6b-add-sane-lib.patch b/net-print/hplip/files/hplip-2.8.6b-add-sane-lib.patch new file mode 100644 index 0000000..ac543bd --- /dev/null +++ b/net-print/hplip/files/hplip-2.8.6b-add-sane-lib.patch @@ -0,0 +1,15 @@ +=== modified file 'Makefile.am' +--- Makefile.am 2008-11-10 17:43:43 +0000 ++++ Makefile.am 2008-11-10 17:44:10 +0000 +@@ -198,8 +198,8 @@ + # scanext + scanextdir = $(pyexecdir) + scanext_LTLIBRARIES = scanext.la +-#scanext_la_LDFLAGS = -module -avoid-version -lsane +-scanext_la_LDFLAGS = -module -avoid-version ++scanext_la_LDFLAGS = -module -avoid-version -lsane ++#scanext_la_LDFLAGS = -module -avoid-version + scanext_la_SOURCES = scan/scanext/scanext.c + scanext_la_CFLAGS = -I$(PYTHONINCLUDEDIR) + endif + |