void-packages/srcpkgs/hplip/template

56 lines
1.8 KiB
Plaintext
Raw Normal View History

2012-05-18 19:01:18 +00:00
# Template file for 'hplip'
pkgname=hplip
2014-07-15 15:53:16 +00:00
version=3.14.6
2014-07-15 19:22:09 +00:00
revision=2
#XXX: pyqt pkgs for python gui
hostmakedepends="pkg-config automake libtool"
2014-07-15 19:28:33 +00:00
makedepends="libressl-devel python-devel libxml2-python cups-devel
sane-devel ghostscript-devel net-snmp-devel libusb-devel libjpeg-turbo-devel
dbus-devel polkit-devel foomatic-db foomatic-db-engine desktop-file-utils"
depends="python foomatic-db foomatic-db-engine desktop-file-utils"
conf_files="/etc/hp/hplip.conf"
make_dirs="/var/lib/hp 0755 root root"
2012-05-18 19:01:18 +00:00
short_desc="HP Linux Imaging and Printing"
maintainer="Juan RP <xtraeme@gmail.com>"
2012-07-09 16:46:02 +00:00
homepage="http://hplipopensource.com/"
license="GPL-2"
distfiles="$SOURCEFORGE_SITE/$pkgname/$pkgname-$version.tar.gz"
2014-07-15 15:53:16 +00:00
checksum=a57233cd0e2db1dcf1d34d8b90c6a9d3e027e522695aada6c3c411a839868b8e
2012-05-18 19:01:18 +00:00
2012-12-03 09:50:58 +00:00
do_configure() {
# https://bugs.archlinux.org/task/30085 - hack found in Gentoo
# Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip
# The hpcups driver does not use foomatic-rip
local i
for i in ppd/hpijs/*.ppd.gz ; do
rm -f ${i}.temp
gunzip -c ${i} | sed 's/foomatic-rip-hplip/foomatic-rip/g' | gzip > ${i}.temp
2012-12-03 09:50:58 +00:00
mv ${i}.temp ${i}
done
./configure ${configure_args} --disable-gui-build \
2012-12-03 09:50:58 +00:00
--disable-foomatic-rip-hplip-install \
--enable-foomatic-ppd-install \
--enable-hpcups-install \
--enable-new-hpcups \
--enable-cups-ppd-install \
--enable-cups-drv-install \
--enable-hpijs-install \
--enable-foomatic-drv-install \
--enable-pp-build \
--enable-udev-acl-rules
}
do_build() {
make ${makejobs}
2012-12-03 09:50:58 +00:00
}
do_install() {
make rulesdir=/usr/lib/udev/rules.d DESTDIR=${DESTDIR} install
# remove config provided by sane and autostart of hp-daemon
rm -rf ${DESTDIR}/etc/{sane.d,xdg}
# remove HAL .fdi file because HAL is no longer used
rm -rf ${DESTDIR}/usr/share/hal
2013-11-10 06:18:01 +00:00
rm -rf ${DESTDIR}/var
2012-05-18 19:01:18 +00:00
}