2026-02-03 20:51:10 +01:00
|
|
|
From 4ce96ef1d4ec67f6032b4e8e31839456b71b0a7e Mon Sep 17 00:00:00 2001
|
|
|
|
|
From: Martin Wilck <mwilck@suse.com>
|
|
|
|
|
Date: Tue, 3 Feb 2026 17:57:27 +0100
|
|
|
|
|
Subject: [PATCH 13/33] hplip: remove imageprocessor
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
Makefile.am | 14 ++------------
|
|
|
|
|
1 file changed, 2 insertions(+), 12 deletions(-)
|
|
|
|
|
|
|
|
|
|
diff --git a/Makefile.am b/Makefile.am
|
|
|
|
|
index 5381a24..a03b2bf 100644
|
|
|
|
|
--- a/Makefile.am
|
|
|
|
|
+++ b/Makefile.am
|
|
|
|
|
@@ -167,7 +167,7 @@ if !HPLIP_CLASS_DRIVER
|
2019-04-23 09:37:48 +00:00
|
|
|
dist_hplip_SCRIPTS = hpssd.py __init__.py hpdio.py
|
|
|
|
|
endif #HPLIP_CLASS_DRIVER
|
|
|
|
|
|
|
|
|
|
-dist_noinst_DATA += prnt/drv/hpijs.drv.in.template prnt/drv/hpcups.drv.in.template prnt/hpcups/libImageProcessor-x86_64.so prnt/hpcups/libImageProcessor-x86_32.so
|
|
|
|
|
+dist_noinst_DATA += prnt/drv/hpijs.drv.in.template prnt/drv/hpcups.drv.in.template
|
|
|
|
|
|
2021-11-08 15:41:33 +00:00
|
|
|
dist_noinst_DATA += prnt/ipp-usb/HPLIP.conf
|
|
|
|
|
dist_noinst_SCRIPTS += dat2drv.py install.py hplip-install init-suse-firewall init-iptables-firewall class_rpm_build.sh hplipclassdriver.spec createPPD.sh Makefile_dat2drv hpijs-drv
|
2026-02-03 20:51:10 +01:00
|
|
|
@@ -598,7 +598,7 @@ hpcups_SOURCES = prnt/hpcups/HPCupsFilter.cpp prnt/hpcups/HPCupsFilter.h prnt/hp
|
2019-04-23 09:37:48 +00:00
|
|
|
prnt/hpcups/ImageProcessor.h
|
|
|
|
|
|
|
|
|
|
hpcups_CXXFLAGS = $(APDK_ENDIAN_FLAG) $(DBUS_CFLAGS)
|
|
|
|
|
-hpcups_LDADD = -L./prnt/hpcups/ -ljpeg -ldl -lImageProcessor -lcups -lcupsimage -lz $(DBUS_LIBS)
|
|
|
|
|
+hpcups_LDADD = -L./prnt/hpcups/ -ljpeg -ldl -lcups -lcupsimage -lz $(DBUS_LIBS)
|
|
|
|
|
#else
|
|
|
|
|
#hpcupsdir = $(cupsfilterdir)
|
|
|
|
|
#hpcups_PROGRAMS = hpcups
|
2026-02-03 20:51:10 +01:00
|
|
|
@@ -696,16 +696,6 @@ endif #HPLIP_CLASS_DRIVER
|
2019-04-23 09:37:48 +00:00
|
|
|
|
|
|
|
|
install-data-hook:
|
|
|
|
|
if HPLIP_BUILD
|
|
|
|
|
- if [ \( "$(UNAME)" = "x86_64" -a -d "$(libdir)/" \) ]; then \
|
|
|
|
|
- cp prnt/hpcups/libImageProcessor-x86_64.so $(libdir)/ ; \
|
|
|
|
|
- chmod 775 $(libdir)/libImageProcessor-x86_64.so ; \
|
|
|
|
|
- ln -sf $(libdir)/libImageProcessor-x86_64.so $(libdir)/libImageProcessor.so ; \
|
|
|
|
|
- fi; \
|
|
|
|
|
- if [ \( \( "$(UNAME)" = "i686" -o "$(UNAME)" = "i386" \) -a -d "$(libdir)/" \) ]; then \
|
|
|
|
|
- cp prnt/hpcups/libImageProcessor-x86_32.so $(libdir)/ ; \
|
|
|
|
|
- chmod 775 $(libdir)/libImageProcessor-x86_32.so ; \
|
|
|
|
|
- ln -sf $(libdir)/libImageProcessor-x86_32.so $(libdir)/libImageProcessor.so ; \
|
|
|
|
|
- fi
|
2021-11-08 15:41:33 +00:00
|
|
|
if [ -d "/usr/share/ipp-usb/quirks/" ]; then \
|
|
|
|
|
echo "ipp-usb directory exists"; \
|
|
|
|
|
cp prnt/ipp-usb/HPLIP.conf /usr/share/ipp-usb/quirks/ ; \
|
2026-02-03 20:51:10 +01:00
|
|
|
--
|
|
|
|
|
2.52.0
|
|
|
|
|
|