From: Angelo Compagnucci <angelo.compagnucci@gmail.com>
To: buildroot@buildroot.org
Cc: Angelo Compagnucci <angelo.compagnucci@gmail.com>
Subject: [Buildroot] [PATCH 1/5] package/libppd: new package
Date: Tue, 19 Aug 2025 17:08:30 +0200 [thread overview]
Message-ID: <20250819150834.1651775-2-angelo.compagnucci@gmail.com> (raw)
In-Reply-To: <20250819150834.1651775-1-angelo.compagnucci@gmail.com>
This package contains PPD library for newer versions of cups supporting
more than ~10000 printer models.
Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
---
DEVELOPERS | 1 +
package/Config.in | 2 ++
package/libppd/Config.in | 8 ++++++++
package/libppd/libppd.hash | 4 ++++
package/libppd/libppd.mk | 22 ++++++++++++++++++++++
5 files changed, 37 insertions(+)
create mode 100644 package/libppd/Config.in
create mode 100644 package/libppd/libppd.hash
create mode 100644 package/libppd/libppd.mk
diff --git a/DEVELOPERS b/DEVELOPERS
index 3efad36d70..d8f797d2c0 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -221,6 +221,7 @@ F: package/jq/
F: package/libapparmor/
F: package/libb64/
F: package/libdill/
+F: package/libppd/
F: package/mender/
F: package/mender-artifact/
F: package/mono/
diff --git a/package/Config.in b/package/Config.in
index 137f74ed82..d029780241 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -352,7 +352,9 @@ comment "Graphic libraries"
source "package/freerdp/Config.in"
source "package/graphicsmagick/Config.in"
source "package/imagemagick/Config.in"
+ source "package/libcupsfilters/Config.in"
source "package/libglvnd/Config.in"
+ source "package/libppd/Config.in"
source "package/mesa3d/Config.in"
source "package/mesa3d-headers/Config.in"
source "package/ocrad/Config.in"
diff --git a/package/libppd/Config.in b/package/libppd/Config.in
new file mode 100644
index 0000000000..124de4f7f2
--- /dev/null
+++ b/package/libppd/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_LIBPPD
+ bool "libppd"
+ depends on BR2_INSTALL_LIBSTDCPP
+ depends on BR2_PACKAGE_LIBCUPSFILTERS
+ help
+ The Common Unix Printing System
+
+ ~10000 printer models are supported with PPD-file-based classic CUPS drivers.
diff --git a/package/libppd/libppd.hash b/package/libppd/libppd.hash
new file mode 100644
index 0000000000..3f698c3108
--- /dev/null
+++ b/package/libppd/libppd.hash
@@ -0,0 +1,4 @@
+# Locally calculated:
+sha256 b356aeed1335ef0ca7f799741782a2544e7acee63fb4b047b94e4e0395a9cb62 libppd-2.1.1.tar.gz
+sha256 cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30 LICENSE
+sha256 977206f041b9a6f47ac00531e1242c0fab7063da71178f8d868b167b70866b6d NOTICE
diff --git a/package/libppd/libppd.mk b/package/libppd/libppd.mk
new file mode 100644
index 0000000000..d76ecc3765
--- /dev/null
+++ b/package/libppd/libppd.mk
@@ -0,0 +1,22 @@
+################################################################################
+#
+# libppd
+#
+################################################################################
+
+LIBPPD_VERSION = 2.1.1
+LIBPPD_SOURCE = libppd-$(LIBPPD_VERSION).tar.gz
+LIBPPD_SITE = https://github.com/OpenPrinting/libppd/releases/download/$(LIBPPD_VERSION)
+LIBPPD_LICENSE = Apache-2.0 with GPL-2.0/LGPL-2.0 exception
+LIBPPD_LICENSE_FILES = LICENSE NOTICE
+LIBPPD_CPE_ID_VENDOR = openprinting
+LIBPPD_SELINUX_MODULES = cups
+LIBPPD_INSTALL_STAGING = YES
+LIBPPD_AUTORECONF = YES
+
+LIBPPD_DEPENDENCIES = cups libcupsfilters
+
+LIBPPD_CONF_OPTS = \
+ --with-cups-config=$(STAGING_DIR)/usr/bin/cups-config
+
+$(eval $(autotools-package))
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
next prev parent reply other threads:[~2025-08-19 15:08 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-19 15:08 [Buildroot] [PATCH 0/5] Bump CUPS to the latest version Angelo Compagnucci
2025-08-19 15:08 ` Angelo Compagnucci [this message]
2025-08-19 15:35 ` [Buildroot] [PATCH 1/5] package/libppd: new package Baruch Siach via buildroot
2025-08-19 15:08 ` [Buildroot] [PATCH 2/5] package/libcupsfilters: " Angelo Compagnucci
2025-08-19 15:08 ` [Buildroot] [PATCH 3/5] package/qpdf: bump to version 12.2.0 Angelo Compagnucci
2025-08-19 15:08 ` [Buildroot] [PATCH 4/5] package/cups-filters: bump to version 2.0.1 Angelo Compagnucci
2025-08-19 15:08 ` [Buildroot] [PATCH 5/5] package/cups: bump to version 2.4.12 Angelo Compagnucci
2025-08-20 14:33 ` Julien Olivain via buildroot
2025-08-20 15:41 ` Angelo Compagnucci
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250819150834.1651775-2-angelo.compagnucci@gmail.com \
--to=angelo.compagnucci@gmail.com \
--cc=buildroot@buildroot.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox