mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
sysutils/scanbd: Add new port
scanbd looks to be the continuation of scanbuttond, it accomplishes the same tasks, but supports all scanners from scanbuttond plus all the scanners supported by SANE. It uses dbus for communication and can also signal device insertion and removal. Upstream has moved to gitlab, so this is the last corresponding release based on the last SourceForge release (with some minor documentation updates). WWW: https://sourceforge.net/projects/scanbd/ PR: 271816
This commit is contained in:
committed by
Robert Clausecker
parent
e17738bb40
commit
8ffec20dfd
@@ -1324,6 +1324,7 @@
|
||||
SUBDIR += savelogs
|
||||
SUBDIR += scalpel
|
||||
SUBDIR += scan_ffs
|
||||
SUBDIR += scanbd
|
||||
SUBDIR += scanbuttond
|
||||
SUBDIR += scanmem
|
||||
SUBDIR += scct
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
PORTNAME= scanbd
|
||||
DISTVERSION= 1.5.1
|
||||
CATEGORIES= sysutils
|
||||
|
||||
MAINTAINER= trueos@norwegianrockcat.com
|
||||
COMMENT= Scanner button daemon
|
||||
WWW= https://sourceforge.net/projects/scanbd/
|
||||
|
||||
LICENSE= GPLv2
|
||||
|
||||
BUILD_DEPENDS= sane-config:graphics/sane-backends
|
||||
LIB_DEPENDS= libdbus-1.so:devel/dbus \
|
||||
libudev.so:devel/libudev-devd \
|
||||
libconfuse.so:devel/libconfuse
|
||||
RUN_DEPENDS= bash:shells/bash \
|
||||
scanimage:graphics/sane-backends
|
||||
|
||||
USES= gettext-runtime gmake pkgconfig shebangfix
|
||||
|
||||
USE_GITLAB= yes
|
||||
GL_ACCOUNT= sane-project/frontend
|
||||
GL_PROJECT= scanbd
|
||||
GL_COMMIT= 4503640d202c06510f21848a684e221f613f324b
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
CONFIGURE_ARGS+= --with-user --with-group
|
||||
|
||||
SHEBANG_GLOB= *.script
|
||||
|
||||
USE_RC_SUBR= scanbd
|
||||
|
||||
SUB_FILES= scanbd
|
||||
|
||||
post-install:
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/scanbd ${STAGEDIR}${PREFIX}/etc/rc.d/scanbd
|
||||
|
||||
.include <bsd.port.mk>
|
||||
@@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1685858862
|
||||
SHA256 (sane-project/frontend-scanbd-4503640d202c06510f21848a684e221f613f324b_GL0.tar.gz) = 085d6c0e54048d3ab002f2d9b2a08d31ee3751d04c16cb7ed8826d58d06a54d6
|
||||
SIZE (sane-project/frontend-scanbd-4503640d202c06510f21848a684e221f613f324b_GL0.tar.gz) = 473189
|
||||
Executable
+16
@@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
# PROVIDE: scanbd
|
||||
# REQUIRE: DAEMON FILESYSTEMS dbus
|
||||
# KEYWORD:
|
||||
|
||||
. /etc/rc.subr
|
||||
|
||||
name=scanbd
|
||||
# scanbd_user=saned # Fix this
|
||||
rcvar=scanbd_enable
|
||||
command_args=""
|
||||
command="%%PREFIX%%/sbin/${name}"
|
||||
|
||||
load_rc_config $name
|
||||
run_rc_command "$1"
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
scanbd is daemon that listens for scanner button presses and can run scripts.
|
||||
|
||||
From the project page:
|
||||
|
||||
scanbd is a scanner button daemon. It polls the scanner buttons
|
||||
looking for buttons pressed or function knob changes or other scanner
|
||||
events as paper inserts / removals and at the same time allows also
|
||||
scan-applications to access the scanners. If buttons are pressed,
|
||||
etc., various actions can be submitted (scan, copy, email, ...) via
|
||||
action scripts. The function knob values are passed to the
|
||||
action-scripts as well. Scan actions are also signaled via dbus. This
|
||||
can be useful for foreign applications. Scans can also be triggered
|
||||
via dbus from foreign applications. On platforms which support
|
||||
signaling of dynamic device insertion / removal (libudev, dbus, hal)
|
||||
scanbd supports this as well. scanbd can use all sane-backends or some
|
||||
special backends from the (old) scanbuttond project. Supported
|
||||
platforms: Linux, FreeBSD, NetBSD, OpenBSD
|
||||
@@ -0,0 +1,17 @@
|
||||
%%ETCDIR%%/scripts/action.script
|
||||
%%ETCDIR%%/scripts/example.script
|
||||
%%ETCDIR%%/scripts/insert.script
|
||||
%%ETCDIR%%/scripts/scanadf.script
|
||||
%%ETCDIR%%/scripts/test.script
|
||||
%%ETCDIR%%/scanbd.conf
|
||||
%%ETCDIR%%/scanner.d/avision.conf
|
||||
%%ETCDIR%%/scanner.d/canon.conf
|
||||
%%ETCDIR%%/scanner.d/fujitsu.conf
|
||||
%%ETCDIR%%/scanner.d/hp.conf
|
||||
%%ETCDIR%%/scanner.d/pixma.conf
|
||||
%%ETCDIR%%/scanner.d/plustek.conf
|
||||
%%ETCDIR%%/scanner.d/snapscan.conf
|
||||
sbin/scanbd
|
||||
sbin/scanbm
|
||||
man/man8/scanbm.8.gz
|
||||
man/man8/scanbd.8.gz
|
||||
Reference in New Issue
Block a user