mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 02:14:37 +08:00
169 lines
6.1 KiB
Bash
169 lines
6.1 KiB
Bash
pkgbase="cups"
|
|
pkgname=('libcups' 'cups')
|
|
pkgver=2.2.8
|
|
pkgrel=1
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
url="http://www.cups.org/"
|
|
makedepends=('libtiff>=4.0.0' 'libpng>=1.5.7' 'acl' 'pam' 'xdg-utils' 'krb5' 'gnutls'
|
|
'cups-filters' 'bc' 'colord' 'xinetd' 'gzip' 'autoconf' 'libusb' 'dbus'
|
|
'avahi' 'hicolor-icon-theme' 'systemd' 'inetutils' 'libpaper' 'valgrind')
|
|
source=("https://github.com/apple/cups/releases/download/v${pkgver}/${pkgbase}-${pkgver}-source.tar.gz"{,.sig}
|
|
cups.logrotate
|
|
cups.pam
|
|
cups.sysusers
|
|
# improve build and linking
|
|
cups-no-export-ssllibs.patch
|
|
cups-no-gzip-man.patch
|
|
cups-1.6.2-statedir.patch
|
|
# bugfixes
|
|
cups-systemd-socket.patch
|
|
guid.patch
|
|
cups-2.2.8-5325.patch)
|
|
md5sums=('33150d08993a04c8e22176e93805a051'
|
|
'SKIP'
|
|
'fc8286f185e2cc5f7e1f6843bf193e2b'
|
|
'96f82c38f3f540b53f3e5144900acf17'
|
|
'76422fe851f79800a3b0a83467c3fceb'
|
|
'3ba9e3410df1dc3015463d615ef91b3b'
|
|
'39dd3141991c3052b73f59ece70e1ea6'
|
|
'451609db34f95209d64c38474de27ce1'
|
|
'2642d914f0b3b05f9c38d9864b670302'
|
|
'e42820dd62ef79f1a2f0448bf06393d2'
|
|
'e9825ade79e15524a85a00820a20d324')
|
|
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>"
|
|
|
|
prepare() {
|
|
|
|
cd ${pkgbase}-${pkgver}
|
|
|
|
# improve build and linking
|
|
# Do not export SSL libs in cups-config
|
|
patch -Np1 -i ${srcdir}/cups-no-export-ssllibs.patch
|
|
# don't zip man pages in make install, let makepkg do that / Fedora
|
|
patch -Np1 -i ${srcdir}/cups-no-gzip-man.patch
|
|
# move /var/run -> /run for pid file
|
|
patch -Np1 -i ${srcdir}/cups-1.6.2-statedir.patch
|
|
|
|
# bug fixes
|
|
# make sure network is up when starting and notify systemd - FC
|
|
patch -Np1 -i ${srcdir}/cups-systemd-socket.patch
|
|
# https://github.com/apple/cups/pull/5303
|
|
patch -Np1 -i ${srcdir}/cups-2.2.8-5325.patch
|
|
|
|
# FS#56818 - https://github.com/apple/cups/issues/5236
|
|
patch -Np1 -i ${srcdir}/guid.patch
|
|
|
|
# set MaxLogSize to 0 to prevent using cups internal log rotation
|
|
sed -i -e '5i\ ' conf/cupsd.conf.in
|
|
sed -i -e '6i# Disable cups internal logging - use logrotate instead' conf/cupsd.conf.in
|
|
sed -i -e '7iMaxLogSize 0' conf/cupsd.conf.in
|
|
|
|
# Rebuild configure script for not zipping man-pages.
|
|
aclocal -I config-scripts
|
|
autoconf -I config-scripts
|
|
}
|
|
|
|
build() {
|
|
cd ${pkgbase}-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--sbindir=/usr/bin \
|
|
--libdir=/usr/lib \
|
|
--with-logdir=/var/log/cups \
|
|
--with-docdir=/usr/share/cups/doc \
|
|
--with-exe-file-perm=0755 \
|
|
--with-cups-user=209 \
|
|
--with-cups-group=209 \
|
|
--enable-pam=yes \
|
|
--enable-raw-printing \
|
|
--enable-dbus --with-dbusdir=/etc/dbus-1 \
|
|
--enable-ssl=yes \
|
|
--enable-threads \
|
|
--enable-avahi\
|
|
--enable-libpaper \
|
|
--with-php=/usr/bin/php-cgi \
|
|
--with-optim="$CFLAGS" \
|
|
--with-system_groups="lpadmin" # use the lpadmin group to let users add/remove printers without root password
|
|
}
|
|
|
|
package_libcups() {
|
|
pkgdesc="The CUPS Printing System - client libraries and headers"
|
|
depends=('gnutls' 'libtiff>=4.0.0' 'libpng>=1.5.7' 'krb5' 'avahi' 'libusb')
|
|
backup=(etc/cups/client.conf)
|
|
|
|
cd ${pkgbase}-${pkgver}
|
|
make BUILDROOT=${pkgdir} install-headers install-libs
|
|
# put this into the libs pkg to make other software find the libs(no pkg-config file included)
|
|
mkdir -p ${pkgdir}/usr/bin
|
|
install -m755 ${srcdir}/${pkgbase}-${pkgver}/cups-config ${pkgdir}/usr/bin/cups-config
|
|
}
|
|
|
|
package_cups() {
|
|
pkgdesc="The CUPS Printing System - daemon package"
|
|
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/dbus-1/system.d/cups.conf
|
|
etc/logrotate.d/cups
|
|
etc/pam.d/cups)
|
|
depends=('acl' 'pam' "libcups>=${pkgver}" 'cups-filters' 'bc' 'colord'
|
|
'dbus' 'systemd' 'libpaper' 'hicolor-icon-theme')
|
|
optdepends=('xdg-utils: xdg .desktop file support')
|
|
|
|
cd ${pkgbase}-${pkgver}
|
|
make BUILDROOT=${pkgdir} install-data install-exec
|
|
|
|
# this one we ship in the libcups pkg
|
|
rm -f ${pkgdir}/usr/bin/cups-config
|
|
|
|
# kill the sysv stuff
|
|
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
|
|
|
|
# fix perms on /var/spool and /etc
|
|
chmod 755 ${pkgdir}/var/spool
|
|
chmod 755 ${pkgdir}/etc
|
|
|
|
# use cups group FS#36769
|
|
install -Dm644 "$srcdir"/cups.sysusers "${pkgdir}/usr/lib/sysusers.d/$pkgname.conf"
|
|
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}
|
|
|
|
# install ssl directory where to store the certs, solves some samba issues
|
|
install -dm700 -g 209 ${pkgdir}/etc/cups/ssl
|
|
# remove directory from package, it will be recreated at each server start
|
|
rm -rf ${pkgdir}/run
|
|
|
|
# install some more configuration files that will get filled by cupsd
|
|
touch ${pkgdir}/etc/cups/printers.conf
|
|
touch ${pkgdir}/etc/cups/classes.conf
|
|
touch ${pkgdir}/etc/cups/subscriptions.conf
|
|
chgrp -R 209 ${pkgdir}/etc/cups
|
|
|
|
# fix .desktop file
|
|
sed -i 's|^Exec=htmlview http://localhost:631/|Exec=xdg-open http://localhost:631/|g' ${pkgdir}/usr/share/applications/cups.desktop
|
|
|
|
# compress some driver files, adopted from Fedora
|
|
find ${pkgdir}/usr/share/cups/model -name "*.ppd" | xargs gzip -n9f
|
|
|
|
# remove client.conf man page
|
|
rm -f ${pkgdir}/usr/share/man/man5/client.conf.5
|
|
|
|
# comment out all conversion rules which use any of the removed filters
|
|
perl -p -i -e 's:^(.*\s+bannertops\s*)$:#\1:' $pkgdir/usr/share/cups/mime/mime.convs
|
|
|
|
# comment out unnecessary PageLogFormat entry
|
|
sed -i -e 's:PageLogFormat:#PageLogFormat:' $pkgdir/etc/cups/cupsd.conf*
|
|
}
|
|
|