Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "An Internet printing system for Unix" |
Brad Bishop | f3f93bb | 2019-10-16 14:33:32 -0400 | [diff] [blame] | 2 | DESCRIPTION = "The Common UNIX Printing System is a printing system and \ |
| 3 | general replacement for lpd and the like. It supports the Internet Printing \ |
| 4 | Protocol (IPP), and has its own filtering driver model for handling various \ |
| 5 | document types." |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 6 | HOMEPAGE = "https://www.cups.org/" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 7 | SECTION = "console/utils" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 8 | LICENSE = "Apache-2.0" |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 9 | DEPENDS = "libpng jpeg dbus zlib libusb1" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 10 | |
Andrew Geissler | 5f35090 | 2021-07-23 13:09:54 -0400 | [diff] [blame] | 11 | SRC_URI = "https://github.com/OpenPrinting/cups/releases/download/v${PV}/cups-${PV}-source.tar.gz \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 12 | file://0001-use-echo-only-in-init.patch \ |
| 13 | file://0002-don-t-try-to-run-generated-binaries.patch \ |
Andrew Geissler | 5f35090 | 2021-07-23 13:09:54 -0400 | [diff] [blame] | 14 | file://libexecdir.patch \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 15 | file://0004-cups-fix-multilib-install-file-conflicts.patch \ |
| 16 | file://volatiles.99_cups \ |
| 17 | file://cups-volatiles.conf \ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 18 | " |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 19 | |
Andrew Geissler | 5f35090 | 2021-07-23 13:09:54 -0400 | [diff] [blame] | 20 | UPSTREAM_CHECK_URI = "https://github.com/OpenPrinting/cups/releases" |
| 21 | UPSTREAM_CHECK_REGEX = "cups-(?P<pver>.+)-source.tar" |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 22 | |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 23 | # Issue only applies to MacOS |
| 24 | CVE_CHECK_WHITELIST += "CVE-2008-1033" |
| 25 | # Issue affects pdfdistiller plugin used with but not part of cups |
| 26 | CVE_CHECK_WHITELIST += "CVE-2009-0032" |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 27 | # This is an Ubuntu only issue. |
| 28 | CVE_CHECK_WHITELIST += "CVE-2018-6553" |
| 29 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 30 | LEAD_SONAME = "libcupsdriver.so" |
| 31 | |
| 32 | CLEANBROKEN = "1" |
| 33 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 34 | inherit autotools-brokensep binconfig useradd systemd pkgconfig multilib_script |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 35 | |
| 36 | USERADD_PACKAGES = "${PN}" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 37 | GROUPADD_PARAM:${PN} = "--system lpadmin" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 38 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 39 | SYSTEMD_SERVICE:${PN} = "cups.socket cups.path cups.service cups-lpd.socket" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 40 | |
| 41 | PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'zeroconf', 'avahi', '', d)} \ |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 42 | ${@bb.utils.filter('DISTRO_FEATURES', 'pam systemd', d)}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 43 | PACKAGECONFIG[avahi] = "--enable-avahi,--disable-avahi,avahi" |
| 44 | PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl" |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 45 | PACKAGECONFIG[gnutls] = "--enable-gnutls,--disable-gnutls,gnutls" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 46 | PACKAGECONFIG[pam] = "--enable-pam --with-pam-module=unix, --disable-pam, libpam" |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 47 | PACKAGECONFIG[systemd] = "--with-systemd=${systemd_system_unitdir},--without-systemd,systemd" |
Patrick Williams | f1e5d69 | 2016-03-30 15:21:19 -0500 | [diff] [blame] | 48 | PACKAGECONFIG[xinetd] = "--with-xinetd=${sysconfdir}/xinetd.d,--without-xinetd,xinetd" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 49 | |
| 50 | EXTRA_OECONF = " \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 51 | --enable-dbus \ |
| 52 | --enable-browsing \ |
| 53 | --disable-gssapi \ |
| 54 | --enable-debug \ |
| 55 | --disable-relro \ |
| 56 | --enable-libusb \ |
Andrew Geissler | 90fd73c | 2021-03-05 15:25:55 -0600 | [diff] [blame] | 57 | --with-system-groups=lpadmin \ |
| 58 | --with-cups-group=lp \ |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 59 | --with-domainsocket=/run/cups/cups.sock \ |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 60 | DSOFLAGS='${LDFLAGS}' \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 61 | " |
| 62 | |
| 63 | EXTRA_AUTORECONF += "--exclude=autoheader" |
| 64 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 65 | do_install () { |
Andrew Geissler | 5f35090 | 2021-07-23 13:09:54 -0400 | [diff] [blame] | 66 | oe_runmake "DESTDIR=${D}" install |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 67 | |
| 68 | # Remove /var/run from package as cupsd will populate it on startup |
| 69 | rm -fr ${D}/${localstatedir}/run |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 70 | rm -fr ${D}/${localstatedir}/log |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 71 | rmdir ${D}/${libexecdir}/${BPN}/driver |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 72 | |
Patrick Williams | f1e5d69 | 2016-03-30 15:21:19 -0500 | [diff] [blame] | 73 | # Fix the pam configuration file permissions |
| 74 | if ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'true', 'false', d)}; then |
| 75 | chmod 0644 ${D}${sysconfdir}/pam.d/cups |
| 76 | fi |
| 77 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 78 | # Remove sysinit script and symlinks if sysvinit is not in DISTRO_FEATURES |
| 79 | if ${@bb.utils.contains('DISTRO_FEATURES','sysvinit','false','true',d)}; then |
| 80 | rm -rf ${D}${sysconfdir}/init.d/ |
| 81 | rm -rf ${D}${sysconfdir}/rc* |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 82 | install -d ${D}${sysconfdir}/tmpfiles.d |
| 83 | install -m 0644 ${WORKDIR}/cups-volatiles.conf \ |
| 84 | ${D}${sysconfdir}/tmpfiles.d/cups.conf |
| 85 | else |
| 86 | install -d ${D}${sysconfdir}/default/volatiles |
| 87 | install -m 0644 ${WORKDIR}/volatiles.99_cups \ |
| 88 | ${D}${sysconfdir}/default/volatiles/99_cups |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 89 | fi |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 90 | } |
| 91 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 92 | PACKAGES =+ "${PN}-lib ${PN}-libimage" |
| 93 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 94 | RDEPENDS:${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'procps', '', d)}" |
| 95 | FILES:${PN} += "${libexecdir}/cups/" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 96 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 97 | FILES:${PN}-lib = "${libdir}/libcups.so.*" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 98 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 99 | FILES:${PN}-libimage = "${libdir}/libcupsimage.so.*" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 100 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 101 | #package the html for the webgui inside the main packages (~1MB uncompressed) |
| 102 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 103 | FILES:${PN} += "${datadir}/doc/cups/images \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 104 | ${datadir}/doc/cups/*html \ |
| 105 | ${datadir}/doc/cups/*.css \ |
| 106 | ${datadir}/icons/ \ |
| 107 | " |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 108 | CONFFILES:${PN} += "${sysconfdir}/cups/cupsd.conf" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 109 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 110 | MULTILIB_SCRIPTS = "${PN}-dev:${bindir}/cups-config" |
| 111 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 112 | SYSROOT_PREPROCESS_FUNCS += "cups_sysroot_preprocess" |
| 113 | cups_sysroot_preprocess () { |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 114 | sed -i ${SYSROOT_DESTDIR}${bindir_crossscripts}/cups-config -e 's:cups_datadir=.*:cups_datadir=${datadir}/cups:' -e 's:cups_serverbin=.*:cups_serverbin=${libexecdir}/cups:' |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 115 | } |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 116 | |
| 117 | # -25317 concerns /var/log/cups having lp ownership. Our /var/log/cups is |
| 118 | # root:root, so this doesn't apply. |
| 119 | CVE_CHECK_WHITELIST += "CVE-2021-25317" |