2014-09-19 18:54:04 +00:00
|
|
|
|
# $Id$
|
|
|
|
|
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
|
# - drop valgrind makedepend
|
|
|
|
|
|
|
|
|
|
pkgbase="cups"
|
|
|
|
|
pkgname=('libcups' 'cups')
|
2015-09-14 23:39:15 +00:00
|
|
|
|
pkgver=2.1.0
|
2015-06-10 00:08:34 +00:00
|
|
|
|
pkgrel=1
|
2014-09-19 18:54:04 +00:00
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
|
license=('GPL')
|
|
|
|
|
url="http://www.cups.org/"
|
2014-10-31 16:40:29 +00:00
|
|
|
|
makedepends=('libtiff>=4.0.0' 'libpng>=1.5.7' 'acl' 'pam' 'xdg-utils' 'krb5' 'gnutls'
|
2014-09-19 18:54:04 +00:00
|
|
|
|
'cups-filters' 'bc' 'colord' 'xinetd' 'gzip' 'autoconf' 'libusb' 'dbus'
|
|
|
|
|
'avahi' 'hicolor-icon-theme' 'systemd' 'inetutils' 'libpaper')
|
2014-10-31 16:40:29 +00:00
|
|
|
|
source=(http://www.cups.org/software/${pkgver}/cups-${pkgver}-source.tar.bz2{,.sig}
|
2014-09-19 18:54:04 +00:00
|
|
|
|
cups.logrotate cups.pam
|
|
|
|
|
# improve build and linking
|
|
|
|
|
cups-no-export-ssllibs.patch
|
|
|
|
|
cups-no-gcrypt.patch
|
|
|
|
|
cups-no-gzip-man.patch
|
|
|
|
|
cups-1.6.2-statedir.patch
|
2014-10-31 16:40:29 +00:00
|
|
|
|
cups-1.6.0-fix-install-perms.patch
|
|
|
|
|
# bugfixes
|
2015-06-10 00:08:34 +00:00
|
|
|
|
)
|
2015-09-14 23:39:15 +00:00
|
|
|
|
md5sums=('c4e57a66298bfdba66bb3d5bedd317a4'
|
2014-09-19 18:54:04 +00:00
|
|
|
|
'SKIP'
|
2014-10-31 16:40:29 +00:00
|
|
|
|
'fc8286f185e2cc5f7e1f6843bf193e2b'
|
2014-09-19 18:54:04 +00:00
|
|
|
|
'96f82c38f3f540b53f3e5144900acf17'
|
|
|
|
|
'3ba9e3410df1dc3015463d615ef91b3b'
|
2014-10-31 16:40:29 +00:00
|
|
|
|
'1beb4896f217bc241bc08a422274ec0c'
|
2014-09-19 18:54:04 +00:00
|
|
|
|
'90c30380d4c8cd48a908cfdadae1ea24'
|
|
|
|
|
'451609db34f95209d64c38474de27ce1'
|
2015-06-10 00:08:34 +00:00
|
|
|
|
'5117f65342fcc69c6a506529e4daca9e')
|
2015-02-10 17:11:06 +00:00
|
|
|
|
validpgpkeys=('3737FD0D0E63B30172440D2DDBA3A7AB08D76223') # CUPS.org (CUPS.org PGP key) <security@cups.org>
|
2014-09-19 18:54:04 +00:00
|
|
|
|
prepare() {
|
|
|
|
|
|
|
|
|
|
cd ${pkgbase}-${pkgver}
|
2014-10-31 16:40:29 +00:00
|
|
|
|
|
|
|
|
|
# improve build and linking
|
2014-09-19 18:54:04 +00:00
|
|
|
|
# Do not export SSL libs in cups-config
|
2014-10-31 16:40:29 +00:00
|
|
|
|
patch -Np1 -i ${srcdir}/cups-no-export-ssllibs.patch
|
|
|
|
|
# https://www.cups.org/str.php?L4399
|
|
|
|
|
patch -Np1 -i ${srcdir}/cups-no-gcrypt.patch
|
2014-09-19 18:54:04 +00:00
|
|
|
|
# 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
|
2014-10-31 16:40:29 +00:00
|
|
|
|
# fix permissions on some files (by Gentoo) - alternative: cups-0755.patch by FC
|
|
|
|
|
patch -Np0 -i ${srcdir}/cups-1.6.0-fix-install-perms.patch
|
|
|
|
|
|
|
|
|
|
# bug fixes
|
2014-09-19 18:54:04 +00:00
|
|
|
|
|
2014-10-31 16:40:29 +00:00
|
|
|
|
# set MaxLogSize to 0 to prevent using cups internal log rotation
|
2014-11-12 20:25:11 +00:00
|
|
|
|
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
|
2014-09-19 18:54:04 +00:00
|
|
|
|
|
|
|
|
|
# Rebuild configure script for not zipping man-pages.
|
|
|
|
|
aclocal -I config-scripts
|
|
|
|
|
autoconf -I config-scripts
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
build() {
|
|
|
|
|
cd ${pkgbase}-${pkgver}
|
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 \
|
|
|
|
|
--with-cups-user=daemon \
|
|
|
|
|
--with-cups-group=lp \
|
|
|
|
|
--enable-pam=yes \
|
|
|
|
|
--enable-raw-printing \
|
|
|
|
|
--enable-dbus --with-dbusdir=/etc/dbus-1 \
|
2014-10-31 16:40:29 +00:00
|
|
|
|
--enable-ssl=yes \
|
2014-09-19 18:54:04 +00:00
|
|
|
|
--enable-threads \
|
|
|
|
|
--enable-avahi\
|
|
|
|
|
--enable-libpaper \
|
|
|
|
|
--with-php=/usr/bin/php-cgi \
|
2014-10-31 16:40:29 +00:00
|
|
|
|
--with-optim="$CFLAGS" #--help
|
2014-09-19 18:54:04 +00:00
|
|
|
|
make
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
check() {
|
|
|
|
|
cd ${pkgbase}-${pkgver}
|
2014-10-31 16:40:29 +00:00
|
|
|
|
#make -k check || /bin/true
|
2014-09-19 18:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
package_libcups() {
|
|
|
|
|
pkgdesc="The CUPS Printing System - client libraries and headers"
|
2014-10-31 16:40:29 +00:00
|
|
|
|
depends=('gnutls' 'libtiff>=4.0.0' 'libpng>=1.5.7' 'krb5' 'avahi' 'libusb')
|
2014-09-19 18:54:04 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
# install client.conf man page and config file
|
|
|
|
|
install -dm755 ${pkgdir}/usr/share/man/man5
|
|
|
|
|
install -Dm644 ${srcdir}/${pkgbase}-${pkgver}/man/client.conf.5 ${pkgdir}/usr/share/man/man5/
|
|
|
|
|
install -dm755 -g lp ${pkgdir}/etc/cups
|
|
|
|
|
touch ${pkgdir}/etc/cups/client.conf
|
|
|
|
|
echo "# see 'man client.conf'" >> ${pkgdir}/etc/cups/client.conf
|
2014-10-31 16:40:29 +00:00
|
|
|
|
echo "ServerName /run/cups/cups.sock # alternative: ServerName hostname-or-ip-address[:port] of a remote server" >> ${pkgdir}/etc/cups/client.conf
|
2014-09-19 18:54:04 +00:00
|
|
|
|
chgrp -R lp ${pkgdir}/etc/cups
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
2014-11-14 23:36:52 +00:00
|
|
|
|
etc/pam.d/cups)
|
2014-09-19 18:54:04 +00:00
|
|
|
|
depends=('acl' 'pam' "libcups>=${pkgver}" 'cups-filters' 'bc' 'colord'
|
2014-10-31 16:40:29 +00:00
|
|
|
|
'dbus' 'systemd' 'libpaper' 'hicolor-icon-theme')
|
2014-09-19 18:54:04 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
# install ssl directory where to store the certs, solves some samba issues
|
|
|
|
|
install -dm700 -g lp ${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 lp ${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
|
|
|
|
|
|
2015-09-14 23:39:15 +00:00
|
|
|
|
# comment out all conversion rules which use any of the removed filters that are now part of cups-filters
|
2014-09-19 18:54:04 +00:00
|
|
|
|
perl -p -i -e 's:^(.*\s+bannertops\s*)$:#\1:' $pkgdir/usr/share/cups/mime/mime.convs
|
2014-11-14 23:36:52 +00:00
|
|
|
|
|
2014-11-12 20:25:11 +00:00
|
|
|
|
# comment out unnecessary PageLogFormat entry
|
|
|
|
|
sed -i -e 's:PageLogFormat:#PageLogFormat:' $pkgdir/etc/cups/cupsd.conf*
|
2014-09-19 18:54:04 +00:00
|
|
|
|
}
|