summaryrefslogtreecommitdiff
path: root/print/hplip3/pkg-install
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2009-04-28 21:27:54 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2009-04-28 21:27:54 +0000
commitb6bb8c3d3a17625aa826094130b3d84530b6dae4 (patch)
treef2de4a4d4b2f5c3fcbd1ee2ea6cce6d571bfb5f7 /print/hplip3/pkg-install
parente892f2bbcdaf08e461fb47a64eee749e1a02fe85 (diff)
Diffstat (limited to 'print/hplip3/pkg-install')
-rw-r--r--print/hplip3/pkg-install19
1 files changed, 0 insertions, 19 deletions
diff --git a/print/hplip3/pkg-install b/print/hplip3/pkg-install
deleted file mode 100644
index e6f2dc26c7ed..000000000000
--- a/print/hplip3/pkg-install
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-USER=hplip
-GROUP=operator
-UID=116
-
-DLLFILE=${PKG_PREFIX}/etc/sane.d/dll.conf
-
-case $2 in
-POST-INSTALL)
- echo "hpaio" >> ${DLLFILE}
- ;;
-
-POST-DEINSTALL)
- cp ${DLLFILE} ${DLLFILE}.orig
- cat ${DLLFILE}.orig | grep -v hpaio > ${DLLFILE}
- rm ${DLLFILE}.orig
- ;;
-esac