PKGBUILDs/extra/cups/PKGBUILD

181 lines
6.4 KiB
Bash
Raw Normal View History

2014-09-19 18:54:04 +00:00
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2020-04-28 12:52:48 +00:00
# - disable distcc - configure checks for clang first
2014-09-19 18:54:04 +00:00
pkgbase="cups"
pkgname=('libcups' 'cups')
2023-06-03 18:15:55 +00:00
pkgver=2.4.3
pkgrel=1
2020-11-28 19:04:25 +00:00
epoch=1
2018-01-31 06:35:15 +00:00
arch=('x86_64')
2023-02-02 12:51:33 +00:00
options=(!distcc)
2019-08-29 18:18:53 +00:00
license=('Apache' 'custom')
2021-12-05 16:55:11 +00:00
url="https://openprinting.github.io/cups/"
2023-02-02 12:51:33 +00:00
makedepends=('acl' 'pam' 'gnutls' 'cups-filters' 'colord'
'libusb' 'avahi' 'systemd' 'libpaper')
#checkdepends=('valgrind')
2021-12-05 16:55:11 +00:00
source=(https://github.com/OpenPrinting/cups/releases/download/v${pkgver}/cups-${pkgver}-source.tar.gz{,.sig}
2018-06-22 17:19:06 +00:00
cups.logrotate
cups.pam
cups.sysusers
2021-12-05 16:55:11 +00:00
cups-2.4.0-statedir.patch
2014-10-31 16:40:29 +00:00
# bugfixes
2020-11-28 19:04:25 +00:00
cups-freebind.patch
2021-04-09 20:34:55 +00:00
guid.patch
)
2023-06-03 18:15:55 +00:00
sha256sums=('9ddeb98f20e9c9f4af121c2b1053e7420b79bd6770f1aded2866303d27526f6f'
2017-01-18 20:29:40 +00:00
'SKIP'
'd87fa0f0b5ec677aae34668f260333db17ce303aa1a752cba5f8e72623d9acf9'
'57dfd072fd7ef0018c6b0a798367aac1abb5979060ff3f9df22d1048bb71c0d5'
2018-01-31 06:35:15 +00:00
'06173dfaea37bdd9b39b3e09aba98c34ae7112a2f521db45a688907d8848caa2'
2021-12-05 16:55:11 +00:00
'f0b15192952c151b1843742c87850ff3a7d0f3ba5dd236ed16623ef908472ad7'
2020-11-28 19:04:25 +00:00
'3385047b9ac8a7b13aeb8f0ca55d15f793ce7283516db0155fe28a67923c592d'
2023-06-03 18:15:55 +00:00
'0bf6a75ba1b051771f155d9a5d36b307a6d40c6857d645b250fe93f3fb713474')
2021-12-05 16:55:11 +00:00
#validpgpkeys=('3737FD0D0E63B30172440D2DDBA3A7AB08D76223') # CUPS.org (CUPS.org PGP key) <security@cups.org>
#validpgpkeys+=('45D083946E3035282B3CCA9AF434104235DA97EB') # "CUPS.org <security@cups.org>"
#validpgpkeys+=('845464660B686AAB36540B6F999559A027815955') # "Michael R Sweet <michael.r.sweet@gmail.com>"
2022-01-29 18:27:01 +00:00
#validpgpkeys=('7ADB58203CA5F046F28025B215AA6A7F4D4227D7') # "Zdenek Dohnal (Associate Software Engineer) <zdohnal@redhat.com>"
validpgpkeys=('7082A0A50A2E92640F3880E0E4522DCC9B246FF7') # Zdenek Dohnal (The old 4D4227D7 key revoked) <zdohnal@redhat.com>
2021-12-05 16:55:11 +00:00
#options=(!makeflags)
2020-11-21 17:05:33 +00:00
2014-09-19 18:54:04 +00:00
prepare() {
2020-11-28 19:04:25 +00:00
cd "${pkgbase}"-${pkgver}
2019-10-26 01:34:29 +00:00
2014-09-19 18:54:04 +00:00
# move /var/run -> /run for pid file
2021-12-05 16:55:11 +00:00
patch -Np1 -i "${srcdir}"/cups-2.4.0-statedir.patch
2014-10-31 16:40:29 +00:00
2016-08-05 23:31:36 +00:00
# bug fixes
2020-11-28 19:04:25 +00:00
2020-11-26 16:26:00 +00:00
# https://github.com/OpenPrinting/cups/issues/53
2020-11-28 19:04:25 +00:00
# use IP_FREEBIND, because cupsd cannot bind to not yet existing IP address
patch -Np1 -i "${srcdir}"/cups-freebind.patch
2016-08-05 23:31:36 +00:00
2018-01-31 06:35:15 +00:00
# FS#56818 - https://github.com/apple/cups/issues/5236
2019-10-26 01:34:29 +00:00
patch -Np1 -i "${srcdir}"/guid.patch
2018-01-31 06:35:15 +00:00
2021-12-05 16:55:11 +00:00
# Rebuild configure script
2014-09-19 18:54:04 +00:00
aclocal -I config-scripts
autoconf -I config-scripts
}
build() {
2020-11-28 19:04:25 +00:00
cd "${pkgbase}"-${pkgver}
2020-11-21 17:05:33 +00:00
# The build system uses only DSOFLAGS but not LDFLAGS to build some libraries.
export DSOFLAGS=${LDFLAGS}
2018-01-31 06:35:15 +00:00
# use fixed cups user (id 209) since systemd adds "lp" group without a fixed id
2014-10-31 16:40:29 +00:00
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
2014-09-19 18:54:04 +00:00
--sbindir=/usr/bin \
--libdir=/usr/lib \
--with-logdir=/var/log/cups \
--with-docdir=/usr/share/cups/doc \
2017-11-03 19:06:31 +00:00
--with-exe-file-perm=0755 \
2018-01-31 06:35:15 +00:00
--with-cups-user=209 \
--with-cups-group=209 \
2020-11-21 17:05:33 +00:00
--with-max-log-size=0 \
2014-09-19 18:54:04 +00:00
--enable-pam=yes \
--enable-raw-printing \
2019-01-13 21:19:26 +00:00
--enable-dbus=yes \
2022-06-10 17:26:39 +00:00
--with-tls=gnutls \
2019-01-13 21:19:26 +00:00
--with-dbusdir=/usr/share/dbus-1 \
2019-10-26 01:34:29 +00:00
--enable-relro \
2014-09-19 18:54:04 +00:00
--enable-libpaper \
2014-10-31 16:40:29 +00:00
--with-optim="$CFLAGS" #--help
2014-09-19 18:54:04 +00:00
make
}
2023-02-02 12:51:33 +00:00
# don't run tests - they take ages
#check() {
# cd "${pkgbase}"-${pkgver}
## make -k check || /bin/true
2020-11-21 17:05:33 +00:00
# make check
2023-02-02 12:51:33 +00:00
#}
2014-09-19 18:54:04 +00:00
package_libcups() {
2023-02-02 12:51:33 +00:00
pkgdesc="OpenPrinting CUPS - client libraries and headers"
depends=('gnutls' 'avahi')
2014-09-19 18:54:04 +00:00
2020-11-28 19:04:25 +00:00
cd ${pkgbase}-${pkgver}
2019-10-26 01:34:29 +00:00
make BUILDROOT="${pkgdir}" install-headers install-libs
2014-09-19 18:54:04 +00:00
# put this into the libs pkg to make other software find the libs(no pkg-config file included)
2019-10-26 01:34:29 +00:00
mkdir -p "${pkgdir}"/usr/bin
2020-11-28 19:04:25 +00:00
install -m755 "${srcdir}"/"${pkgbase}"-${pkgver}/cups-config "${pkgdir}"/usr/bin/cups-config
2019-08-29 18:18:53 +00:00
# add license + exception
install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" {LICENSE,NOTICE}
2014-09-19 18:54:04 +00:00
}
package_cups() {
2023-02-02 12:51:33 +00:00
pkgdesc="OpenPrinting CUPS - daemon package"
2014-09-19 18:54:04 +00:00
install=cups.install
backup=(etc/cups/cupsd.conf
etc/cups/snmp.conf
etc/cups/printers.conf
etc/cups/classes.conf
etc/cups/cups-files.conf
etc/cups/subscriptions.conf
etc/logrotate.d/cups
2014-11-14 23:36:52 +00:00
etc/pam.d/cups)
2023-02-02 12:51:33 +00:00
depends=('acl' 'pam' "libcups>=${pkgver}" 'cups-filters'
2014-10-31 16:40:29 +00:00
'dbus' 'systemd' 'libpaper' 'hicolor-icon-theme')
2023-02-02 12:51:33 +00:00
optdepends=('libusb: for usb printer backend'
'ipp-usb: allows to send HTTP requests via a USB connection on devices without Ethernet or WiFi connections'
2020-07-16 13:45:22 +00:00
'xdg-utils: xdg .desktop file support'
2019-10-26 01:34:29 +00:00
'colord: for ICC color profile support'
'logrotate: for logfile rotation support')
2014-09-19 18:54:04 +00:00
2020-11-28 19:04:25 +00:00
cd "${pkgbase}"-${pkgver}
2019-10-26 01:34:29 +00:00
make BUILDROOT="${pkgdir}" install-data install-exec
2014-09-19 18:54:04 +00:00
# this one we ship in the libcups pkg
2019-10-26 01:34:29 +00:00
rm -f "${pkgdir}"/usr/bin/cups-config
2014-09-19 18:54:04 +00:00
# kill the sysv stuff
2019-10-26 01:34:29 +00:00
rm -rf "${pkgdir}"/etc/rc*.d
rm -rf "${pkgdir}"/etc/init.d
install -D -m644 ../cups.logrotate "${pkgdir}"/etc/logrotate.d/cups
install -D -m644 ../cups.pam "${pkgdir}"/etc/pam.d/cups
2014-09-19 18:54:04 +00:00
# fix perms on /var/spool and /etc
2019-10-26 01:34:29 +00:00
chmod 755 "${pkgdir}"/var/spool
chmod 755 "${pkgdir}"/etc
2014-09-19 18:54:04 +00:00
2018-01-31 06:35:15 +00:00
# use cups group FS#36769
install -Dm644 "$srcdir"/cups.sysusers "${pkgdir}/usr/lib/sysusers.d/$pkgname.conf"
2019-10-26 01:34:29 +00:00
sed -i "s:#User 209:User 209:" "${pkgdir}"/etc/cups/cups-files.conf{,.default}
sed -i "s:#Group 209:Group 209:" "${pkgdir}"/etc/cups/cups-files.conf{,.default}
2018-01-31 06:35:15 +00:00
2014-09-19 18:54:04 +00:00
# install ssl directory where to store the certs, solves some samba issues
2019-10-26 01:34:29 +00:00
install -dm700 -g 209 "${pkgdir}"/etc/cups/ssl
2014-09-19 18:54:04 +00:00
# remove directory from package, it will be recreated at each server start
2019-10-26 01:34:29 +00:00
rm -rf "${pkgdir}"/run
2014-09-19 18:54:04 +00:00
# install some more configuration files that will get filled by cupsd
2019-10-26 01:34:29 +00:00
touch "${pkgdir}"/etc/cups/printers.conf
touch "${pkgdir}"/etc/cups/classes.conf
touch "${pkgdir}"/etc/cups/subscriptions.conf
chgrp -R 209 "${pkgdir}"/etc/cups
2018-06-22 17:19:06 +00:00
2014-09-19 18:54:04 +00:00
# fix .desktop file
2019-10-26 01:34:29 +00:00
sed -i 's|^Exec=htmlview http://localhost:631/|Exec=xdg-open http://localhost:631/|g' "${pkgdir}"/usr/share/applications/cups.desktop
2018-06-22 17:19:06 +00:00
2014-09-19 18:54:04 +00:00
# compress some driver files, adopted from Fedora
2019-10-26 01:34:29 +00:00
find "${pkgdir}"/usr/share/cups/model -name "*.ppd" | xargs gzip -n9f
2018-06-22 17:19:06 +00:00
2014-09-19 18:54:04 +00:00
# remove client.conf man page
2019-10-26 01:34:29 +00:00
rm -f "${pkgdir}"/usr/share/man/man5/client.conf.5
2018-06-22 17:19:06 +00:00
2020-11-21 17:05:33 +00:00
# comment out removed filters that are now part of cups-filters
2019-10-26 01:34:29 +00:00
perl -p -i -e 's:^(.*\s+bannertops\s*)$:#\1:' "$pkgdir"/usr/share/cups/mime/mime.convs
2018-06-22 17:19:06 +00:00
2014-11-12 20:25:11 +00:00
# comment out unnecessary PageLogFormat entry
2019-10-26 01:34:29 +00:00
sed -i -e 's:PageLogFormat:#PageLogFormat:' "$pkgdir"/etc/cups/cupsd.conf*
2021-11-06 21:06:51 +00:00
# no more xinetd support
rm -rf "${pkgdir}"/etc/xinetd.d
2014-09-19 18:54:04 +00:00
}