89 lines
3.3 KiB
Text
89 lines
3.3 KiB
Text
# Template file for 'cups'
|
|
pkgname=cups
|
|
version=1.5.3
|
|
revision=7
|
|
patch_args="-Np1"
|
|
homepage="http://www.cups.org/"
|
|
license="GPL-2"
|
|
distfiles="ftp://ftp.easysw.com/pub/cups/${version}/cups-${version}-source.tar.bz2"
|
|
depends="libcups>=${version}_${revision} cups-filters"
|
|
makedepends="automake acl-devel jpeg-devel libpng-devel>=1.5.10 tiff-devel openssl-devel pam-devel mit-krb5-devel poppler-devel libusb-devel avahi-libs-devel systemd-devel gnutls-devel"
|
|
short_desc="Common Unix Printing System"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
checksum=9d716a8ffcefdaff1c37f4a4b590f1d74ff9ff72383a18f3c883c9235907f93d
|
|
long_desc="
|
|
The Common UNIX Printing System (or CUPS(tm)) is a printing system and general
|
|
replacement for lpd and the like. It supports the Internet Printing Protocol
|
|
(IPP), and has its own filtering driver model for handling various document types."
|
|
|
|
make_dirs="
|
|
/var/cache/cups/rss 0750 root root
|
|
/var/run/cups/certs 0750 root root
|
|
/var/log/cups 0750 root root
|
|
/var/spool/cups/tmp 0750 root root
|
|
/etc/cups/ssl 0700 root lp"
|
|
|
|
subpackages="libcups cups-devel"
|
|
systemd_services="cups.socket on"
|
|
gtk_iconcache_dirs="/usr/share/icons/hicolor"
|
|
|
|
conf_files="
|
|
/etc/cups/cupsd.conf
|
|
/etc/cups/snmp.conf
|
|
/etc/cups/printers.conf
|
|
/etc/cups/classes.conf
|
|
/etc/cups/client.conf
|
|
/etc/cups/subscriptions.conf
|
|
/etc/dbus-1/system.d/cups.conf
|
|
/etc/logrotate.d/cups
|
|
/etc/pam.d/cups"
|
|
|
|
pre_configure() {
|
|
aclocal -I config-scripts
|
|
autoconf -I config-scripts
|
|
}
|
|
|
|
do_configure() {
|
|
./configure ${CONFIGURE_SHARED_ARGS} --libdir=/usr/lib \
|
|
--enable-acl --enable-dbus --enable-raw-printing \
|
|
--enable-threads --with-logdir=/var/log/cups \
|
|
--with-docdir=/usr/share/cups/doc --with-cups-user=daemon \
|
|
--with-cups-group=lp --enable-pam=yes --disable-ldap \
|
|
--enable-avahi --enable-pam --enable-ssl \
|
|
--with-systemdsystemunitdir=/lib/systemd/system \
|
|
--with-menudir=/usr/share/applications
|
|
}
|
|
|
|
do_build() {
|
|
make ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
make BUILDROOT=${DESTDIR} install
|
|
# Remove sysvinit scripts.
|
|
rm -rf ${DESTDIR}/etc/rc.d
|
|
# Serial backend needs to run as root (Fedora bug #212577).
|
|
chmod 700 ${DESTDIR}/usr/lib/cups/backend/serial
|
|
# compress some driver files, adopted from Fedora
|
|
find ${DESTDIR}/usr/share/cups/model -name "*.ppd"|xargs gzip -n9f
|
|
# install some more configuration files that will get filled by cupsd
|
|
for f in printers classes client subscriptions; do
|
|
touch ${DESTDIR}/etc/cups/${f}.conf
|
|
done
|
|
echo "# see 'man client.conf'" >> ${DESTDIR}/etc/cups/client.conf
|
|
echo "ServerName /var/run/cups/cups.sock" >> ${DESTDIR}/etc/cups/client.conf
|
|
echo "# alternative: ServerName hostname-or-ip-address[:port] of a remote server" >> \
|
|
${DESTDIR}/etc/cups/client.conf
|
|
# fix .desktop file
|
|
sed -i 's|^Exec=htmlview http://localhost:631/|Exec=xdg-open http://localhost:631/|g' \
|
|
${DESTDIR}/usr/share/applications/cups.desktop
|
|
# Install pam and logrotate files.
|
|
vinstall ${FILESDIR}/cups.pam 644 etc/pam.d cups
|
|
vinstall ${FILESDIR}/cups.logrotate 644 etc/logrotate.d cups
|
|
|
|
# Remove files provided by cups-filters (obsolete in 1.6 as well).
|
|
rm -f ${DESTDIR}/usr/lib/cups/backend/{parallel,serial}
|
|
rm -f ${DESTDIR}/usr/lib/cups/filter/{commandtoescpx,commandtopclx,imagetops,imagetoraster,pdftops,rastertoescpx,rastertopclx,texttops}
|
|
rm -f ${DESTDIR}/usr/share/cups/banners/{classified,confidential,secret,standard,topsecret,unclassified}
|
|
rm -f ${DESTDIR}/usr/share/cups/data/testprint
|
|
}
|