blob: 1765944568ac6547ab77a5b9a7f28398b99948e3 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "An Internet printing system for Unix"
Brad Bishopf3f93bb2019-10-16 14:33:32 -04002DESCRIPTION = "The Common UNIX Printing System is a printing system and \
3general replacement for lpd and the like. It supports the Internet Printing \
4Protocol (IPP), and has its own filtering driver model for handling various \
5document types."
Brad Bishopd7bf8c12018-02-25 22:55:05 -05006HOMEPAGE = "https://www.cups.org/"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007SECTION = "console/utils"
Andrew Geissler82c905d2020-04-13 13:39:40 -05008LICENSE = "Apache-2.0"
Brad Bishop96ff1982019-08-19 13:50:42 -04009DEPENDS = "gnutls libpng jpeg dbus zlib libusb1"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050010
Brad Bishop6e60e8b2018-02-01 10:27:11 -050011SRC_URI = "https://github.com/apple/cups/releases/download/v${PV}/${BP}-source.tar.gz \
Andrew Geissler82c905d2020-04-13 13:39:40 -050012 file://0001-use-echo-only-in-init.patch \
13 file://0002-don-t-try-to-run-generated-binaries.patch \
14 file://0003-cups_1.4.6.bb-Fix-build-on-ppc64.patch \
15 file://0004-cups-fix-multilib-install-file-conflicts.patch \
16 file://volatiles.99_cups \
17 file://cups-volatiles.conf \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080018 "
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019
Patrick Williamsc0f7c042017-02-23 20:41:17 -060020UPSTREAM_CHECK_URI = "https://github.com/apple/cups/releases"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050021UPSTREAM_CHECK_REGEX = "cups-(?P<pver>\d+\.\d+(\.\d+)?)-source.tar"
22
Patrick Williamsc124f4f2015-09-15 14:41:29 -050023LEAD_SONAME = "libcupsdriver.so"
24
25CLEANBROKEN = "1"
26
Andrew Geissler82c905d2020-04-13 13:39:40 -050027inherit autotools-brokensep binconfig useradd systemd pkgconfig multilib_script
Patrick Williamsc124f4f2015-09-15 14:41:29 -050028
29USERADD_PACKAGES = "${PN}"
30GROUPADD_PARAM_${PN} = "--system lpadmin"
31
Andrew Geissler5a43b432020-06-13 10:46:56 -050032SYSTEMD_SERVICE_${PN} = "org.cups.cupsd.socket org.cups.cupsd.path org.cups.cupsd.service org.cups.cups-lpd.socket"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050033
34PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'zeroconf', 'avahi', '', d)} \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050035 ${@bb.utils.filter('DISTRO_FEATURES', 'pam systemd', d)}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050036PACKAGECONFIG[avahi] = "--enable-avahi,--disable-avahi,avahi"
37PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl"
Brad Bishop19323692019-04-05 15:28:33 -040038PACKAGECONFIG[pam] = "--enable-pam --with-pam-module=unix, --disable-pam, libpam"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050039PACKAGECONFIG[systemd] = "--with-systemd=${systemd_system_unitdir},--without-systemd,systemd"
Patrick Williamsf1e5d692016-03-30 15:21:19 -050040PACKAGECONFIG[xinetd] = "--with-xinetd=${sysconfdir}/xinetd.d,--without-xinetd,xinetd"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050041
42EXTRA_OECONF = " \
43 --enable-gnutls \
44 --enable-dbus \
45 --enable-browsing \
46 --disable-gssapi \
47 --enable-debug \
48 --disable-relro \
49 --enable-libusb \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060050 DSOFLAGS='${LDFLAGS}' \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050051 "
52
53EXTRA_AUTORECONF += "--exclude=autoheader"
54
55do_compile () {
56 echo "all:" > man/Makefile
57 echo "libs:" >> man/Makefile
58 echo "install:" >> man/Makefile
59 echo "install-data:" >> man/Makefile
60 echo "install-exec:" >> man/Makefile
61 echo "install-headers:" >> man/Makefile
62 echo "install-libs:" >> man/Makefile
63
64 oe_runmake
65}
66
67do_install () {
68 oe_runmake "DSTROOT=${D}" install
69
70 # Remove /var/run from package as cupsd will populate it on startup
71 rm -fr ${D}/${localstatedir}/run
Andrew Geissler82c905d2020-04-13 13:39:40 -050072 rm -fr ${D}/${localstatedir}/log
Brad Bishop79641f22019-09-10 07:20:22 -040073 rmdir ${D}/${libexecdir}/${BPN}/driver
Patrick Williamsc124f4f2015-09-15 14:41:29 -050074
Patrick Williamsf1e5d692016-03-30 15:21:19 -050075 # Fix the pam configuration file permissions
76 if ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'true', 'false', d)}; then
77 chmod 0644 ${D}${sysconfdir}/pam.d/cups
78 fi
79
Patrick Williamsc124f4f2015-09-15 14:41:29 -050080 # Remove sysinit script and symlinks if sysvinit is not in DISTRO_FEATURES
81 if ${@bb.utils.contains('DISTRO_FEATURES','sysvinit','false','true',d)}; then
82 rm -rf ${D}${sysconfdir}/init.d/
83 rm -rf ${D}${sysconfdir}/rc*
Andrew Geissler82c905d2020-04-13 13:39:40 -050084 install -d ${D}${sysconfdir}/tmpfiles.d
85 install -m 0644 ${WORKDIR}/cups-volatiles.conf \
86 ${D}${sysconfdir}/tmpfiles.d/cups.conf
87 else
88 install -d ${D}${sysconfdir}/default/volatiles
89 install -m 0644 ${WORKDIR}/volatiles.99_cups \
90 ${D}${sysconfdir}/default/volatiles/99_cups
Patrick Williamsc124f4f2015-09-15 14:41:29 -050091 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -050092}
93
Patrick Williamsc124f4f2015-09-15 14:41:29 -050094PACKAGES =+ "${PN}-lib ${PN}-libimage"
95
96RDEPENDS_${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'procps', '', d)}"
Andrew Geissler82c905d2020-04-13 13:39:40 -050097FILES_${PN} += "${libexecdir}/cups/ \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050098 "
99
100FILES_${PN}-lib = "${libdir}/libcups.so.*"
101
102FILES_${PN}-libimage = "${libdir}/libcupsimage.so.*"
103
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500104#package the html for the webgui inside the main packages (~1MB uncompressed)
105
106FILES_${PN} += "${datadir}/doc/cups/images \
107 ${datadir}/doc/cups/*html \
108 ${datadir}/doc/cups/*.css \
109 ${datadir}/icons/ \
110 "
111CONFFILES_${PN} += "${sysconfdir}/cups/cupsd.conf"
112
Andrew Geissler82c905d2020-04-13 13:39:40 -0500113MULTILIB_SCRIPTS = "${PN}-dev:${bindir}/cups-config"
114
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500115SYSROOT_PREPROCESS_FUNCS += "cups_sysroot_preprocess"
116cups_sysroot_preprocess () {
Andrew Geissler82c905d2020-04-13 13:39:40 -0500117 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 Williamsc124f4f2015-09-15 14:41:29 -0500118}