vp-build/srcpkgs/cups/template

120 lines
3.7 KiB
Bash
Raw Normal View History

2012-05-16 10:58:32 +02:00
# Template file for 'cups'
pkgname=cups
2015-02-10 17:36:28 +01:00
version=2.0.2
revision=2
2012-05-16 10:58:32 +02:00
patch_args="-Np1"
short_desc="Common Unix Printing System"
maintainer="Juan RP <xtraeme@gmail.com>"
2012-07-27 09:34:25 +02:00
homepage="http://www.cups.org/"
license="GPL-2"
2013-07-13 06:49:46 +02:00
distfiles="http://www.cups.org/software/${version}/cups-${version}-source.tar.gz"
2015-02-10 17:36:28 +01:00
checksum=5c54b0012a7b76cb76147f5476008026392272eb2322ccd38c02df96ec72aea7
2012-05-16 10:58:32 +02:00
2014-11-24 12:28:21 +01:00
hostmakedepends="automake pkg-config poppler-utils gnutls-devel avahi-libs-devel"
makedepends="acl-devel libjpeg-turbo-devel libpng-devel tiff-devel
2014-11-24 12:28:21 +01:00
gnutls-devel pam-devel poppler-devel libusb-devel avahi-libs-devel
$(vopt_if systemd systemd-devel)"
depends="xdg-utils"
conf_files="
/etc/cups/cupsd.conf
/etc/cups/snmp.conf
/etc/cups/printers.conf
/etc/cups/classes.conf
/etc/cups/subscriptions.conf
/etc/dbus-1/system.d/cups.conf
/etc/pam.d/cups"
make_dirs="
/var/cache/cups/rss 0750 root lp
/var/log/cups 0750 root root
/var/spool/cups 0755 root lp
/etc/cups/ssl 0700 root lp"
# Package build options
build_options="systemd"
2012-05-16 10:58:32 +02:00
pre_configure() {
aclocal -I config-scripts
autoconf -I config-scripts
}
do_configure() {
2014-11-24 12:28:21 +01:00
if [ "$CROSS_BUILD" ]; then
CC=cc AR= RANLIB= CFLAGS=-Os LDFLAGS= ./configure
make -C cups libcups.a
make -C man mantohtml
mkdir cross-tools
cp man/mantohtml cross-tools
make clean
fi
./configure ${configure_args} --libdir=/usr/lib \
2012-05-16 10:58:32 +02:00
--enable-acl --enable-dbus --enable-raw-printing \
--enable-threads --with-logdir=/var/log/cups \
--with-docdir=/usr/share/cups/doc --disable-gssapi \
--with-cups-user=daemon --with-cups-group=lp --enable-relro \
2014-11-24 12:28:21 +01:00
--enable-avahi --enable-pam --enable-ssl \
--with-menudir=/usr/share/applications --with-xinetd=/etc/xinetd.d \
--with-optim="${CFLAGS}" $(vopt_with systemd) \
--without-perl --without-php --without-python
2012-05-16 10:58:32 +02:00
}
do_build() {
2013-05-06 16:16:48 +02:00
# Do not run genstrings binary in cross builds.
if [ "$CROSS_BUILD" ]; then
sed -e '/.\/genstrings.*/d' -i ppdc/Makefile
2014-11-24 12:28:21 +01:00
sed -e "s,./mantohtml,${wrksrc}/cross-tools/mantohtml,g" -i man/Makefile
2013-05-06 16:16:48 +02:00
fi
2012-05-16 10:58:32 +02:00
make ${makejobs}
}
do_install() {
make BUILDROOT=${DESTDIR} install
# Remove sysvinit scripts.
rm -rf ${DESTDIR}/etc/rc.d
2012-07-27 09:34:25 +02:00
rm -rf ${DESTDIR}/etc/init.d
2012-05-16 10:58:32 +02:00
# 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
2012-05-16 10:58:32 +02:00
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
2012-11-16 00:23:04 +01:00
# Install pam file
2012-05-16 10:58:32 +02:00
vinstall ${FILESDIR}/cups.pam 644 etc/pam.d cups
2012-07-27 09:34:25 +02:00
# Remove files provided by cups-filters.
rm -f ${DESTDIR}/usr/share/cups/banners/*
2012-07-27 09:34:25 +02:00
rm -f ${DESTDIR}/usr/share/cups/data/testprint
# comment out all conversion rules which use any of the removed filters
2012-07-27 09:34:25 +02:00
perl -p -i -e 's:^(.*\s+bannertops\s*)$:#\1:' \
${DESTDIR}/usr/share/cups/mime/mime.convs
2014-11-24 12:28:21 +01:00
# comment out unnecessary PageLogFormat entry
sed -i -e 's:PageLogFormat:#PageLogFormat:' ${DESTDIR}/etc/cups/cupsd.conf*
2014-10-13 13:21:47 +02:00
2014-11-24 12:28:21 +01:00
# runit service
2014-10-13 13:21:47 +02:00
vsv cupsd
2012-05-16 10:58:32 +02:00
}
libcups_package() {
short_desc+=" - client runtime shared libraries"
conf_files="/etc/cups/client.conf"
pkg_install() {
2013-07-13 06:49:46 +02:00
vmove "usr/lib/*.so.*"
vmove etc/cups/client.conf
vmove usr/share/man/man5/client.conf.5
}
}
cups-devel_package() {
2014-07-15 20:12:11 +02:00
depends="zlib-devel libcups>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/bin/cups-config
2013-07-13 06:49:46 +02:00
vmove "usr/lib/*.so"
}
}