debian/0000775000000000000000000000000012276107670007200 5ustar debian/source/0000775000000000000000000000000012165560742010500 5ustar debian/source/format0000664000000000000000000000001412165560742011706 0ustar 3.0 (quilt) debian/sane-utils.config0000664000000000000000000000053412165560742012455 0ustar #!/bin/sh set -e . /usr/share/debconf/confmodule if [ -e /etc/default/saned ]; then . /etc/default/saned if [ "$RUN" != "yes" ]; then db_set sane-utils/saned_run false else db_set sane-utils/saned_run true fi fi db_input medium sane-utils/saned_run || true db_input medium sane-utils/saned_scanner_group || true db_go || true debian/libsane-common.links0000664000000000000000000000011712165560742013144 0ustar usr/share/doc/libsane/html/sane-mfgs.html usr/share/doc/libsane/supported.html debian/sane-utils.postrm0000664000000000000000000000027312165560742012534 0ustar #!/bin/sh set -e if [ "$1" = purge ]; then if [ -x /usr/sbin/update-inetd ]; then update-inetd --remove sane-port update-inetd --remove "## sane-port" fi fi #DEBHELPER# debian/libsane.preinst0000664000000000000000000000237512165560742012232 0ustar #!/bin/sh set -e # From http://wiki.debian.org/DpkgConffileHandling # Remove a no-longer used conffile rm_conffile() { PKGNAME="$1" CONFFILE="$2" if [ -e "$CONFFILE" ]; then md5sum="`md5sum \"$CONFFILE\" | sed -e \"s/ .*//\"`" old_md5sum="`dpkg-query -W -f='${Conffiles}' $PKGNAME | sed -n -e \"\\\\' $CONFFILE '{s/ obsolete$//;s/.* //p}\"`" if [ "$md5sum" != "$old_md5sum" ]; then echo "Obsolete conffile $CONFFILE has been modified by you." echo "Saving as $CONFFILE.dpkg-bak ..." mv -f "$CONFFILE" "$CONFFILE".dpkg-bak else echo "Removing obsolete conffile $CONFFILE ..." rm -f "$CONFFILE" fi fi } if [ "$1" = install ] || [ "$1" = upgrade ]; then ## Transition from the old-style udev setup to the old-style dh_installudev setup ## Then dh_installudev will take care of the transition to the new dh_installudev setup if [ -e "/etc/udev/rules.d/025_libsane.rules" ]; then mv /etc/udev/rules.d/025_libsane.rules /etc/udev/rules.d/z60_libsane.rules fi ## Remove obsolete /etc/modprobe.d/libsane conffile if dpkg --compare-versions "$2" le "1.0.19-25"; then rm_conffile libsane /etc/modprobe.d/libsane fi fi #DEBHELPER# debian/sane-utils.templates0000664000000000000000000000276012165560742013211 0ustar Template: sane-utils/saned_run Type: boolean Default: false _Description: Enable saned as a standalone server? The saned server, when enabled, makes scanners available over the network. . There are two ways of running saned: - as an inetd service, started by the inetd superserver. In this mode, saned is started on demand when a client connects to the server; - as a standalone daemon, started at system boot. In this mode, saned runs in the background all by itself and listens for client connections. . When run in standalone mode, saned advertises itself on the network and can be detected automatically by the SANE clients with no configuration on the client side. You still need to configure the server to accept connections from your clients. This feature is experimental and requires a running Avahi daemon. . Accept this option if you want to make use of this feature. Template: sane-utils/saned_scanner_group Type: boolean Default: true _Description: Add saned user to the scanner group? The saned server, when enabled, makes scanners available over the network. By applying different permissions to the different scanners connected to your machine, you can control which ones will be made available over the network. . Read /usr/share/doc/sane-utils/README.Debian for details on how to manage permissions for saned. By default, saned is run under the saned user and group. . Accept this option if you want to make all your scanners available over the network without restriction. debian/sane-utils.saned.init0000664000000000000000000000445012236360667013250 0ustar #! /bin/sh # ### BEGIN INIT INFO # Provides: saned # Required-Start: $syslog $local_fs $remote_fs # Required-Stop: $syslog $local_fs $remote_fs # Should-Start: dbus avahi # Should-Stop: dbus avahi # Default-Start: 2 3 4 5 # Default-Stop: 1 # Short-Description: SANE network scanner server # Description: saned makes local scanners available over the # network. ### END INIT INFO PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin DAEMON=/usr/sbin/saned NAME=saned DESC="SANE network scanner server" test -x $DAEMON || exit 0 RUN=no RUN_AS_USER=saned # Include saned defaults if available if [ -f /etc/default/saned ] ; then . /etc/default/saned fi if [ "x$RUN" != "xyes" ] ; then echo "$NAME disabled; edit /etc/default/saned" exit 0 fi DAEMON_OPTS="-a $RUN_AS_USER" set -e case "$1" in start) echo -n "Starting $DESC: " start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \ --exec $DAEMON -- $DAEMON_OPTS echo "$NAME." ;; stop) echo -n "Stopping $DESC: " start-stop-daemon --stop --oknodo --quiet --pidfile /var/run/$NAME.pid \ --exec $DAEMON echo "$NAME." ;; force-reload) # check whether $DAEMON is running. If so, restart start-stop-daemon --stop --test --quiet --pidfile \ /var/run/$NAME.pid --exec $DAEMON \ && $0 restart \ || exit 0 ;; restart) echo -n "Restarting $DESC: " start-stop-daemon --stop --oknodo --quiet --pidfile \ /var/run/$NAME.pid --exec $DAEMON sleep 1 start-stop-daemon --start --quiet --pidfile \ /var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS echo "$NAME." ;; status) if [ -s /var/run/$NAME.pid ]; then RUNNING=$(cat /var/run/$NAME.pid) if [ -d /proc/$RUNNING ]; then if [ $(readlink /proc/$RUNNING/exe) = $DAEMON ]; then echo "$NAME is running." exit 0 fi fi # No such PID, or executables don't match echo "$NAME is not running, but pidfile existed." rm /var/run/$NAME.pid exit 1 else rm -f /var/run/$NAME.pid echo "$NAME not running." exit 1 fi ;; *) N=/etc/init.d/$NAME echo "Usage: $N {start|stop|restart|force-reload}" >&2 exit 1 ;; esac exit 0 debian/sane-utils.README.Debian0000664000000000000000000000473112165560742013331 0ustar sane-utils (sane-backends) for Debian ------------------------------------- This package contains various utilities shipped with sane-backends, among which saned, the network scanner daemon used to share scanners over the network. saned setup ----------- Please read this file carefully to setup your saned server properly. -> Setting up permissions for saned -> Running saned from inetd -> Running saned as a standalone daemon Setting up permissions for saned -------------------------------- A saned user and a saned group have been added to your system; it is highly recommended to run saned as user and group saned and NEVER EVER as root. To operate properly, saned must be able to access your scanners; different setups are possible, depending on who should be able to use the scanners: * saned users only: => device owned by saned:saned, saned:root or root:saned * saned users and local users: => device owned by saned:scanner, local users added to the scanner group * local users only: => device owned by root:scanner, local users added to the scanner group By default the saned user is NOT part of the scanner group. If you add the saned user to the scanner group, ALL scanners will be made available over the network without restrictions. Do that if you do not want/need to restrict one or more scanners to local users only. If you intend to use saned with a USB scanner, note that the permissions for USB scanners are handled by udev. See /usr/share/doc/libsane/README.Debian.gz for more information on setting up appropriate permissions. Running saned from inetd ------------------------ To enable saned in the default configuration (running as user and group saned), use update-inetd to enable the service: # update-inetd --enable sane-port To disable saned, use update-inetd to disable the service: # update-inetd --disable sane-port If you want to run saned under another user and/or group, edit /etc/inetd.conf and change saned:saned for the appropriate user:group combination. Running saned as a standalone daemon ------------------------------------ When run as a standalone daemon, saned can advertise its services over the network, and the SANE clients will automatically discover the saned servers (provided the clients support this). To run saned as a standalone server: - if you were previously running saned from inetd, disable it (see above) - run dpkg-reconfigure sane-utils -- Julien BLACHE , Mon, 05 May 2008 19:29:28 +0200 debian/libsane-dev.install0000664000000000000000000000020612165560742012757 0ustar usr/bin/sane-config usr/include/ usr/lib/*/*.a usr/lib/*/*.so usr/lib/*/sane/*.a usr/lib/*/sane/*.so usr/share/man/man1/sane-config.1 debian/libsane.README.Debian0000664000000000000000000001620612165560742012662 0ustar libsane (sane-backends) for Debian : ------------------------------------ GENERAL ------- The configuration files for Debian releases of SANE are located in /etc/sane.d. The dll pseudo-backend is responsible for loading other SANE backends that provide support for the actual hardware. Which backends are loaded is determined by the contents of the /etc/sane.d/dll.conf file. The dll pseudo-backend also checks for dll.conf snippets in /etc/sane.d/dll.d; any file in this directory that doesn't look like a backup file will be treated as a configuration snippet. This facility is used by packages providing external backends (like libsane-extras, hpoj or hplip) to "register" the backends they provide without much hassle. Each backend has a configuration file which specifies which devices, access methods, options etc. should be used by this backend. The format and content of each configuration file is documented in the manpage for the backend, e.g. sane-plustek (5). For USB and some SCSI scanners, the parameters can be auto-detected, and manual configuration is not required. If the auto-detection fails, read the next paragraph. Again, see the manpage for your backend for more information. For SCSI devices (mostly scanners), the configuration files use the /dev/scanner device; /dev/scanner is a symbolic link to the appropriate SCSI device node. It's up to you to create this symbolic link, once you will have determined which device node it needs to point to. Use the sane-find-scanner command in the sane-utils package to determine which SCSI device your scanner is attached to. The sane-find-scanner utility also discovers USB scanners. It can be a good idea to try running sane-find-scanner as root to ensure there will be no permissions problems while attempting to detect your devices. DOCUMENTATION ------------- For information on configuring and trouble-shooting the various SANE components, please refer to the manual pages listed below: Regarding: Read: ----------------- ------------------------------------------ General sane(7) -- your starting point scanimage scanimage(1) xscanimage xscanimage(1) saned saned(8) xcam xcam(1) Dynamic loading sane-dll(5) Backends See sane-(5). Each backend comes with a manual page in section 5 of the manual system. SETUP ----- In this day and age, SANE integrates with udev and ConsoleKit seemlessly; this means users physically logged into the machine (as opposed to users logged in remotely via SSH) have access to the scanners by default. The solution proposed below is a legacy setup that remains valid for sharing scanners with saned or for systems that don't use ConsoleKit. Note that this is only a proposed solution, you are free to come up with and implement whatever access control mechanism you see fit. This package added a scanner group to your system. We recommend you add to this group the users that should be able to access your scanner(s), and make sure the appropriate device files (eg. /dev/sg0, ...) are owned by root and the scanner group, with permissions set to 0660. For USB and SCSI scanners, the permissions will be automatically set by udev; the /lib/udev/rules.d/60-libsane.rules file contains a list of USB and SCSI scanners supported by SANE. The udev rules now use ACLs instead of standard UNIX permissions; the scanner group is added to the ACLs for the corresponding device(s) with read+write permissions. If your scanner is missing from the list, do NOT modify this file; it is not a configuration file, which means your changes WILL be overwritten upon upgrade. Instead, create /etc/udev/rules.d/60-libsane.rules and add the udev rule for your scanner in this file. /lib/udev/rules.d/60-libsane.rules will then be ignored by udev and /etc/udev/rules.d/60-libsane.rules will be used instead. Feel free to file a bug report (severity wishlist) against the libsane package to get your scanner added; please mention which backend you use and how well the scanner is supported (basic, good, ...). Note: please do not file bugs requesting the addition of scanners that aren't supported by the libsane package. For these devices, bugs should be filed against the Debian package providing support for the device, if such a package does exist. udev will automatically set up the permissions and ownership on the device node corresponding to your scanner according to the rules defined in the libsane.rules file (default is root:scanner, 0664). If you want to execute a script when your scanner is plugged in, add RUN+="/path/to/script" to the rule matching your scanner. TROUBLESHOOTING --------------- If your scanner does not work, edit the file /etc/sane.d/dll.conf. Verify that your scanner is not commented out. You may need to comment out all other scanners in dll.conf. It shouldn't matter, but sometimes it does. The most common cause for a non-working scanner is inappropriate permissions on the device. So your first reflex should be to check the permissions of the device used to access your scanner, e.g. /dev/sg0 or the device pointed to by /dev/scanner. If you encounter any problems with getting your device(s) recognized, try setting the various environment variables that are there to assist in debugging such problems. The environment variables are documented in the relevant manual pages. For example, to get the maximum amount of debug information when testing a Mustek scanner, set environment variables SANE_DEBUG_DLL, SANE_DEBUG_MUSTEK, and SANE_DEBUG_SANEI_SCSI to 128 and then invoke scanimage or whatever program you're trying to debug. For a Mustek SCSI scanner at /dev/scanner, you might want to invoke scanimage as follows: scanimage -d mustek:/dev/scanner -h If this works, you could try to acquire an image with: scanimage -d mustek:/dev/scanner > t.pnm If you are not sure what generic SCSI device your scanner is connected to, try the command sane-find-scanner (sane-utils package). It is normally sufficient to invoke the program without any arguments. Invoking this command should produce output similar to this: $ sane-find-scanner sane-find-scanner: found "MUSTEK MFC-06000CZ 1.01" at device /dev/sge sane-find-scanner will help you discover your USB scanner, too. REPORTING BUGS -------------- When reporting a bug, be it to the SANE developers or to the Debian bug tracking system, pleases always provide: - the full version of libsane - the backend you're using - the configuration of the backend - the debug output, obtained by setting the environment variable SANE_DEBUG_ to a value of 255 (see above, TROUBLESHOOTING) Without that, your bug report will take longer to be processed, because we'll need to ask you for each of these items. Please help us help you. UNSUPPORTED DEVICES AND SPECIFIC NOTES -------------------------------------- If your scanner (or camera, or whatever) is not supported by the regular SANE distribution, have a look at the libsane-extras package which contains some backends not yet included in the regular SANE distribution. -- Julien BLACHE , Wed, 16 Feb 2011 19:00:12 +0100 debian/sane-utils.postinst0000664000000000000000000000244312165560742013074 0ustar #!/bin/sh set -e . /usr/share/debconf/confmodule SANED_DEFAULT=/etc/default/saned saned_eh () { echo "saned couldn't start; check your inetd configuration and README.Debian" } if [ "$1" = "configure" ] || [ "$1" = "reconfigure" ]; then db_get sane-utils/saned_run RUN_SANED="$RET" db_get sane-utils/saned_scanner_group SANED_IN_SCANNER="$RET" # Add saned service, disabled by default if [ -x /usr/sbin/update-inetd ]; then update-inetd --add "## sane-port\tstream\ttcp\tnowait\tsaned:saned\t/usr/sbin/saned saned" fi # Stop debconf; output to stdout after this point. update-inetd needs debconf. db_stop # Create saned user/group if they do not exist if ! getent passwd | grep -q "^saned:"; then echo "Adding saned group and user..." adduser --quiet --system --no-create-home --group saned || true fi if [ "$SANED_IN_SCANNER" = "true" ]; then adduser --quiet saned scanner else if id saned | grep -q "groups=.*\(scanner\)"; then deluser --quiet saned scanner fi fi if [ -e $SANED_DEFAULT ]; then if [ "$RUN_SANED" = "true" ]; then RUN_SANED=yes else RUN_SANED=no fi sed -e "s/^ *RUN=.*/RUN=$RUN_SANED/" < $SANED_DEFAULT > $SANED_DEFAULT.tmp mv -f $SANED_DEFAULT.tmp $SANED_DEFAULT fi fi #DEBHELPER# debian/control0000664000000000000000000001342212276107665010611 0ustar Source: sane-backends Section: graphics Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian QA Group Standards-Version: 3.9.4 Build-Depends: dh-autoreconf, chrpath, debhelper (>= 9), gettext, libavahi-client-dev, libcam-dev [kfreebsd-any], libgphoto2-dev, libieee1284-3-dev [!hurd-i386], libjpeg-dev, libltdl3-dev, libtiff5-dev, libusb-1.0-0-dev [!hurd-i386], libv4l-dev [linux-any], pkg-config, po-debconf, texlive, texlive-latex-extra, xutils-dev Homepage: http://www.sane-project.org Package: sane-utils Architecture: any Multi-Arch: foreign Depends: adduser, update-inetd, ${misc:Depends}, ${shlibs:Depends} Suggests: avahi-daemon, unpaper Replaces: libsane (<< 1.0.11-4) Description: API library for scanners -- utilities SANE stands for "Scanner Access Now Easy" and is an application programming interface (API) that provides standardized access to any raster image scanner hardware (flatbed scanner, hand-held scanner, video- and still-cameras, frame-grabbers, etc.). The SANE standard is free and its discussion and development are open to everybody. The current source code is written to support several operating systems, including GNU/Linux, OS/2, Win32 and various Unices and is available under the GNU General Public License (commercial applications and backends are welcome, too, however). . This package includes the command line frontend scanimage, the saned server and the sane-find-scanner utility, along with their documentation. Package: libsane-common Section: libs Architecture: any Multi-Arch: foreign Depends: ${misc:Depends} Replaces: libsane (<< 1.0.22-4~) Description: API library for scanners -- documentation and support files SANE stands for "Scanner Access Now Easy" and is an application programming interface (API) that provides standardized access to any raster image scanner hardware (flatbed scanner, hand-held scanner, video- and still-cameras, frame-grabbers, etc.). The SANE standard is free and its discussion and development are open to everybody. The current source code is written to support several operating systems, including GNU/Linux, OS/2, Win32 and various Unices and is available under the GNU General Public License (commercial applications and backends are welcome, too, however). . This package includes documentation for libsane, such as the man pages and list of supported scanners, and support files (i18n data). Package: libsane Section: libs Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} Depends: acl [linux-any], adduser, libsane-common (= ${binary:Version}), udev [linux-any] | makedev [linux-any], ${misc:Depends}, ${shlibs:Depends} Suggests: avahi-daemon, hplip, hpoj, libsane-extras, sane-utils (>= ${binary:Version}) Replaces: libsane-extras (<< 1.0.18.14) Description: API library for scanners SANE stands for "Scanner Access Now Easy" and is an application programming interface (API) that provides standardized access to any raster image scanner hardware (flatbed scanner, hand-held scanner, video- and still-cameras, frame-grabbers, etc.). The SANE standard is free and its discussion and development are open to everybody. The current source code is written to support several operating systems, including GNU/Linux, OS/2, Win32 and various Unices and is available under the GNU General Public License (commercial applications and backends are welcome, too, however). . This package includes the backends for many scanners. A libsane-extras package containing some not-yet-included backends is available separately. . Graphical frontends for sane are available in the packages sane and xsane. Command line frontend scanimage, saned and sane-find-scanner are available in the sane-utils package. Package: libsane-dev Section: libdevel Architecture: any Depends: libavahi-client-dev, libcam-dev [kfreebsd-any], libgphoto2-dev, libieee1284-3-dev [!hurd-i386], libjpeg-dev, libsane (= ${binary:Version}), libtiff5-dev, libusb-1.0-0-dev [!hurd-i386], libv4l-dev [linux-any], pkg-config, ${misc:Depends} Suggests: libsane-extras-dev Replaces: libsane-extras-dev (<< 1.0.18.14) Description: API development library for scanners [development files] SANE stands for "Scanner Access Now Easy" and is an application programming interface (API) that provides standardized access to any raster image scanner hardware (flatbed scanner, hand-held scanner, video- and still-cameras, frame-grabbers, etc.). The SANE standard is free and its discussion and development are open to everybody. The current source code is written to support several operating systems, including GNU/Linux, OS/2, Win32 and various Unices and is available under the GNU General Public License (commercial applications and backends are welcome, too, however). . This package contains the files needed to build your applications using SANE. Package: libsane-dbg Section: debug Priority: extra Architecture: any Depends: libsane (= ${binary:Version}), ${misc:Depends} Suggests: libsane-extras-dbg Replaces: libsane-extras-dbg (<< 1.0.18.14) Description: API development library for scanners [debug symbols] SANE stands for "Scanner Access Now Easy" and is an application programming interface (API) that provides standardized access to any raster image scanner hardware (flatbed scanner, hand-held scanner, video- and still-cameras, frame-grabbers, etc.). The SANE standard is free and its discussion and development are open to everybody. The current source code is written to support several operating systems, including GNU/Linux, OS/2, Win32 and various Unices and is available under the GNU General Public License (commercial applications and backends are welcome, too, however). . This package contains the debugging symbols for the SANE backends. debian/libsane.install0000664000000000000000000000011712165560742012204 0ustar etc/ usr/lib/*/*.la usr/lib/*/*.so.* usr/lib/*/sane/*.la usr/lib/*/sane/*.so.* debian/libsane.postinst0000664000000000000000000000126312165560742012424 0ustar #!/bin/sh set -e case "$1" in configure) # Add the scanner system group if it doesn't exist if ! getent group | grep -q "^scanner:"; then echo "Adding scanner group..." addgroup --quiet --system scanner || true fi if [ "$(uname -s)" = "Linux" ]; then if [ -e /dev/MAKEDEV ]; then # create /dev/parport* if [ ! -c /dev/parport0 ]; then (cd /dev && ./MAKEDEV parport) || true fi # create /dev/sg* if [ ! -c /dev/sg0 ]; then (cd /dev && ./MAKEDEV sg) || true fi fi fi ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "$0 called with unknown argument '$1'" >&2 exit 1 ;; esac #DEBHELPER# debian/copyright0000664000000000000000000000356612165560742011145 0ustar This package was first debianized by Kevin Dalley . It is now maintained by Julien BLACHE , initially with the help of Aurélien JARNO . It was downloaded from : ftp://ftp.sane-project.org/pub/sane/ Upstream Authors : see /usr/share/doc/libsane/AUTHORS.gz Verbatim copy of the LICENSE : ******************************************************************************** Mon Nov 30 22:41:58 1998 This files attempts to clarify the licensing situation for the SANE distribution. In case of doubt, the copyright information contained in each file overrides what is said here. SANE consists of three parts each of which has its own licensing terms: * The frontend programs. These programs are generally protected by the GNU General Public License. (See file COPYING.) * The backend libraries. Backend libraries are protected by the GNU General Public License (see file COPYING), but as an exception, it is permissible to link against such a library without affecting the licensing status of the program that uses the libraries. For details, see the copyright notice at the head of the backend files (e.g., backend/dll.c). Note that some of the backends have additional licensing constraints. E.g., the DC210 backend uses JPG code that is licensed as described in backend/djpeg.README.gz. * The SANE API and network protocol as put forth in the standard document. The standard is considered to be in the public domain. Anyone is free to implement SANE interface conforming applications or libraries in any way he or she sees fit. ******************************************************************************** On Debian systems, the complete text of the GNU General Public License (the "COPYING" file referred to above) can be found in the /usr/share/common-licenses/GPL-2 file. debian/sane-utils.saned.default0000664000000000000000000000022212165560742013717 0ustar # Defaults for the saned initscript, from sane-utils # Set to yes to start saned RUN=no # Set to the user saned should run as RUN_AS_USER=saned debian/sane-utils.install0000664000000000000000000000040512165560742012653 0ustar etc/sane.d/saned.conf usr/bin/gamma4scanimage usr/bin/sane-find-scanner usr/bin/scanimage usr/sbin/saned usr/share/man/man1/gamma4scanimage.1 usr/share/man/man1/sane-find-scanner.1 usr/share/man/man1/scanimage.1 usr/share/man/man8/saned.8 tools/umax_pp usr/bin debian/changelog0000664000000000000000000025347212276106647011072 0ustar sane-backends (1.0.23-3ubuntu3) trusty; urgency=medium * Build against libgphoto2-dev instead of libgphoto2-6-dev. (Reverts Ubuntu specific delta) -- Martin Pitt Mon, 10 Feb 2014 09:28:15 +0100 sane-backends (1.0.23-3ubuntu2) trusty; urgency=medium * debian/{control,rules}: Build with dh-autoreconf for new libtool. * debian/patches/*.patch: Patch Makefile.am too, not just Makefile.in. -- William Grant Sun, 15 Dec 2013 12:10:33 +0000 sane-backends (1.0.23-3ubuntu1) trusty; urgency=low * Merge with Debian unstable. Remaining Ubuntu changes: - Build against libgphoto2-6 and libtiff5. - Demote libsane-extras* from Recommends to Suggests, as long as this package is in universe. - Demote sane-utils from Recommends to Suggests. We do not want to have an init script for saned laying around, which is disabled by default anyway. - debian/rules: Link using -Bsymbolic-functions (startup time optimization). - debian/rules, debian/sane-utils.saned.init: Don't call init script on shutdown, it's unnecessary. - disable_v4l.patch, fix_avahi_error_paths.patch, fix-for-broken-tpu-scan.patch: See patch headers. -- Martin Pitt Wed, 06 Nov 2013 07:31:42 +0100 sane-backends (1.0.23-3) unstable; urgency=low * QA upload * revert move to libtiff5-dev -- Rene Engelhard Sat, 06 Jul 2013 15:20:16 +0200 sane-backends (1.0.23-2) unstable; urgency=low * QA upload. * Add sane-desc.c_debian_mods.patch to series file. (Closes: #714993) -- Markus Koschany Fri, 05 Jul 2013 11:52:37 +0200 sane-backends (1.0.23-1) unstable; urgency=low * QA upload. * Upload to unstable. * This package has been orphaned. Set maintainer to the Debian QA Group. * Bump compat level to 9 (was 5) and require debhelper >= 9. * debian/control: - sane-utils: Inherit Section: graphics from source package sane-backends. - Remove versioned dependencies. They are trivially satisfied. * Drop the following patches. They are merged upstream now. - fix_v4l_build.patch - hurd_path_max_fix.patch - sane_desc_udev+acl.patch - scanimage_man_batch_start.patch - udev_usb_suspend.patch - xerox_mfp_add_scx_4623fw.patch - xerox_mfp_fix_usb_device.patch * Drop disable_rpath.patch because the RPATH is already removed by chrpath in debian/rules. * Rebase and refresh all other patches against the new upstream relase. * debian/rules: - Simplify debian/rules by using dh sequencer. - Build with --parallel and with autotools_dev. - Enable all hardening build flags. - Install umax_pp with sane-utils.install. * Build-Depend on libtiff5-dev. Thanks to Michael Terry for the patch. (Closes: #681079) * Build-Depend on libusb-1.0-0-dev and enable libusb1.0 support in debian/rules. Thanks to Martin Pitt for the report and Whoopie for the patch. (Closes: #687137) -- Markus Koschany Thu, 04 Jul 2013 17:41:47 +0200 sane-backends (1.0.23-0.1~experimental1) experimental; urgency=low * Non-maintainer upload. * New upstream version. -- John Paul Adrian Glaubitz Sat, 23 Feb 2013 20:12:58 +0100 sane-backends (1.0.22-7.4) unstable; urgency=low * Non-maintainer upload. * Compress all binaries with xz to free up some space on CD#1. -- Cyril Brulebois Mon, 17 Sep 2012 16:44:07 +0200 sane-backends (1.0.22-7.3) unstable; urgency=low * Non-maintainer upload. * Fix build failure on kfreebsd (closes: #680234). -- Michael Gilbert Sun, 15 Jul 2012 17:07:15 -0400 sane-backends (1.0.22-7.2) unstable; urgency=low * Non-maintainer upload. * Set sane-utils as 'Multi-Arch: foreign' (closes: #675797). -- Michael Gilbert Thu, 28 Jun 2012 16:53:15 -0400 sane-backends (1.0.22-7.1) unstable; urgency=low * Non-maintainer upload. * Fix pending l10n issues. Debconf translations: - Catalan; (Innocent De Marchi). Closes: #646505 - Slovak (Slavko). Closes: #639235 - Polish (Michał Kułach). Closes: #658351 -- Christian Perrier Wed, 28 Mar 2012 07:39:00 +0200 sane-backends (1.0.22-7) unstable; urgency=low * debian/patches/sane-desc.c_debian_mods.patch: + Updated; do not output a timestamp as part of the udev rules file header, it is a source of conflict for multiarch. -- Julien BLACHE Mon, 21 Nov 2011 15:39:26 +0100 sane-backends (1.0.22-6) unstable; urgency=low * debian/control: + Fix ibcam-dev -> libcam-dev typo. -- Julien BLACHE Thu, 21 Jul 2011 17:54:48 +0200 sane-backends (1.0.22-5) unstable; urgency=low * debian/control: + Replace explicit architecture lists with appropriate architecture wildcards; patch from Robert Millan (closes: #634518). + Use kfreebsd-any architecture wildcard for libcam-dev in libsane-dev's Depends field, getting rid of the custom libcam-dev substvar. + Use linux-any architecture wildcard for udev | makedev, acl in libsane's Depends field, gettind rid of the custom udev substvar. * debian/rules: + Remove custom libcam-dev and udev substvars in dh_gencontrol call. -- Julien BLACHE Wed, 20 Jul 2011 19:52:51 +0200 sane-backends (1.0.22-4) unstable; urgency=low * Multiarch conversion. * debian/control: + Bump debhelper build-dep to >= 8.1.3 for multiarch. + Add Pre-Depends: ${misc:Pre-Depends} to libsane. + Tag libsane with Multi-Arch: same. + New Multi-Arch: foreign libsane-common binary package. + Add libsane-common dependency to libsane. * debian/rules: + Use multiarch path. + libsane.install.in is now libsane-common.install.in. + libsane.docs is gone. + Create the multiarch pkgconfig directory and install the .pc file here. + Stop creating the gt68xx firmware directory in libsane. + Move HAL FDI file to libsane-common. + Disable SNMP support explicitly (needs Net-SNMP 5.6). * debian/libsane-dev.install: + Adapt for multiarch. * debian/libsane.install.in -> debian/libsane.install: + Adapt for multiarch, transfer multiarch-incompatible content to libsane-common. * debian/libsane-common.install.in: + Adopt multiarch-incompatible content previously found in libsane. * debian/libsane.links -> debian/libsane-common.links: + Transfer documentation symlinks to libsane-common. * debian/libsane-dev.dirs: + Removed; pkgconfig directory created in debian/rules. * debian/patches/multiarch_dll_search_path.patch: + Added; make /usr/lib/arch_triplet/sane the default location for SANE backends but keep /usr/lib/sane as a fallback for now. * debian/patches/multiarch_manpages_libdir.patch: + Added; use a generic /usr/lib/arch_triplet/sane path for backend location in the man pages (otherwise substituted from LIBDIR). -- Julien BLACHE Mon, 13 Jun 2011 17:07:05 +0200 sane-backends (1.0.22-3) unstable; urgency=low * debian/control: + Bump Standards-Version to 3.9.2 (no changes). * debian/libsane.NEWS: + Added; document the switch to ACLs starting with 1.0.22-1. * debconf translations: + pt_BR.po: update from Eder L. Marques (closes: #619612). + nl.po: courtesy of Jeroen Schot (closes: #627043). -- Julien BLACHE Thu, 02 Jun 2011 14:57:53 +0200 sane-backends (1.0.22-2) unstable; urgency=low * debian/patches/udev_usb_suspend.patch: + Added; switch to using power/control instead of power/level for device power setting, if available. * debian/patches/xerox_mfp_fix_usb_devices.patch: + Added; fix detection/handling of USB devices in xerox_mfp (closes: #617307). * debian/patches/xerox_mfp_add_scx_4623fw.patch: + Added; add IDs for the Samsung SCX-4623FW. * debian/patches/hurd_path_max_fix.patch: + Added; fix build on HURD where PATH_MAX is not defined (closes: #616299). * debian/patches/scanimage_man_batch_start.patch: + Added; fix improper documentation of --batch-start (closes: #614009). -- Julien BLACHE Sat, 12 Mar 2011 11:32:32 +0100 sane-backends (1.0.22-1) unstable; urgency=low * New upstream release. + epson2: reject scan area settings that would lead to a division by zero (closes: #581181). * debian/control: + Bump Standards-Version to 3.9.1 (no changes). + Demote libsane-extras-* to Recommends again. * debian/rules: + Add acl (>= 2.2.49-4) to udev substvar for ACL utilities in /bin. + Use sane-desc -m udev+acl (closes: #591767, #612815). * debian/libsane.README.Debian: + Update; mention ConsoleKit and the udev rules now using ACLs. * debian/patches/sane-desc_udev+acl.patch: + Added; compared to experimental, setfacl is now in /bin. * debian/patches/fix_xerox_mfp_color_mode.patch, debian/patches/use_libsane_matched_for_scsi.patch, debian/patches/allow_dll.d_symlinks.patch, debian/patches/saned_exit_avahi_process.patch, debian/patches/xerox_mfp_new_ids.patch, debian/patches/scsi_perfection_2450.patch, debian/patches/scsi_scanjet_4c.patch, debian/patches/genesys_disable_raw_data_log.patch, debian/patches/fix_epson2_commands.patch, debian/patches/fix_epson2_cancel.patch: + Removed; merged upstream. -- Julien BLACHE Wed, 16 Feb 2011 19:00:55 +0100 sane-backends (1.0.22~git1.0.21-157-g126c70d-1) experimental; urgency=low * Git snapshot. * debian/rules: + Add dependency on acl to libsane when depending on udev. + Use udev+acl mode when generating udev rules. + debian/patches/sane-desc_udev+acl.patch: + Added; try using ACLs for USB scanners in an effort to deconflict with MFP devices. -- Julien BLACHE Wed, 21 Jul 2010 18:36:37 +0200 sane-backends (1.0.22~git1.0.21-87-g323ed01-1) experimental; urgency=low * Git snapshot. + genesys now has some support for LiDE 100 & 200 (closes: #586189). -- Julien BLACHE Wed, 23 Jun 2010 18:37:59 +0200 sane-backends (1.0.21-9) unstable; urgency=low * debian/patches/fix_epson2_cancel.patch: + Added; fix handling of scanner errors by sending a cancel command (closes: #597922). -- Julien BLACHE Sun, 12 Dec 2010 16:31:25 +0100 sane-backends (1.0.21-8) unstable; urgency=low * debian/patches/fix_epson2_commands.patch: + Added; fix list of supported commands for levels D1 and D2 (closes: #582066). -- Julien BLACHE Mon, 29 Nov 2010 18:12:16 +0100 sane-backends (1.0.21-7) unstable; urgency=low * debian/patches/genesys_disable_raw_data_log.patch: + Added; disable raw data logging. Raw data logging was enabled upstream at some point before 1.0.21 most probably as an oversight when committing new code. When enabled, a raw.pnm file is left behind in the cwd when using the genesys backend (closes: 602995). * debconf translations: + Properly install vi.po, mistakenly put in po/ instead of debian/po in 1.0.21-6. -- Julien BLACHE Mon, 15 Nov 2010 19:00:34 +0100 sane-backends (1.0.21-6) unstable; urgency=low * debian/patches/saned_exit_avahi_process.patch: + Added; exit Avahi process on error/loop termination. * debian/patches/xerox_mfp_new_ids.patch: + Added; add USB IDs for supported machines in xerox_mfp (closes: #601748). * debian/patches/scsi_perfection_2450.patch: + Added; add SCSI IDs for the Perfection 2450 via FireWire (closes: #601810). * debian/patches/scsi_scanjet_4c.patch: + Added; add SCSI IDs for the ScanJet 4c (closes: #601656). * debconf translations: + vi.po: courtesy of Clytie Siddall (closes: #601530). -- Julien BLACHE Sat, 06 Nov 2010 11:21:40 +0100 sane-backends (1.0.21-5) unstable; urgency=low * debconf translations: + cs.po: courtesy of Miroslav Kure (closes: #598338). + zh_CN.po: courtesy of YunQiang Su (closes: #599590, #599591). + da.po: courtesy of Joe Dalton (closes: #599642). + eu.po: courtesy of Iñaki Larrañaga Murgoitio (closes: #599810). + es.po: courtesy of Camaleón (closes: #600342). + fi.po: courtesy of Esko Arajärvi (closes: #600514). -- Julien BLACHE Mon, 18 Oct 2010 10:08:12 +0200 sane-backends (1.0.21-4) unstable; urgency=low * debconf translations: + it.po: courtesy of Luca Monducci (closes: #593722). -- Julien BLACHE Sun, 05 Sep 2010 09:44:28 +0200 sane-backends (1.0.21-3) unstable; urgency=low * debian/control: + Bump Standards-Version to 3.9.0 (no changes). * debian/patches/use_libsane_matched_for_scsi.patch: + Added; use libsane_matched for SCSI scanners rules too. * debian/patches/allow_dll.d_symlinks.patch: + Added; allow symlinks under /etc/sane.d/dll.d (closes: #588392). -- Julien BLACHE Fri, 09 Jul 2010 18:21:58 +0200 sane-backends (1.0.21-2) unstable; urgency=low * debian/patches/fix_xerox_mfp_color_mode.patch: + Added; fix xerox_mfp color mode, from upstream (closes: #583789). -- Julien BLACHE Tue, 01 Jun 2010 19:34:19 +0200 sane-backends (1.0.21-1) unstable; urgency=low * New upstream release (closes: #579254). * Moved to source format 3.0 (quilt). * debian/control: + Removed dpatch build-dep. + Add dependency on pkg-config to libsane-dev. * debian/rules: + Removed dpatch code. + --disable-fork-process -> --enable-pthread. + Install the pkg-config file for sane-backends. * All patches refreshed, tagged with DEP-3 headers. -- Julien BLACHE Mon, 26 Apr 2010 19:59:08 +0200 sane-backends (1.0.20-14) unstable; urgency=low * debian/control: + Depend and build-depend on libjpeg-dev instead of libjpeg62-dev (closes: #569240). + Bump Standards-Version to 3.8.4 (no changes). * debian/sane-utils.saned.init: + Add $remote_fs to Required-Start & Required-Stop. * debconf translations: + fr.po: courtesy of Christian Perrier (closes: #564595). -- Julien BLACHE Sat, 13 Feb 2010 10:03:12 +0100 sane-backends (1.0.20-13) unstable; urgency=low * debian/patches/34_genesys_gl841_cal_fix.dpatch: + Added; fix calibration on gl841-based scanners (closes: #563163). * debconf translations: + ja.po: courtesy of Hideki Yamane (closes: #564294). -- Julien BLACHE Sun, 10 Jan 2010 15:21:22 +0100 sane-backends (1.0.20-12) unstable; urgency=low * debian/patches/33_epson2_update.dpatch: + Update epson2 from git HEAD (closes: #534746). * debconf translations: + de.po: courtesy of Helge Kreutzmann (closes: #562709). + sv.po: courtesy of Martin Bagge (closes: #562931). + ru.po: courtesy of Yuri Kozlov (closes: #563076). + pt.po: courtesy of Américo Monteiro (closes: #563174). -- Julien BLACHE Fri, 01 Jan 2010 12:49:10 +0100 sane-backends (1.0.20-11) unstable; urgency=medium * Urgency set to medium to unbreak saned in testing. * debian/patches/12_saned_polling_fix.dpatch: + Added; unbreak saned's polling loop for more than 1 fds (closes: #562248). * debian/patches/13_saned_aliasing_fix.dpatch: + Added; fix strict aliasing issues in saned for gcc 4.4. -- Julien BLACHE Thu, 24 Dec 2009 17:33:35 +0100 sane-backends (1.0.20-10) unstable; urgency=low * debian/libsane.README.Debian: + Updated udev-related information and instructions, added a note about only adding rules for scanners supported by libsane. * debian/sane-utils.saned.init: + Add missing --oknodo in s-s-d stop call in restart case (closes: #558648). * debian/sane-utils.templates: + Rework the standalone saned template and mention Avahi explicitly (closes: #556877). * debian/patches/22_dll_backend_conf.dpatch: + Updated; use better wording for the comment about the net backend in dll.conf (closes: #556912). * debian/patches/32_epson_perfection636.dpatch: + Added; add the Epson Perfection 636 SCSI scanner (closes: #555971). -- Julien BLACHE Sat, 12 Dec 2009 11:33:09 +0100 sane-backends (1.0.20-9) unstable; urgency=low * debian/patches/11_udev_147.dpatch: + Added; remove NAME= from SCSI rules as udev 147 complains about it. Also remove support for kernel < 2.6.22. (closes: #555443). -- Julien BLACHE Mon, 09 Nov 2009 21:01:32 +0100 sane-backends (1.0.20-8) unstable; urgency=low * debian/rules: + Fix nostrip builds, thanks to Tollef Fog Heen (closes: #548152). * debian/patches/31_genesys_raw_log_fix.dpatch: + Added; add missing check when logging raw data. Patch by Tollef Fog Heen (closes: #548154). -- Julien BLACHE Sat, 26 Sep 2009 11:44:04 +0200 sane-backends (1.0.20-7) unstable; urgency=low * debian/control: + Demote avahi-daemon to a Suggests (closes: #543335). + libv4l-dev is not available on hurd-i386 either (closes: #545995). * debian/patches/30_xerox_samsung_ids.dpatch: + Added; add USB IDs for various Samsung-branded MFPs (closes: #545290). -- Julien BLACHE Fri, 11 Sep 2009 19:16:15 +0200 sane-backends (1.0.20-6) unstable; urgency=low * debian/control: + Bump Standards-Version to 3.8.3 (no changes). * debian/rules: + Empty dependency_libs in all .la files. * debian/patches/10_sanei_usb_update.dpatch: + Added; from git, favour the interface detected by sanei_usb_init(). This helps with some machines like the Canon MP730. -- Julien BLACHE Sat, 29 Aug 2009 16:55:34 +0200 sane-backends (1.0.20-5) unstable; urgency=low * debian/control: + Bump Standards-Version to 3.8.2 (no changes). * debian/patches/08_cardscan_usbids.dpatch: + Added; fix USB IDs for the CardScan 800c (closes: #528829). * debian/patches/09_po_update_es_add_gl.dpatch: + Added; update es translation and add new gl translation, courtesy of Miguel Bouzada . * debian/patches/20_disable_rpath.dpatch: + Added; do not use rpath. For some reason this decided to pop up now, even though the previous revision of the package did not suffer from this. Go figure. -- Julien BLACHE Fri, 26 Jun 2009 14:39:41 +0200 sane-backends (1.0.20-4) unstable; urgency=low * debian/rules: + Serialize autotools/patch/configure for parallel builds, now that parallel builds are possible with the upstream build system (closes: #506620). * debian/control: + Bump libsane-extras dependencies to 1.0.20.1. * debian/sane-utils.saned.init: + Add status action, taken from iaxmodem (closes: #528265). * debian/patches/07_tools_missing_libcam.dpatch: + Added; fix sane_find_scanner build on kFreeBSD by adding missing SCSI libraries. From upstream via Aurélien JARNO (closes: #528594). -- Julien BLACHE Thu, 14 May 2009 12:06:47 +0200 sane-backends (1.0.20-3) unstable; urgency=low * debian/patches/06_cap_always_settable.dpatch: + Added; add back SANE_CAP_ALWAYS_SETTABLE which was mistakenly removed from SANE 1.0.20 (closes: #527675, #527682). -- Julien BLACHE Fri, 08 May 2009 21:03:56 +0200 sane-backends (1.0.20-2) unstable; urgency=low * Update previous changelog entry wrt #519101 resolution. * debian/patches/04_udev_rules_fix.dpatch: + Added; fix udev rules, use ATTRS instead of ATTR (closes: #527196). * debian/patches/05_saned_avahi_fds_fix.dpatch: + Added; fix a possible net backend hang when saned is run in debug mode. Could also happen in standalone mode, but a lot less likely. -- Julien BLACHE Wed, 06 May 2009 12:02:59 +0200 sane-backends (1.0.20-1) unstable; urgency=low * New upstream release. + Unsupported devices are no longer included in the udev rules (closes: #519101). * debian/control: + Bump Standards-Version to 3.8.1 (no changes). + Add build-dep on libv4l-dev. + Add dependency on libv4l-dev to libsane-dev. + Move libsane-dbg to debug section. * debian/rules: + Use DESTDIR at install time. + Remove rpath from sane-find-scanner. * debian/patches/01_missing_pthreads.dpatch: + Added; new build system breaks build when using pthreads. * debian/patches/02_frontends_libs.dpatch: + Added; only link the frontends with the libraries they need. * debian/patches/03_libsane_deps.dpatch: + Added; reduce libsane.so deps to the bare minimum. * debian/patches/11_minimum_linkage.dpatch: + Removed; build system was redone using automake and this isn't needed anymore. * debian/patches/12_new_configure.dpatch: + Removed; not needed anymore, due to #11 going away. * debian/patches/21_sane-config.in_no_rpath.dpatch: + Updated; updated for new build system. * debian/patches/23_unneeded_doc.dpatch: + Updated; updated for new build system. * debian/patches/22_dll_backend_conf.dpatch: + Updated; dll.d support has been merged upstream, update dll.conf header. * debian/patches/01_manpages_fixes.dpatch, 02_pixma_update.dpatch, 03_snapscan_usb_ftok_fix.dpatch, 04_sane-desc_hal_new.dpatch, 05_hp_timing_fix.dpatch, 06_sanei_scsi_attach_fix.dpatch, 07_epson2_be_nice.dpatch, 08_epson2_be_nice_to_saned.dpatch, 09_avision_fixes.dpatch, 10_sm3840_unbreak_sane_open.dpatch, 30_new_saned.dpatch, 31_sanei_pthread_64bit_fix.dpatch, 32_net_backend_standard_fix.dpatch, 33_scanimage_options_fix.dpatch, 40_fujitsu_fixes.dpatch, 41_epjitsu_fixes.dpatch: + Removed; fixes and enhancements taken from upstream or merged upstream in this release. -- Julien BLACHE Mon, 04 May 2009 12:45:50 +0200 sane-backends (1.0.19-26) unstable; urgency=low * debian/rules: + Do not generate /etc/modprobe.d/libsane anymore. * debian/libsane.preinst: + Remove obsolete /etc/modprobe.d/libsane conffile. * debian/patches/30_new_saned.dpatch: + Updated; workaround for backends writing to stdin/stderr/stdout when run via inetd, which breaks the network dialog and causes the remote net backend to crash (closes: #516982). -- Julien BLACHE Wed, 04 Mar 2009 10:49:42 +0100 sane-backends (1.0.19-25) unstable; urgency=low * debian/rules: + Remove comment bit, breaking configure invocation. * debian/control: + Add ${misc:Depends}. * debian/sane-utils.postrm: + Make the script set -e. * debian/patches/30_new_saned.dpatch: + Updated; (net backend) do not attempt to lock the Avahi polling thread before stopping it, it now produces a deadlock. Looks like a change/fix was made in Avahi (closes: #513122). -- Julien BLACHE Wed, 18 Feb 2009 11:50:31 +0100 sane-backends (1.0.19-24) unstable; urgency=low * debian/rules: + Enable use of pthread instead of fork for reader processes. * debian/libsane.postinst: + Remove code dealing with devfs/hotplug/hotplug-ng. * debian/patches/11_minimum_linkage.dpatch: + Update; add $(LIBPTHREAD) to library dependencies where needed. -- Julien BLACHE Sun, 15 Feb 2009 11:50:13 +0100 sane-backends (1.0.19-23) unstable; urgency=low * debian/patches/09_avision_fixes.dpatch: + Updated; fix reader task handling to not signal the whole process group erroneously. * debconf translations: + it.po: courtesy of Luca Monducci (closes: #507563). -- Julien BLACHE Tue, 09 Dec 2008 16:14:06 +0100 sane-backends (1.0.19-22) unstable; urgency=low * debian/patches/41_epjitsu_fixes.dpatch: + Added; from CVS, fix double-free issues in epjitsu (closes: #506750). -- Julien BLACHE Mon, 24 Nov 2008 15:02:04 +0100 sane-backends (1.0.19-21) unstable; urgency=low * debian/rules: + Use an error handler for saned's init. * debian/sane-utils.postinst: + Added error handler for saned init (closes: #493745). * debconf translations: + es.po: courtesy of Ignacio Mondino (closes: #499202). -- Julien BLACHE Fri, 19 Sep 2008 10:50:04 +0200 sane-backends (1.0.19-20) unstable; urgency=low * debian/control: + Make sane-utils depend on update-inetd (>= 4.31) which won't break with debconf. * debian/sane-utils.postinst: + update-inetd needs debconf sometimes, so keep debconf enabled until after the update-inetd call. -- Julien BLACHE Fri, 05 Sep 2008 11:04:59 +0200 sane-backends (1.0.19-19) unstable; urgency=low * debian/rules: + Install umax_pp into sane-utils (closes: #496833). * debian/patches/40_fujitsu_fixes.dpatch: + Added; upstream backport of fujitsu backend fixes, fixes a string initialization issue in config file parsing, adds color mode for the fi-6130, 6230, 6140, 6240 and fixes fi-6230 hangs at wakeup from powersave mode. Thanks to M. Allan Noah for providing a backport (closes: #494156). -- Julien BLACHE Thu, 28 Aug 2008 10:31:35 +0200 sane-backends (1.0.19-18) unstable; urgency=low * debian/patches/10_sm3840_unbreak_sane_open.dpatch: + Added; from CVS, fix the way sane_open() checks for sanei_usb_open() errors (closes: #496249). * debconf translations: + ja.po: courtesy of Hideki Yamane (closes: #493568). -- Julien BLACHE Wed, 27 Aug 2008 19:58:15 +0200 sane-backends (1.0.19-17) unstable; urgency=low * debian/patches/33_scanimage_options_fix.dpatch: + Added; get the option descriptor for option 0 before getting the value for option 0. This is a standard-compliance fix needed for proper operation with the net backend. * debian/patches/30_new_saned.dpatch: + Updated; fix initialization of runas_{g,u}id and ngroups, preventing failures later on in some cases (saned -a without username). -- Julien BLACHE Tue, 05 Aug 2008 12:10:44 +0200 sane-backends (1.0.19-16) unstable; urgency=low * debian/patches/30_new_saned.dpatch: + Updated; Fix seteuid()/setegid() call order and set supplemental group list (closes: #493084). -- Julien BLACHE Thu, 31 Jul 2008 11:46:53 +0200 sane-backends (1.0.19-15) unstable; urgency=low * debian/patches/09_avision_fixes.dpatch: + Enable this patch for real. * debian/patches/31_sanei_pthread_64bit_fix.dpatch: + Updated. -- Julien BLACHE Tue, 22 Jul 2008 23:05:50 +0200 sane-backends (1.0.19-14) unstable; urgency=low * debian/patches/32_net_backend_standard_fix.dpatch: + Updated; fix sane_control_option() in the net backend so as to bring the net backend behaviour back in line with standard backends. This should fix some issues reported with the net backend lately. * debian/patches/01_manpages_fixes.dpatch: + Updated; fix some more hyphen vs. minus sign issues. * debian/rules: + Include debug symbols for sane-utils into libsane-dbg. * debian/copyright: + Update. -- Julien BLACHE Sun, 20 Jul 2008 12:51:25 +0200 sane-backends (1.0.19-13) unstable; urgency=low * debian/libsane.README.Debian: + Fix udev rules filename (closes: #490656). * debian/patches/01_manpages_fixes.dpatch: + Updated; fix hyphen vs. minus sign issues reported by lintian. * debian/patches/30_new_saned.dpatch: + Updated; manpage fixes. -- Julien BLACHE Mon, 14 Jul 2008 13:17:44 +0200 sane-backends (1.0.19-12) unstable; urgency=low * debian/control: + Bump Standards-Version to 3.8.0 (no changes). * debian/patches/30_new_saned.dpatch: + Updated; properly terminate child processes when exiting from the debug mode. * debian/patches/32_net_backend_standard_fix.dpatch: + Added; do not reload the option descriptors cache behind the frontend's back in sane_control_option(). Fetch options descriptors in sane_open() so GET_VALUE on option 0 can still work without explicitely getting option descriptor 0 first. * debconf translations: + sv.po: courtesy of Martin Bagge (closes: #487369). -- Julien BLACHE Tue, 24 Jun 2008 22:10:35 +0200 sane-backends (1.0.19-11) unstable; urgency=low * debian/patches/30_new_saned.dpatch: + Updated; lock the Avahi thread before stopping it and tearing down the Avahi objects (closes: #484464). * debian/patches/09_avision_fixes.dpatch: + Added; from CVS, misc avision backend fixes (closes: #474706, #475198). * debconf translations: + ru.po: courtesy of Yuri Kozlov (closes: #481656). -- Julien BLACHE Fri, 06 Jun 2008 17:37:28 +0200 sane-backends (1.0.19-10) unstable; urgency=low * debian/sane-utils.postinst: + Make proper use of debconf !@#%$ (closes: #481442). * debconf translations: + fr.po: update by Christian Perrier (closes: #481439). -- Julien BLACHE Fri, 16 May 2008 19:26:48 +0200 sane-backends (1.0.19-9) unstable; urgency=low * debian/sane-utils.postinst: + Do not attempt to remove saned from the scanner group if it isn't part of the group in the first place (closes: #481288). * debian/patches/31_sanei_pthread_64bit_fix.dpatch: + Added; from CVS, fix sanei_pthread on 64bit platforms. -- Julien BLACHE Thu, 15 May 2008 18:54:37 +0200 sane-backends (1.0.19-8) unstable; urgency=low * Reupload 1.0.19-7 to unstable. * debconf translations: + pt.po: courtesy of Américo Monteiro (closes: #480219). + cs.po: courtesy of Miroslav Kure (closes: #480313). + de.po: courtesy of Helge Kreutzmann (closes: #480366). + vi.po: courtesy of Clytie Siddall (closes: #480483). + fi.po: courtesy of Esko Arajärvi (closes: #480550). + fr.po: update by Christian Perrier. -- Julien BLACHE Wed, 14 May 2008 19:13:29 +0200 sane-backends (1.0.19-7) experimental; urgency=low * Introducing new saned & net backend features. + saned can now run as a standalone daemon and offers mDNS/DNS-SD. The net backend can discover saned servers on the (local) network. * debian/patches/01_manpages_fixes.dpatch: + Fix man warnings in sane-config.1 and sane-mustek_pp.5. * debian/patches/30_new_saned.dpatch: + Added; from CVS HEAD, backport new saned and net backend. * debian/sane-utils.README.Debian: + Enhancements, typo fixes. * debian/sane-utils.templates, debian/sane-utils.config, debian/sane-utils.postinst: + Add a debconf question to automatically add the saned user to the scanner group. + Add a debconf question to enable saned as a standalone daemon. * debian/rules: + Enable Avahi support at configure time. + Call dh_installdebconf. + Call dh_installinit. * debian/control: + Build-Depend on po-debconf, libavahi-client-dev (>= 0.6.4). + sane-utils: add ${misc:Depends} to get the appropriate debconf dependencies. + sane-utils: recommend avahi-daemon. + libsane: recommend avahi-daemon. + libsane-dev: depend on libavahi-client-dev. * debian/sane-utils.saned.init, debian/sane-utils.saned.default: + Add an initscript & default file for saned. * debconf translations: + eu.po: courtesy of Piarres Beobide (closes: #479380, #479808). + fr.po: courtesy of Christian Perrier. + pt_BR.po: courtesy of Eder L. Marques (closes: #479785). + gl.po: courtesy of Jacobo Tarrio (closes: #479838). -- Julien BLACHE Wed, 07 May 2008 18:37:07 +0200 sane-backends (1.0.19-6) unstable; urgency=low * debian/patches/08_epson2_be_nice_to_saned.dpatch: + Added; from CVS, be nice to saned and do not pollute fd 0 (closes: #479052). -- Julien BLACHE Sat, 03 May 2008 16:46:12 +0200 sane-backends (1.0.19-5) unstable; urgency=low * debian/patches/07_epson2_be_nice.dpatch: + Added; from CVS, be nice to other backends and close the scanner device when the device is not recognized (or another error happens) (closes: #476468). -- Julien BLACHE Sat, 19 Apr 2008 17:16:13 +0200 sane-backends (1.0.19-4) unstable; urgency=low * debian/patches/03_snapscan_usb_ftok_fix.dpatch: + Updated; improve the patch by falling back to ftok() for non-libusb devices. * debian/patches/04_sane-desc_hal_new.dpatch: + Added; add support for newer HAL versions. * debian/patches/05_hp_timing_fix.dpatch: + Added; fix timing issue with HP scanners (closes: #472819). * debian/patches/06_sanei_scsi_attach_fix.dpatch: + Added; from CVS, continue to iterate over the list of devices even if an attempt to attach one of the devices fails. * debian/rules: + Generate HAL FDI file for newer HAL versions (closes: #472664). * debian/libsane-dev.doc-base: + Fix doc-base section. -- Julien BLACHE Fri, 28 Mar 2008 22:39:17 +0100 sane-backends (1.0.19-3) unstable; urgency=low * debian/patches/01_disable_epson2.dpatch: + Removed; reenable the epson2 backend. * debian/patches/03_snapscan_usb_ftok_fix.dpatch: + Added; work around the usage of ftok() in the snapscan backend. See the patch description for details (closes: #466855). -- Julien BLACHE Sat, 15 Mar 2008 16:16:38 +0100 sane-backends (1.0.19-2) unstable; urgency=low * debian/patches/02_pixma_update.dpatch: + Added; update pixma backend from CVS, adding support for - Pixma MP210, MP470, MP520, MP610, MultiPASS MP710 - MP140, MP220, MultiPASS MP740 (untested) - MP970 (experimental, untested) (closes: #468270). * debian/rules: + Generate and install HAL fdi file (closes: #466540). * debian/control: + Add update-inetd dependency for sane-utils. * debian/sane-utils.postinst, debian/sane-utils.postrm: + Add support for update-inetd (closes: #426514). * debian/sane-utils.README.Debian: + Document update-inetd usage. -- Julien BLACHE Sat, 01 Mar 2008 14:11:29 +0100 sane-backends (1.0.19-1) unstable; urgency=low * New upstream release. + New backends: cardscan (Corex Cardscan 800c), epjitsu (Epson-based Fujitsu), epson2 (various Epson scanners), hp3900 (HP ScanJet 3970 and more), hp5590 (HP ScanJet 5590 and more), hpljm1005 (HP LaserJet M1005 and more), hs2p (Ricoh IS400 series) + Fix for the pixma backend (closes: #459663). + Regression fix for the avision backend (closes: #458478, #458932). * debian/patches/02_hurd_no_plustek_pp.dpatch: + Removed; merged upstream. * debian/patches/11_minimum_linkage.dpatch: + Updated. * debian/patches/12_new_configure.dpatch: + Updated. * debian/control: + Adjust libsane-extras dependencies for 1.0.19. -- Julien BLACHE Tue, 12 Feb 2008 21:44:19 +0100 sane-backends (1.0.19~cvs20071213-5) unstable; urgency=low * debian/control: + Build-Depends: xutils-dev instead of xutils. + Depend on libsane-extras{,-dev,-dbg} to help fix up the buggy udev rules in libsane-extras. + Promote libgphoto2-2-dev to Depends: for libsane-dev. * debian/patches/02_hurd_no_plustek_pp.dpatch: + Added; do not build plustek_pp on Hurd (closes: #457378). * debian/patches/12_new_configure.dpatch: + Updated. -- Julien BLACHE Mon, 07 Jan 2008 12:07:27 +0100 sane-backends (1.0.19~cvs20071213-4) unstable; urgency=low * debian/patches/11_minimum_linkage.dpatch: + Updated; add libcam for coolscan & umax, remove it for cardscan. -- Julien BLACHE Mon, 31 Dec 2007 14:11:34 +0100 sane-backends (1.0.19~cvs20071213-3) unstable; urgency=low * debian/control: + Tighten relationship with libsane-extras due to the udev rules renaming. -- Julien BLACHE Fri, 28 Dec 2007 11:45:30 +0100 sane-backends (1.0.19~cvs20071213-2) unstable; urgency=low * debian/rules: + Generate udev rules as debian/libsane.udev, clean as needed. + Use dh_installudev. + Remove libsane-dll.* from /usr/lib/sane; libsane.so and libsane-dll.so are the same backend. * debian/libsane.postinst: + Remove udev installation code. * debian/libsane.preinst: + Added; handle upgrade from previous udev code to dh_installudev. * debian/patches/11_minimum_linkage.dpatch: + Added; only link backends to the libraries they need. * debian/patches/12_new_configure.dpatch: + Added; new configure script. * debian/patches/12_gphoto2_link_backend_only.dpatch: + Removed; obsoleted by 11_minimum_linkage.dpatch. * debian/patches/13_new_configure.dpatch: + Removed; now 12_new_configure.dpatch. -- Julien BLACHE Tue, 25 Dec 2007 22:58:26 +0100 sane-backends (1.0.19~cvs20071213-1) unstable; urgency=low * New CVS snapshot. + New backend: hp3900. * debian/control: + Bump Standards-Version to 3.7.3 (no changes). + Bump libsane-extras{,-dev} dependencies/conflicts/replaces to 1.0.18.13. + Remove module-init-tools recommendation, enforced by udev which is a dependency. * debian/rules: + Remove ${module-init-tools} substvar. -- Julien BLACHE Thu, 13 Dec 2007 21:59:02 +0100 sane-backends (1.0.19~cvs20071028-1) unstable; urgency=low * New CVS snapshot. + All backends now declare OPT_NUM_OPTS of type SANE_TYPE_INT (closes: #448162). + Fixed USB IDs for the Epson CX-6600 (closes: #419349). + Added USB IDs for the Epson DX-6000 (closes: #442051). * debian/control: + libsane-dev Recommends: libgphoto2-2-dev. -- Julien BLACHE Sun, 28 Oct 2007 11:17:36 +0100 sane-backends (1.0.19~cvs20070730-1) unstable; urgency=low * New CVS snapshot. + Workaround for CONFIG_USB_SUSPEND (closes: #434276). * debian/control, debian/rules: + Make libsane depend on makedev | udev on Linux (closes: #428220). * debian/libsane.postinst: + Change MAKEDEV invocation to invoke /dev/MAKEDEV instead of /sbin/MAKEDEV. * debian/control: + Do not {build-,}depend on libusb-dev nor libieee1284-dev on hurd-i386 (closes: #434575). + Use ${binary:Version} instead of ${Source-Version}. * debian/rules: + Do not ignore make distclean errors. * debian/patches/30_sanei_scsi_sg_ioctl.dpatch: + Removed; merged upstream. -- Julien BLACHE Mon, 30 Jul 2007 14:03:13 +0200 sane-backends (1.0.19~cvs20070505-3) unstable; urgency=low * debian/patches/30_sanei_scsi_sg_ioctl.dpatch: + Added; use the SG_IO ioctl interface instead of the asynchronous read/write SG3 interface. This allows the use of SCSI scanners in mixed 32/64bit environments, thanks to the ioctl 32bit compatibility layer taking care of the 32/64bit sg_hdr conversion (closes: #420193). If you own a SCSI scanner, please report back on this change; especially if, compared to the previous version (1.0.19~cvs20070505-2): - the scanner backtracks more than it used to with the previous version - you see weird errors OR you see no error and you should be seeing some - performance sucks - resulting image is broken in one way or another - ... -- Julien BLACHE Sun, 20 May 2007 10:46:00 +0200 sane-backends (1.0.19~cvs20070505-2) unstable; urgency=low * debian/patches/01_disable_epson2.dpatch: + Added; disable epson2 backend by default (closes: #422697). -- Julien BLACHE Sat, 12 May 2007 10:37:11 +0200 sane-backends (1.0.19~cvs20070505-1) unstable; urgency=low * New CVS snapshot. + New backend: hp5590. * debian/patches/31_epson_remove_check.dpatch: + Removed; merged upstream. -- Julien BLACHE Sat, 05 May 2007 20:37:07 +0200 sane-backends (1.0.19~cvs20070421-1) unstable; urgency=low * debian/control: + Update Build-Depends for the TeXLive migration. + Removed old Conflicts. + Upgrade libsane-extras minimum version to 1.0.18.6. * debian/rules: + Drop hotplug support. + Drop code for Sarge backports. * debian/libsane.postinst: + Remove old hotplug-ng files, code taken from Ubuntu. * debian/libsane.README.Debian, debian/sane-utils.README.Debian: + Removed hotplug notes. * debian/patches/03_usb_perms_664.dpatch: + Removed; merged upstream. * debian/patches/11_hotplug_wait_for_device.dpatch: + Removed; not needed anymore. * debian/patches/30_udev_long_comment_lines.dpatch: + Removed; merged upstream. * debian/patches/32_microtek2_add_check.dpatch: + Removed; merged upstream. * debian/patches/33_manpages_fixes.dpatch: + Removed; merged upstream. -- Julien BLACHE Sat, 21 Apr 2007 13:33:26 +0200 sane-backends (1.0.18-6) unstable; urgency=low * Enable libieee1284 support on kFreeBSD-amd64 (closes: #413178). * debian/control: + Build-depend on libieee1284-3-dev (>= 0.2.10-5) for all architectures. + libsane-dev depends on libieee1284-3-dev (>= 0.2.10-5) for all architectures. * debian/rules: + Remove the libieee1284-3-dev substitution variable. -- Julien BLACHE Sat, 3 Mar 2007 11:39:33 +0100 sane-backends (1.0.18-5) unstable; urgency=medium * debian/patches/32_microtek2_add_check.dpatch: + Added; Add missing return status check, preventing a segfault later on (closes: #398153). * debian/patches/33_manpages_fixes.dpatch: + Added; fix man warnings in some manpages. -- Julien BLACHE Mon, 8 Jan 2007 19:52:22 +0100 sane-backends (1.0.18-4) unstable; urgency=medium * debian/patches/31_epson_remove_check.dpatch: + Added; Remove bogus check in epson backend get_identity2_information() affecting Stylus CX5xxx models (closes: #399119, #402444). * debian/sane-utils.README.Debian: + Fix typo, the manpage for saned is in section 8 not 1. * debian/control: + libsane-dbg is Priority: extra. + Remove Uploaders. Thank you Aurélien JARNO for your help during these years. -- Julien BLACHE Sat, 6 Jan 2007 18:46:43 +0100 sane-backends (1.0.18-3) unstable; urgency=low * debian/patches/30_udev_long_comment_lines.dpatch: + Added; split very long comment lines in the udev rules file (closes: #376859). * debian/libsane.README.Debian: + Updated; udev no longer sets permissions on /proc/bus/usb/xxx/yyy, /dev/bus/usb/xxx/yyy is used instead now. -- Julien BLACHE Sun, 30 Jul 2006 20:40:09 +0200 sane-backends (1.0.18-2) unstable; urgency=low * debian/control: + Build-Depends: libltdl3-dev, needed to link with libgphoto2-2. + sane-utils Suggests: unpaper. -- Julien BLACHE Tue, 4 Jul 2006 09:09:04 +0200 sane-backends (1.0.18-1) unstable; urgency=low * New upstream release. + New backends: dell1600n_net, hp3500, pixma, stv680 (closes: #360303). + Canon LiDE 60 USBids added to the genesys description file (closes: #366871). * debian/patches/01_usbids.dpatch: + Removed; merged upstream. * debian/patches/26_manpages_spelling_fixes.dpatch: + Removed; merged upstream. * debian/patches/25_glibc_sys_io_h.dpatch: + Removed; merged upstream. * debian/patches/03_usb_perms_664.dpatch: + Updated; the convert-usermap.sh scripts are gone. * debian/patches/04_udev_rules_fix.dpatch: + Removed; merged upstream. * debian/rules: + Use sane-desc to generate the udev rules file and the hotplug data file. + Improve manpage list generation for the libsane package. * debian/control: + Build-Depends: libtiff4-dev, for the dell1600n_net backend. -- Julien BLACHE Mon, 3 Jul 2006 20:30:17 +0200 sane-backends (1.0.17-4) unstable; urgency=low * debian/compat: + Bumped DH_COMPAT to 5. * debian/control: + Bumped Standards-Version to 3.7.2 (no changes). + Build-Depend on debhelper (>= 5.0.0) for DH_COMPAT=5. + New libsane-dbg binary for debugging symbols (closes: #366767). * debian/rules: + Tell dh_strip to put debugging symbols into libsane-dbg. -- Julien BLACHE Fri, 26 May 2006 13:40:01 +0200 sane-backends (1.0.17-3) unstable; urgency=low * debian/control: + Add ${libieee1284-3-dev} to libsane-dev Depends: (closes: #364294). -- Julien BLACHE Sat, 22 Apr 2006 19:58:12 +0200 sane-backends (1.0.17-2) unstable; urgency=low [ Aurélien JARNO ] * debian/control: + Build-depends: libcam-dev on kfreebsd-i386 and kfreebsd-amd64. + Build-depends: !libieee1284-dev on kfreebsd-amd64. + libsane-dev depends: libcam-dev on GNU/kFreeBSD. * debian/patches/25_glibc_sys_io_h.dpatch: + New; check for GNU libc instead of Linux kernel. [ Julien BLACHE ] * debian/patches/02_udev_rules.dpatch: + Removed; coldplugging now works OK, the hotplug script aren't needed anymore (closes: #359800). * debian/patches/03_usb_perms_664.dpatch: + Updated. * debian/patches/04_udev_rules_fix.dpatch: + Added; fix udev rules file so that the rules only run for ACTION=add on the usb subsystem (closes: #359797). * debian/patches/01_usbids.dpatch: + Added; add Epson Stylus CX7800 USB IDs (closes: #350436). * debian/patches/26_manpages_spelling_fixes.dpatch: + Added; various spelling fixes to the manpages (closes: #357568). * debian/control: + Removed Conflicts: on very old SANE versions. + Recommends: module-init-tools (>= 3.2.2-1) (closes: #344541). + Recommends: udev (>= 0.88-1) for a version of udev with working coldplugging support. Let me know if the version can be lowered, thanks. * debian/rules: + Add variable substitution for module-init-tools on Linux. + Add version to the udev variable substitution. -- Julien BLACHE Thu, 13 Apr 2006 21:40:58 +0200 sane-backends (1.0.17-1) unstable; urgency=low Julien BLACHE: * New upstream release. + New backends: hp4200, lexmark, mustek_usb2. + Now ignores EBUSY on set_configuration for real (closes: #332281). + Fixed USB IDs for BearPaw 2448 TA Plus to use only lowercase letters (closes: #341046). * debian/patches/01_hotplug_usbids.dpatch: + Removed; merged upstream. * debian/patches/02_tools_udev.dpatch: + Removed; merged upstream. * debian/patches/02_udev_rules.dpatch: + Added; add a RUN rule to run the hotplug.d script (for coldplugging). * debian/control: + Build-Depends: xutils as makedepend is now used by the build system. + Adjust conflicts/suggests for libsane-extras. Aurélien JARNO: * debian/patches/03_usb_perms_664.dpatch: + Added; lsusb needs read access to USB devices to work properly. -- Julien BLACHE Sun, 18 Dec 2005 17:09:47 +0100 sane-backends (1.0.16-5) unstable; urgency=low * debian/patches/02_tools_udev.dpatch: + Run the hotplug.d script to ensure a working coldplug (closes: #334068). * debian/patches/30_misc_fixes.dpatch: + Fix a typo in sane-find-scanner(1) (closes: #310333). * debian/patches/34_sanei_usb_ignore_set_config_ebusy.dpatch: + Ignore EBUSY on set_configuration to better accomodate MFC devices (closes: #332281). * debian/libsane.postrm: + Remove /etc/udev/rules.d/025_libsane.rules on purge (closes: #333569). -- Julien BLACHE Thu, 27 Oct 2005 20:25:16 +0200 sane-backends (1.0.16-4) unstable; urgency=low * debian/patches/02_tools_udev.dpatch: + Fix broken tools/udev/convert-usermap.sh script. -- Julien BLACHE Wed, 28 Sep 2005 22:59:41 +0200 sane-backends (1.0.16-3) unstable; urgency=low * The udev release. Thanks to Marco d'Itri for his help. * debian/patches/02_tools_udev.dpatch: + Added; adds tools/udev from CVS. * debian/rules: + Generate the udev rules file for libsane and install it. + Generate a modprobe blacklist (same as the hotplug blacklist). * debian/libsane.postinst: + Symlink the udev rules file under /etc/udev/rules.d; do that only once. * debian/control: + Recommends: hotplug | udev -- Julien BLACHE Wed, 28 Sep 2005 22:42:38 +0200 sane-backends (1.0.16-2) unstable; urgency=low * debian/patches/11_hotplug_wait_for_device.dpatch: + Bump timeout to 25 seconds. * debian/patches/01_hotplug_usbids.dpatch: + Added; pulled from CVS (closes: #323607). * debian/patches/32_plustek_update.dpatch: + Supersedes 32_add_lide25.dpatch; plustek backend update, adds LiDE 25 support and fixes LiDE 20 support. * debian/patches/33_sm3600_update.dpatch: + Added; pulled from CVS, sm3600 adapted to sanei_usb. -- Julien BLACHE Sun, 28 Aug 2005 18:33:18 +0200 sane-backends (1.0.16-1) unstable; urgency=low Julien BLACHE: * New upstream release. + New backends: sm3840, genesys. + Fixed typos in manpages (closes: #310332, #310333). * Patches removed (integrated upstream): + 01_hotplug_usbids.dpatch + 02_tools_hotplug-ng.dpatch + 03_manpages_fixes.dpatch + Most of 30_misc_fixes.dpatch + 31_gt68xx_fixes.dpatch + 32_snapscan_update.dpatch + 33_avision_update.dpatch + 34_plustek_update.dpatch + 35_libusbscanner_2.6_fixes.dpatch + 36_sane-find-scanner_message.dpatch + 37_epson_usbids.dpatch * debian/libsane.postinst: + Removed the udev check, it's broken and MAKEDEV now does the Right Thing (tm) on its own (closes: #310216). + Remove anything debconf-related. * debian/control: + Bumped Standards-Version to 3.6.2 (no changes). + Update the conflict on libsane-extras. + Downgrade Depends: sane-utils to Recommends: sane-utils now that Sarge has been released. + Drop dependency on debconf. * debian/rules: + Generate sane-backends.pot, patch from Martin Pitt (closes: #313527). + Comment call to dh_installdebconf, we don't use debconf anymore. Aurélien JARNO: * DEB_HOST_GNU_SYSTEM replaced by DEB_HOST_ARCH_OS. * Get rid of debian/control.in by using the -V option of dpkg-gencontrol. -- Julien BLACHE Sun, 7 Aug 2005 15:00:05 +0200 sane-backends (1.0.15-10) unstable; urgency=low * debian/patches/01_hotplug_usbids.dpatch: + Updated; added Genius ColorPage Vivid3XE (closes: #305993). + Added Microtek ScanMaker 3700 (closes: #307952). + Added Epson Stylus RX620 (closes: #308867). * debian/patches/11_hotplug_wait_for_device.dpatch: + Added; try to wait for the device to appear in the FS (closes: #302891). * debian/patches/30_misc_fixes.dpatch: + Updated; fixed "device model referenced not duplicated" in the v4l backend (closes: #306458). * debian/control.in: + Build-Depend on a fixed libusb. -- Julien BLACHE Sun, 22 May 2005 11:09:19 +0200 sane-backends (1.0.15-9) unstable; urgency=low * debian/patches/22_dll_backend_conf.dpatch: + Process /etc/sane.d/dll.d first, so that those backends will be loaded last. This will prevent buggy extras backends to perturb other backends. * debian/patches/03_manpages_fixes.dpatch: + Fix a typo in sane(7), reported by A Costa (closes: #302675). + Fix 3 typos in scanimage(1), also reported by A Costa (closes: #302334). -- Julien BLACHE Wed, 20 Apr 2005 16:17:20 +0200 sane-backends (1.0.15-8) unstable; urgency=low Aurélien Jarno: * Drop support for the scanner kernel module. Switch to libusb NOW. + Drop the devfs config file, remove /etc/devfs/conf.d/devfs in libsane.postinst. * Transition to the new hotplug hook scheme (pulled from CVS), which is compatible with both hotplug and hotplug-ng. + Remove /etc/hotplug/usb/libsane.usermap and /etc/hotplug/usb/libusbscanner in libsane.postinst. + Conflicts with libsane-extras (<< 1.0.15.7) to avoid partial upgrades, as 1.0.15.7 is the version compatible with the new hotplug script. Julien Blache: * Added support for GNU/kFreeBSD (closes: #297979). + debian/rules: generate control at clean time. + debian/rules: install README.{linux,freebsd} depending on the system. + debian/patches/23_unneeded_doc.dpatch: do not install OS-specific READMEs. + debian/control.in: do not depend on makedev on !linux (via debian/rules). + debian/libsane.postinst: do not create device nodes on !linux. * debian/rules: + Install only the manpages for the backends which have been built. + Cut the head of libsane.usermap to remove the comments pertaining to the old usermap format. * debian/libsane.README.Debian: + Updated to relfect the hotplug changes. * debian/libsane.postinst: + Do not create device nodes when udev is in use. -- Julien BLACHE Sun, 6 Mar 2005 00:36:43 +0100 sane-backends (1.0.15-7) unstable; urgency=low Julien BLACHE: * debian/patches/22_dll.conf_debian.dpatch + Removed; renamed to 22_dll_backend_conf.dpatch. * debian/patches/22_dll_backend_conf.dpatch + Added; adds a Debian-specific comment to the dll.conf file, and patches the dll backend to look for pieces of dll.conf in the /etc/sane.d/dll.d directory; this is a facility for packages providing external backends, like libsane-extras, hpoj and hplip. Aurélien Jarno: * debian/patches/01_hotplug_usbids.dpatch + Added Epson Corp. Stylus CX6600 to libsane.usermap (closes: #293082). -- Julien BLACHE Mon, 21 Feb 2005 16:43:41 +0100 sane-backends (1.0.15-6) unstable; urgency=low * debian/control + Recommends: hotplug (was Suggests: hotplug). + Suggests: hpoj, hplip. * debian/rules + Blacklist the scanner module wrt hotplug. * debian/libsane.README.Debian + Explain that the scanner module is going away, and that we're now blacklisting it wrt hotplug upon installation of the package. * debian/patches/01_hotplug_usbids.dpatch + Updated; added Epson Stylus RX-425. * debian/patches/37_epson_usbids.dpatch + Added; adds Epson Stylus RX-425. * debian/patches/30_misc_fixes.dpatch + Updated; added initialization of dev->scanning in coolscan.c. * debian/patches/02_manpages_fixes.dpatch + Added; manpages fixes from esr. * debian/patches/32_snapscan_deinterlacer.dpatch + Removed; renamed to 32_snapscan_update.dpatch. * debian/patches/32_snapscan_update.dpatch + Added; contains all of the previous 32_snapscan_deinterlacer.dpatch, plus it adds support for the Epson Perfection 1270, BenQ 5250C and quality calibration for the Epson Perfection 2480. * debian/patches/22_dll.conf_debian.dpatch + Updated; added the sm3840 backend provided by libsane-extras and the hpaio backend provided by hplip (closes: #291435). * debian/patches/38_artec_e+48_conf.dpatch + Added; adds proper configuration for the Umax AstraSlim SE. -- Julien BLACHE Sat, 22 Jan 2005 13:54:58 +0100 sane-backends (1.0.15-5) unstable; urgency=medium * debian/patches/34_plustek_update.dpatch: + Added; pulled from CVS, contains fixes for Epson Perfection 1260 scanners (closes: #290029). * debian/patches/35_libusbscanner_2.6_fixes.dpatch: + Added; applied patch from Martin Pitt to use sysfs to determine the device number, instead of guessing it in a semi-broken way (closes: #289666). * debian/patches/36_sane-find-scanner_message.dpatch + Added; adds a "make sure your scanner is powered up and plugged in" message to sane-find-scanner (closes: #287592). -- Julien BLACHE Wed, 12 Jan 2005 17:48:30 +0100 sane-backends (1.0.15-4) unstable; urgency=medium * debian/control: + Added build-dependency on pkg-config (closes: #286140). * debian/patches/13_new_configure.dpatch: + Fixed; remove unwanted autom4te.cache directory from the patch (closes: #286143). -- Julien BLACHE Sun, 19 Dec 2004 18:08:23 +0100 sane-backends (1.0.15-3) unstable; urgency=low * debian/patches/31_gt68xx_fixes.dpatch: + Updated; added a fix for Mustek BearPaw 2448 TA/CS Plus scanners (closes: #284674). * debian/patches/33_avision_update.dpatch: + Added; improved avision backend from CVS. -- Julien BLACHE Thu, 9 Dec 2004 16:01:50 +0100 sane-backends (1.0.15-2) unstable; urgency=low * debian/patches/01_hotplug_usbids.dpatch: + Added; taken from CVS, adds missing USB IDs to the hotplug scripts (closes: #280821, #281003). * debian/patches/31_gt68xx_fixes.dpatch: + Added; taken from CVS, fixes incorrect mode check for some scanners (closes: #281061). * debian/patches/30_misc_fixes.dpatch: + Added; miscellaneous fixes from CVS/sane-devel. * debian/patches/32_snapscan_deinterlacer.dpatch: + Added; taken from CVS, adds a deinterlacer filter to the snapscan backend, which is needed to scan at 2400 DPI with some scanners. -- Julien BLACHE Sun, 14 Nov 2004 15:39:36 +0100 sane-backends (1.0.15-1) unstable; urgency=low * New upstream release. + Patch for Microtek Phantom C6 on PowerPC merged upstream (closes: #274523). + New backend: niash. * debian/control: + Update conflicts/replaces on libsane-extras 1.0.15.1. * debian/patches/01_libusbscanner.dpatch: + Removed; taken from CVS, included in this version. * debian/patches/02_epson_usbids.dpatch: + Removed; taken from CVS, included in this version. * debian/patches/03_hotplug_usbids.dpatch: + Removed; merged upstream. * debian/patches/11_libtool_unneeded_checks.dpatch: + Removed. * debian/patches/12_gphoto2_link_backend_only.dpatch: + Updated; revert unwanted backend/Makefile.in patch causing an incorrect rpath in /usr/lib/libsane.la (closes: #279082). * debian/patches/13_new_configure.dpatch: + Updated. * debian/patches/22_dll.conf_debian.dpatch: + Updated; the niash backend is now part of SANE. * debian/patches/25_saned_man_section.dpatch: + Removed; merged upstream. * debian/patches/26_scanimage_batch.dpatch: + Removed; merged upstream. * debian/patches/27_snapscan-usb_count_urb.dpatch: + Removed; taken from CVS, included in this version. * debian/sane-utils.README.Debian: + Fix reference to /usr/share/doc/libsane/README.Debian.gz (closes: #278670). -- Julien BLACHE Tue, 9 Nov 2004 23:28:23 +0100 sane-backends (1.0.14-7) unstable; urgency=medium * Co-maintainer upload. * debian/patches/27_snapscan-usb_count_urb.dpatch: + Added, backported from CVS: Don't enforce even number of URB packages on snapscan 1212u_2 (closes: #250885). * debian/patches/03_hotplug_usbids.dpatch: + Added Epson Corp. Stylus CX6400 to libsane.usermap (closes: #293946). -- Aurelien Jarno Mon, 9 Aug 2004 11:17:13 +0200 sane-backends (1.0.14-6) unstable; urgency=medium * Urgency=medium as this revision will fix the upgrade path from Woody. * debian/control: + Removed obsolete gcc-3.3 build-depends (closes: #262245). + Upgraded the sane-utils recommendation to a dependency as an upgrade path from Woody (closes: #263408). * debian/rules: + Create /etc/hotplug/blacklist.d/libsane to prevent hotplug from loading the no-longer-needed hpusbscsi module (closes: #260734). * debian/patches/03_hotplug_usbids.dpatch: + Added; adds HP ScanJet 5300C to libsane.usermap (closes: #260736). * debian/patches/26_scanimage_batch.dpatch: + Added; adds possibility to interrupt a batch scan in scanimage by pressing ^D (closes: #260230). -- Julien BLACHE Wed, 4 Aug 2004 22:12:40 +0200 sane-backends (1.0.14-5) unstable; urgency=low * debian/patches/02_epson_usbids.dpatch + Put back the USB IDs for the Perfection 1650, remove the USB IDs for the Perfection 1250, which now really fixes the bug. -- Julien BLACHE Sun, 13 Jun 2004 13:48:27 +0200 sane-backends (1.0.14-4) unstable; urgency=low * debian/libsane.postinst + modutils is Required, not Essential; replace kernelversion (provided by modutils) by uname -r | cut (closes: #254140). -- Julien BLACHE Sun, 13 Jun 2004 12:12:02 +0200 sane-backends (1.0.14-3) unstable; urgency=low * debian/libsane.postinst + Do not create /dev/usb/scanner* if running a 2.6 kernel. * debian/patches/02_espon_usbids.dpatch + Remove USB IDs for Perfection 1250 and 1260; these scanners are handled by the plustek backend (pulled from CVS) (closes: #248859). * debian/patches/25_saned_man_section.dpatch + Added; saned goes to /usr/sbin, its manpage should go to section 8. -- Julien BLACHE Fri, 11 Jun 2004 21:37:18 +0200 sane-backends (1.0.14-2) unstable; urgency=low * debian/patches/22_dll.conf_debian.dpatch + Enable the hpoj backend by default (closes: #246985, #248379). * debian/patches/01_libusbscanner.dpatch + Pulled from CVS, fixes hotplug's lack of backward compatibility (closes: #248770). -- Julien BLACHE Thu, 20 May 2004 20:25:18 +0200 sane-backends (1.0.14-1) unstable; urgency=low * New upstream release. + USB IDs for EPSON Stylus CX5400 added (closes: #243295). + USB IDs for Nikon CoolScan 5000 added (closes: #243792). * debian/hotplug/* + removed, integrated upstream (tools/hotplug). * debian/patches/01_mustek_pp_unified.dpatch + removed, integrated in this release. * debian/patches/02_hp_backend_usb_fix.dpatch + removed, integrated in this release. * debian/rules + install the provided hotplug script and config file. -- Julien BLACHE Sat, 1 May 2004 16:26:47 +0200 sane-backends (1.0.13-4) unstable; urgency=low * debian/patches/02_hp_backend_usb_fix.dpatch + added, pulled from CVS, fixes USB problems on kernel 2.6 (closes: #242188). * Updated libsane.usermap from CVS (closes: #242090). * Updated README.Debian, fixed a couple of typos. -- Julien BLACHE Sun, 11 Apr 2004 10:31:41 +0200 sane-backends (1.0.13-3) unstable; urgency=low * debian/libsane.config, debian/libsane.templates, debian/po: + Removed, we don't use debconf anymore. * debian/postinst: + Fixed the /dev/usb/parport0 typo that should have read /dev/parport0. Thanks to Tore Anderson for catching this one. + Removed anything debconf-related, only purge whatever is left in the debconf DB (closes: #224597). -- Julien BLACHE Sat, 20 Dec 2003 18:44:37 +0100 sane-backends (1.0.13-2) unstable; urgency=low * debian/patches: order of the patches changed (slightly). + 01_mustek_pp_unified.dpatch: scan area fixes. -- Julien BLACHE Mon, 1 Dec 2003 19:19:19 +0100 sane-backends (1.0.13-1) unstable; urgency=low * New upstream release. * debian/patches: + 20_net.c_fixes.dpatch : removed, merged upstream. + 21_gt68xx_uhci_fixes.dpatch : ditto. + 04_hp5400_sanei_config2.dpatch : ditto. + 03_new_configure : updated. + 04_mustek_pp_unified: added; with this patch the mustek_pp backend supports both CIS and CCD scanners (closes: #190998). * debconf: + Direct users to README.Debian.gz instead of README.Debian (closes: #217347). + Added Japanese translation (closes: #214040). + Added Dutch translation (closes: #218905). + Added German translation, thanks to Dirk Ritter and debian-l10n-german. * debian/sane-utils.README.Debian: + More details about the saned user and group, and the reason why the saned user is not part of the scanner group by default (closes: #220024). * debian/devfs/scanner: + Added an example for SCSI devices, thanks to Dirk Ritter. * debian/control: + Standards-Version bumped to 3.6.1 (no changes). * debian/rules, debian/compat: + Switch to DH_COMPAT 4, and moved from dh_movefiles to dh_install. * debian/control, debian/rules: + Build-depend on chrpath and use it to remove rpath from the binaries. -- Julien BLACHE Mon, 24 Nov 2003 18:35:21 +0100 sane-backends (1.0.12-7) unstable; urgency=low * The "Maintainer's birthday" release. * Simplified the needlessly complex debconf questions. Now use a multiselect question instead of 3 independent questions. + debian/libsane.templates: rewritten to use a multiselect type + debian/libsane.config: ditto, try to convert from the older questions, then purge them once done. + debian/libsane.postinst: rewritten to parse the answer from the new debconf thingy. + debian/control: now Depends: debconf (>= 0.5.0) due to the use of db_fset in debian/libsane.config. * debian/libsane.postinst: use ':' as a separator for chown instead of '.'. * debian/libsane.README.Debian: ditto. * debian/control: only Suggests: hotplug (closes: #205291). -- Julien BLACHE Wed, 20 Aug 2003 14:03:14 +0200 sane-backends (1.0.12-6) unstable; urgency=low * Julien BLACHE * debian/control + Bumped Standards-Version to 3.6.0 (no changes). + libsane depends on adduser (>= 3.47). + libsane recommends hotplug. * debian/libsane.templates: templates slightly rewritten to accomodate the various debconf frontends (closes: #202744). * debconf-related items: + Switched debconf templates to debconf-po, thus build-depends on debhelper (>= 4.1.16) (closes: #203669). + Added french debconf translation based on translation from Michel Grentzinger for sane-backends 1.0.12-5 (closes: #203670). * debian/libsane.postinst: + Add a scanner system group, and chown root.scanner /dev/usb/scanner* if we create them (closes: #201851). * debian/libsane.README.Debian: + Added a Setup paragraph, detailing permissions issues and solutions implemented by this package. * debian/sane-utils.README.Debian: + Added, deals with permissions issues wrt the saned daemon. * hotplug support: + debian/hotplug/libusbscanner: added, hotplug script for scanners used with libusb, courtesy of Max Kutny . Installed as /etc/hotplug/usb/libusbscanner. + debian/hotplug/libsane.usermap: example map file for use with hotplug. Installed as /etc/hotplug/usb/libsane.usermap. * Aurélien JARNO * debian/devfs/scanner: + Added, installed as /etc/devfs/conf.d/scanner. -- Julien BLACHE Wed, 6 Aug 2003 13:08:11 +0200 sane-backends (1.0.12-5) unstable; urgency=low * 21_gt68xx_uhci_fixes.dpatch : fix timeout with UHCI host controllers. * debian/control: + Added temporary Build-Dependency on gcc-3.3 (>= 3.3.1-0pre0), which should fix the ICE on m68k. * debian/rules: + Should build with -O2 on m68k again. -- Julien BLACHE Wed, 2 Jul 2003 12:04:59 +0200 sane-backends (1.0.12-4) unstable; urgency=low * Julien BLACHE * The "I fucking hate libtool" release. Prevent libtool from checking things we do not need at all, such as a C++ or an F77 compiler. Sigh. * Converted to dpatch. Build-depends on dpatch. * Re-enable the gphoto2 backend, -but- do so that frontends do not get linked against libgphoto2. Only the backend is linked against it. (closes: #195613) * Thus, adds back the libgphoto2-2-dev build-dependency. * Effectively move the html doc to the html subdir, instead of copying them with dh_install. * Aurélien JARNO * Add autotools-stamp, so that configure won't be run twice. * Do not link sanei_config2 in hp5400 : not needed (fixes an undefined symbol, too). -- Julien BLACHE Tue, 3 Jun 2003 22:34:48 +0200 sane-backends (1.0.12-3) unstable; urgency=low * Fix the net backend so that it _does_ try all alternatives before giving up connecting to the server (closes: #195396). -- Julien BLACHE Fri, 30 May 2003 19:22:54 +0200 sane-backends (1.0.12-2) unstable; urgency=low * Build with -O1 on m68k; -O2 triggers an ICE. -- Julien BLACHE Thu, 29 May 2003 11:36:41 +0200 sane-backends (1.0.12-1) unstable; urgency=low * New upstream release. * Should now work on m68k. Yeah. (closes: #77356). * sane(7) has been improved (closes: #188647). * scanimage(1) has been fixed, wrt --batch. * The hp5400 backend has been included, replaces libsane-extras (<< 1.0.12.1). * IPv6 support. * Standards-Version bumped to 3.5.10 (no changes). * libsane-dev belongs to libdevel. * Do not generate manpages and documentation we do not need. -- Julien BLACHE Sun, 25 May 2003 21:14:37 +0200 sane-backends (1.0.11-4) unstable; urgency=medium * Move saned.conf to the sane-utils package. Woops. (closes: #192742) -- Julien BLACHE Sat, 10 May 2003 08:41:23 +0200 sane-backends (1.0.11-3) unstable; urgency=medium * The "We want to enter testing" release. * Do not build the gphoto2 backend. Gphoto2 is blocked by a bunch of other packages (KDE, ...) and we're free of RC bugs. Enough. * Moved libphoto2-2-dev to Build-Conflicts. * Bumped shlibs. -- Julien BLACHE Sat, 3 May 2003 21:09:58 +0200 sane-backends (1.0.11-2) unstable; urgency=low * Ok, ok, do not tell how to configure libusb (closes: #180570). * Do not print "Adding saned..." in sane-utils postinst when the user already exists. * Pulled fixed gphoto2 backend from CVS (closes: #180514). -- Julien BLACHE Thu, 13 Feb 2003 13:22:21 +0100 sane-backends (1.0.11-1) unstable; urgency=low * New upstream release. * Security fixes to saned (closes: #180203). * Added some debconf dialogs : * /dev/parport* * /dev/sg* * note about /proc/bus/usb -- Julien BLACHE Sun, 9 Feb 2003 21:17:16 +0100 sane-backends (1.0.10-2) unstable; urgency=low * Fix postrm breakage (closes: #179586). -- Julien BLACHE Mon, 3 Feb 2003 12:39:14 +0100 sane-backends (1.0.10-1) unstable; urgency=low * New upstream release. * Fixed sane-scsi manpage (closes: #174136). * mustek_pp now has CIS support (closes: #152321). * Added http://www.mostang.com/sane/sane-mfgs.html as /usr/share/doc/libsane/supported.html (closes: #174131). * New backends, previously included in libsane-extras : * gt68xx * artec_eplus48u (known as tevion9693usb) * datadir is ${prefix}/share, not ${prefix}/share/sane. * Remove /usr/lib/sane/libsane.so.1, as it's not libsane.so.1 (looks like a libtool side-effect). * Remove a couple more unwanted READMEs. * Bumped Standards-Version to 3.5.8. * Added a debconf dialog to create /dev/usb/* (closes: #177979). * Added missing dependency on adduser to sane-utils. -- Julien BLACHE Sun, 2 Feb 2003 11:22:24 +0100 sane-backends (1.0.9-4) unstable; urgency=low * Pulled dll.c from CVS, fixes in-line comments (closes: #171521). * Applied patch for Plustek backend rounding bug (closes: #172012). -- Julien BLACHE Mon, 9 Dec 2002 11:51:26 +0100 sane-backends (1.0.9-3) unstable; urgency=low * Rebuilt against new libgphoto2 package. * Changed Uploaders: filed so that Aurélien's uploads won't be tagged as NMU again. * Do not generate debian/libsane.conffiles at build time, this is handled by dh_installdeb automatically ; otherwise we end up with each conffile being listed twice... -- Julien BLACHE Sun, 1 Dec 2002 11:29:43 +0100 sane-backends (1.0.9-2) unstable; urgency=low * Co-maintainer upload. * Remove /etc/sane.d directory on purge (closes: bug#167603). -- Aurelien Jarno Mon, 4 Nov 2002 14:10:54 +0100 sane-backends (1.0.9-1) unstable; urgency=low * New upstream release. * Video for Linux (v4l) backend cleanup (closes: #159634). * Updated Avision backend (closes: #146054). * Updated Epson backend (closes: #114017). * Fixed char signedness in backend/plustek-usbshading.c (closes: #164464). * Fixed debian/copyright (closes: #146057). * Enabled translations. * Do not install the upstream changelog twice. * sane-utils does not create /home/saned. * Fixed packages descriptions (wrt #165138). -- Julien BLACHE Thu, 24 Oct 2002 18:52:29 +0200 sane-backends (1.0.8-4) unstable; urgency=low * libsane-extras has its own source package now. -- Julien BLACHE Sun, 13 Oct 2002 10:49:54 +0200 sane-backends (1.0.8-3) unstable; urgency=low * New maintainers. * New upstream release (closes: #162532, #149317). * saned manpage mentions /usr/sbin/saned (closes: #141464). * Symlinks for manpages are properly created (closes: #99551). * Fixed hostnames handling in saned.conf (closes: #51171). * HP backend update (closes: #116962). * Backend loader respects LD_LIBRARY_PATH (closes: #143771). * Path for Epson USB scanner corrected in conf file (closes: #154296, #154305). * A test backend is included, safer than the pnm backend (closes: #139256). * Umax backend fixed (closes: #158676). * HP backend fixed, no longer segfaults (closes: 154827). * Repackaged from scratch, using debhelper. * Standards-Version bumped to 3.5.6. * Do not include rpath informations in sane-config (closes: #143603). * Fixed build problem wrt umask (closes: #95440). * Updated libsane-dev Depends (closes: #142679). * Fixed typos in umax_pp.conf (closes: #158742). * Fixed hp.conf for some scanners (closes: #154828). * Fixed README.Debian (closes: #146039). * Fixed sane-plustek(5) manpage (closes: #159435). * New package sane-utils, contains sane-find-scanner, scanimage and saned. * sane-utils creates user and group saned (closes: #141465). * New package libsane-extras, containing some extra backends * hp4200 (v0.2p1) * gt68xx (v1.0-23) * niash (v20020217) (closes: #160327) * tevion9693 (v0.0.9) * Disabled translations until 1.0.9. -- Julien BLACHE Sat, 12 Oct 2002 10:28:09 +0200 sane-backends (1.0.8-2) unstable; urgency=low * Added build-depends on gettext(closes: #163681). -- Kevin Dalley Mon, 7 Oct 2002 09:32:21 -0700 sane-backends (1.0.8-1) unstable; urgency=low * New upstream release. Many n ew backends. Many more updated backends. -- Kevin Dalley Sun, 6 Oct 2002 18:09:28 -0700 sane-backends (1.0.7-3.2) unstable; urgency=high * Non-Maintainer Upload. * Fix build on SPARC. * Fix build on HPPA, although it's not RC (closes: Bug#138108). -- Julien BLACHE Sun, 7 Apr 2002 11:39:41 +0200 sane-backends (1.0.7-3.1) unstable; urgency=medium * Non-Maintainer Upload. * Fixes compilation on Alpha, using the frontend/scanimage.c file from the current CVS (close: Bug#138108). * Applied patch submitted to #139509, regarding config.{sub,guess} issues on MIPS (close: Bug#139509). * Fixed lintian complaint wrt misplaced Conflicts: field in control file. * Fixed lintian complaint about .comment section in /usr/lib/sane/*.so.*. -- Julien BLACHE Sun, 31 Mar 2002 20:24:48 +0200 sane-backends (1.0.7-3) unstable; urgency=low * link with libusb-0.1-4 (closes: #119393). -- Kevin Dalley Fri, 15 Mar 2002 18:31:08 +0000 sane-backends (1.0.7-2) unstable; urgency=low * stop link with libusb due to inconsistencies with versions of libusb libraries. When libusb installation is cleaned up, then usb support will be added again. Unfortunately, this re-opens bug #119393, though with a lower severity. (closes: #138349). -- Kevin Dalley Thu, 14 Mar 2002 22:25:53 +0000 sane-backends (1.0.7-1) unstable; urgency=low * new upstream release of sane. * adds libusb, which includes ScanMaker 3600 drivers (closes: #119393). * installs plustek-share.h so that plustek driver can be built (closes: #72341) -- Kevin Dalley Thu, 14 Mar 2002 01:02:21 +0000 sane-backends (1.0.6-1) unstable; urgency=low * new upstream release of sane. * new backends: gphoto2. -- Kevin Dalley Sun, 27 Jan 2002 23:30:19 -0800 sane-backends (1.0.5-3) unstable; urgency=low * rebuilt with new version of libgimp-1.2.2-2. -- Kevin Dalley Tue, 2 Oct 2001 22:31:15 -0700 sane-backends (1.0.5-2) unstable; urgency=low * removed incorrect build dependency on libc6-dev (closes: #108639). -- Kevin Dalley Thu, 16 Aug 2001 08:12:40 -0700 sane-backends (1.0.5-1) unstable; urgency=low * New backends: bh (Bell+Howell Copiscan II series), dc240 (Kodak DC240 Digital Camera), sm3600 (Microtek ScanMaker 3600), umax_pp (Umax paralell port scanners). * Fixed security bug in saned.c that allowed access to scanner without password. -- Kevin Dalley Sat, 28 Jul 2001 12:38:46 -0700 sane-backends (1.0.4-2) unstable; urgency=low * increased timeout in sanei_scsi.c, which removes problem with 2.4 kernel (closes: #84407). -- Kevin Dalley Thu, 31 May 2001 04:36:29 -0700 sane-backends (1.0.4-1) unstable; urgency=low * new upstream release of sane. * as63driver added (closes: #69625). -- Kevin Dalley Sun, 28 Jan 2001 09:17:24 -0800 sane-gimp1.1 (1.0.3-4) unstable; urgency=low * link sane-gimp1.1 with libgimp1.1-1.1.29. * change control files so that packages sane and sane-gimp1.1 are explicitly described as working with gimp and gimp1.1 respectively. The package sane now mentions the packages sane-gimp1.1 and vice versa. -- Kevin Dalley Sun, 5 Nov 2000 13:56:49 -0800 sane (1.0.3-3) unstable; urgency=low * link sane-gimp1.1 with libgimp1.1-1.1.28, which is new library (closes: #75029). * define GIMP_ENABLE_COMPAT_CRUFT to allow use of newer libgimp. -- Kevin Dalley Sun, 22 Oct 2000 21:52:29 -0700 sane (1.0.3-2) unstable; urgency=low * fix dependency in libsane-dev (closes: #71578). * remove extraneous file which contains space in its name, which causes patch and dpkg-source to fail. (closes: #71566, #71564, #71540). -- Kevin Dalley Fri, 22 Sep 2000 23:04:17 -0700 sane (1.0.3-1) unstable; urgency=low * new upstream release of sane * new backends: mustek_pp, plustek, st400, v41 * Many updated backends * 16 bit support for scanimage. -- Kevin Dalley Sat, 2 Sep 2000 11:32:08 -0700 sane (1.0.2-1) unstable; urgency=low * new upstream release of sane * Aliased and hidden backend support. * Added Ricoh IS50 support. * updated many backends. * New Linux SCSI Generic driver. * sane-gimp1.1 linked with libsane-1,1.22 (closes: #66544). -- Kevin Dalley Mon, 3 Jul 2000 23:38:42 -0700 sane (1.0.1-1999-10-21-12) frozen unstable; urgency=low * add libjpeg62-dev, tetex-bin, tetex-extra to Build-Depends (closes: #61834, 61835). -- Kevin Dalley Wed, 5 Apr 2000 10:37:38 -0700 sane-gimp1.1 (1.0.1-1999-10-21-11) frozen unstable; urgency=low * Add Build-Depends to control files for sane and sane-gimp1.1 (closes: #60923). -- Kevin Dalley Mon, 27 Mar 2000 03:16:55 -0800 sane (1.0.1-1999-10-21-10) frozen unstable; urgency=low * Improve description in control file (closes: #57032). * link sane-gimp1.1 with libgimp1.1.17, which is the most recent libgimp1.1 in frozen. -- Kevin Dalley Mon, 28 Feb 2000 02:37:20 +0000 sane (1.0.1-1999-10-21-9) frozen unstable; urgency=low * link sane-gimp1.1 with libgimp1.1.15, which is the most recent libgimp1.1 in frozen. -- Kevin Dalley Sat, 22 Jan 2000 01:57:55 -0800 sane (1.0.1-1999-10-21-8) unstable; urgency=low * sane now conflicts with gimp1.1, which increases the chances of getting the correct versions of gimp with each version of sane (closes: #55070). Unfortunately, sane-gimp1.1 cannot conflict with gimp, since gimp1.1 provides gimp. -- Kevin Dalley Sun, 16 Jan 2000 11:41:52 -0800 sane (1.0.1-1999-10-21-7) unstable; urgency=low * link with libgimp1.1.14 (closes: #53982) * remove conflict of libsane-gimp1.1 with itself (closes: #49709). * Each version of sane and sane-gimp1.1 now depend upon the same release of libsane (closes: #50927). * shlibs dependencies is updated to ">= 1.0.1-1999-10-21-7" to reduce chances of problem #50927. -- Kevin Dalley Sun, 9 Jan 2000 13:22:57 -0800 sane (1.0.1-1999-10-21-6) unstable; urgency=low * add conflict between libsane and older version of sane, sane-gimp1.1 due to moving documentation from sane to libsane (closes: #50735). -- Kevin Dalley Sat, 20 Nov 1999 15:15:30 -0400 sane (1.0.1-1999-10-21-5) unstable; urgency=low * added link for /usr/lib/libsane-dll.so, again. -- Kevin Dalley Fri, 19 Nov 1999 00:03:40 -0400 sane (1.0.1-1999-10-21-4) unstable; urgency=low * corrected problematic stripping of "libsane.la" (closes: #50099). * move much of documentation from sane package to libsane and libsane-dev package. * move find-scanner to libsane -- Kevin Dalley Wed, 17 Nov 1999 23:08:44 -0400 sane (1.0.1-1999-10-21-3) unstable; urgency=low * added link for /usr/lib/libsane-dll.so -- Kevin Dalley Mon, 25 Oct 1999 01:24:30 -0700 sane (1.0.1-1999-10-21-2) unstable; urgency=low * corrected link of libsane.so.1 -- Kevin Dalley Sun, 24 Oct 1999 14:43:14 -0700 sane (1.0.1-1999-10-21-1) unstable; urgency=low * cvs server version from 1999-10-21 * many bugs fixed in various backends -- Kevin Dalley Fri, 22 Oct 1999 22:06:52 -0700 sane (1.0.1-6) unstable; urgency=low * relink sane-gimp1.1 with libgimp1.1.10 -- Kevin Dalley Thu, 14 Oct 1999 23:33:18 -0700 sane (1.0.1-5) unstable; urgency=low * relink sane-gimp1.1 with libgimp1.1.9 * separate sane-gimp1.1 from sane -- Kevin Dalley Sun, 10 Oct 1999 03:42:37 -0700 sane (1.0.1-4) unstable; urgency=low * added sane-gimp1.1 (used with gimp1.1) at the same time as sane for gimp-1.0.x. -- Kevin Dalley Wed, 30 Jun 1999 00:54:57 -0700 sane (1.0.1-3) unstable; urgency=low * try to fix problems with shared libraries. Install libsane-dll.so in /usr/lib so that programs linked with libsane will run. (Needed to fix xsane bug #37756). -- Kevin Dalley Mon, 31 May 1999 22:15:16 -0700 sane (1.0.1-2) unstable; urgency=low * remove dependencies for libsane -- Kevin Dalley Fri, 30 Apr 1999 23:08:50 -0700 sane (1.0.1-1) unstable; urgency=low * version 1.0.1 * new backend for Sharp scanner * update backends for Kodak DC25, HP, Microtek, Micro, Mustek, Nikon Coolscan, snapscan, UMAX. * fixes problem with HP scanner (closes #32516) * includes backend for dc210 (closes #31377) -- Kevin Dalley Tue, 27 Apr 1999 01:24:33 -0700 sane (1.00-2) unstable; urgency=low * removed examples directory. Moved examples/tools to tools directory. -- Kevin Dalley Mon, 5 Apr 1999 02:04:53 -0700 sane (1.00-1) unstable; urgency=low * 1.00 is released * artec is back in dll.conf * many more scanner supported and more changes -- Kevin Dalley Sat, 5 Dec 1998 01:00:30 -0800 sane (0.74-2) unstable; urgency=low * temporarily comment out artec in dll.conf, due to bad interaction with Umax scanner. If artec is used as a scanner, uncomment artec from dll.conf * automatically generates conffiles, thanks for Roman.Hodek@informatik.uni-erlangen.de (fixes bug #26545) * fixes problem with creation of /usr/share/sane during build process (bug #26314) -- Kevin Dalley Sun, 20 Sep 1998 18:00:28 -0700 sane (0.74-1) unstable; urgency=low * first release of 0.74 -- Kevin Dalley Sat, 22 Aug 1998 23:06:26 -0700 sane (0.72-1) frozen unstable; urgency=low * first official release which supports libgtk1-0.99.9 -- Kevin Dalley Fri, 10 Apr 1998 02:29:52 -0700 sane (0.71-2) frozen unstable; urgency=low * fixed spelling in control files (fixes bug# 19003) * modified to match latest change in libgtk-0.99.5 * change datadir to /usr/share/sane * compatible with libgtk1-0.99.8 (fixes bug #19595) -- Kevin Dalley Sun, 22 Mar 1998 19:44:10 -0800 sane (0.71-1) unstable; urgency=low * new release, which adds support for the following scanners: Polaroid Digital Microscope Camera (DMC) backend Apple scanner backend Nikon CoolScan backend * removed execute permission in doc directory (fixes: bug #17949) * modified manual page referring to symbolic link of xscanimage (fixes: bug #18071) -- Kevin Dalley Fri, 27 Feb 1998 23:03:08 -0800 sane (0.70-1) unstable; urgency=low * update to version 0.70 of sane, adds AGFA SnapScan backend, updates UMAX backend * add patches 2-5 to SnapScan backend which allows other scanners to work -- Kevin Dalley Sat, 31 Jan 1998 17:32:53 -0800 sane (0.69-2) unstable; urgency=low * correct umax-scanner.h so that Astra 1200S is legal -- Kevin Dalley Sun, 25 Jan 1998 09:44:45 -0800 sane (0.69-1) unstable; urgency=low * update to version 0.69 of sane -- Kevin Dalley Fri, 23 Jan 1998 20:24:01 -0800 sane (0.68-4) unstable; urgency=low * modified gtkglue.c to correspond with changes to libgtk1 -- Kevin Dalley Tue, 6 Jan 1998 22:24:14 -0800 sane (0.68-3) unstable; urgency=low * change plug-in directory to 0.99 to match gimp changes, add explicit gimp dependency. * added README.debian * install find-scanner * install many documentation files -- Kevin Dalley Fri, 2 Jan 1998 21:51:52 -0800 sane (0.68-2) unstable; urgency=low * corrected control file -- Kevin Dalley Sun, 21 Dec 1997 18:26:23 -0800 sane (0.68-1) unstable; urgency=low * update to version 0.68 of sane -- Kevin Dalley Fri, 5 Dec 1997 00:42:27 -0800 sane (0.67-1) unstable; urgency=low * first Debian release of sane -- Kevin Dalley Tue, 18 Nov 1997 21:38:41 -0800 debian/rules0000775000000000000000000001146712253323243010260 0ustar #!/usr/bin/make -f #export DH_VERBOSE=1 export DEB_BUILD_MAINT_OPTIONS = hardening=+all export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) ifeq ($(DEB_HOST_ARCH_OS),) DEB_HOST_ARCH_OS := $(subst -gnu,,$(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM)) ifeq ($(DEB_HOST_ARCH_OS),gnu) DEB_HOST_ARCH_OS := hurd endif endif ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) CFLAGS += -g endif ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) INSTALL_PROGRAM += -s INSTALL_STRIP_FLAG = "" STRIP = "" endif %: dh $@ --parallel --with autoreconf override_dh_auto_configure: LDFLAGS="-Wl,-Bsymbolic-functions" \ ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \ --prefix=/usr \ --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \ --sysconfdir=/etc \ --localstatedir=/var \ --datadir=\$${prefix}/share \ --mandir=\$${prefix}/share/man \ --with-docdir=\$${prefix}/share/doc/libsane \ --with-snmp=no \ --disable-locking \ --enable-static \ --enable-pthread \ --with-gphoto2 \ --enable-translations \ --enable-avahi \ --enable-libusb_1_0 override_dh_auto_build: # generate POT file for translators (cd po && make sane-backends.pot) $(MAKE) override_dh_auto_clean: # Autoconf-generated files $(RM) include/byteorder.h include/_stdint.h # Add here commands to clean up after the build process. [ ! -f Makefile ] || $(MAKE) distclean $(RM) debian/libsane-common.install $(RM) debian/libsane.udev dh_auto_clean override_dh_auto_install: $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp # remove /usr/lib/sane/libsane.so.1 (libtool side-effect ?) $(RM) debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/sane/libsane.so.1 # remove libsane-dll, same as regular libsane $(RM) debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/sane/libsane-dll.* # install only the manpages for the backends which have been built cp debian/libsane-common.install.in debian/libsane-common.install ls debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/sane/*.so | sed -e \ "s#.*/lib\([^.]\+\)[.]so#usr/share/man/man5/\1.5#" | { while read mp; do \ test -e debian/tmp/$$mp && echo $$mp >> debian/libsane-common.install; done } # Empty dependency_libs in all .la files find debian/tmp/usr -name "*.la" -type f -exec sed -e "s,^dependency_libs=.*,dependency_libs=''," -i {} \; override_dh_install: dh_install # Install HAL fdi file mkdir -p $(CURDIR)/debian/libsane-common/usr/share/hal/fdi/preprobe/10osvendor $(CURDIR)/tools/sane-desc -s $(CURDIR)/doc/descriptions -m hal-new > \ $(CURDIR)/debian/libsane-common/usr/share/hal/fdi/preprobe/10osvendor/20-libsane.fdi # Install the pkg-config file mkdir -p debian/libsane-dev/usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig/ cp tools/sane-backends.pc debian/libsane-dev/usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig/ override_dh_installdocs: dh_installdocs # move files that belong to libsane-dev mv debian/libsane-common/usr/share/doc/libsane/sane.ps debian/libsane-dev/usr/share/doc/libsane-dev/ mv debian/libsane-common/usr/share/doc/libsane/backend-writing.txt debian/libsane-dev/usr/share/doc/libsane-dev/ # Platform-specific documentation # move the html files into html/ install -d debian/libsane-common/usr/share/doc/libsane/html mv debian/libsane-common/usr/share/doc/libsane/*.html debian/libsane-common/usr/share/doc/libsane/html/ # create the /etc/sane.d/dll.d directory in libsane install -d debian/libsane/etc/sane.d/dll.d $(RM) debian/libsane/etc/sane.d/saned.conf ifeq (kfreebsd,$(DEB_HOST_ARCH_OS)) cp README.freebsd debian/libsane-common/usr/share/doc/libsane/ endif ifeq (linux,$(DEB_HOST_ARCH_OS)) cp README.linux debian/libsane-common/usr/share/doc/libsane/ endif override_dh_installudev: ifeq (linux,$(DEB_HOST_ARCH_OS)) # udev support # Generate the udev rules file $(CURDIR)/tools/sane-desc -s $(CURDIR)/doc/descriptions -m udev+acl > $(CURDIR)/debian/libsane.udev dh_installudev endif # remove rpath from the binaries (wonderful tool !) chrpath -d debian/sane-utils/usr/sbin/saned chrpath -d debian/sane-utils/usr/bin/scanimage chrpath -d debian/sane-utils/usr/bin/sane-find-scanner override_dh_installexamples: # install the xerox script as an example dh_installexamples -plibsane-common tools/README tools/xerox mv debian/libsane-common/usr/share/doc/libsane-common/examples debian/libsane-common/usr/share/doc/libsane/ override_dh_installinit: dh_installinit -psane-utils --name=saned --error-handler=saned_eh -- start 50 2 3 4 5 . stop 20 1 . override_dh_strip: dh_strip --dbg-package=libsane-dbg override_dh_builddeb: dh_builddeb -- -Zxz debian/libsane-dev.doc-base0000664000000000000000000000137312165560742012774 0ustar Document: libsane-dev Title: SANE Standard Author: Andreas Beck and David Mosberger Abstract: SANE stands for "Scanner Access Now Easy" and is an application programming interface (API) that provides standardized access to any raster image scanner hardware (flatbed scanner, hand-held scanner, video- and still-cameras, frame-grabbers, etc.). The SANE standard is free and its discussion and development are open to everybody. The current source code is written to support several operating systems, including GNU/Linux, OS/2, Win32 and various Unices and is available under the GNU General Public License (commercial applications and backends are welcome, too, however). Section: Graphics Format: postscript Files: /usr/share/doc/libsane-dev/sane.ps.gz debian/po/0000775000000000000000000000000012165560742007616 5ustar debian/po/fi.po0000664000000000000000000001021312165560742010551 0ustar # Esko Arajärvi , 2010. msgid "" msgstr "" "Project-Id-Version: sane-backends\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2010-10-17 21:36+0300\n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Finnish\n" "X-Poedit-Country: FINLAND\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "Ajetaanko sanedia itsenäisenä palvelimena?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "" "Käytössä ollessaan saned-palvelin tarjoaa kuvanlukijat käytettäviksi verkon " "yli." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Ohjelmaa saned voidaan ajaa kahdella eri tavalla:\n" " - inetd-palveluna, jolloin se käynnistetään inetd-palvelimen\n" " avulla, kun asiakasohjelma ottaa yhteyden palvelimeen.\n" " - itsenäisenä palvelimena, joka käynnistetään järjestelmän\n" " käynnistyessä. Tällöin saned pyörii taustaprosessina\n" " jatkuvasti ja kuuntelee asiakkaiden yhteydenottoja." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "Ajettaessa itsenäisenä prosessina saned kertoo itsestään verkossa ja\n" "SANE-asiakkaat voivat havaita sen automaattisesti ilman erityisiä\n" "asetuksia asiakasohjelmassa. Palvelin tulee edelleen asettaa hyväksymään\n" "asiakkaiden yhteydenotot. Tämä ominaisuus on koekäytössä ja vaatii\n" "Avahi-taustaohjelman." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "Valitse tämä vaihtoehto, jos haluat käyttää tätä ominaisuutta." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "Lisätäänkö saned-käyttäjä ryhmään scanner?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "Ollessaan käytössä saned-palvelin mahdollistaa kuvanlukijoiden käytön verkon " "yli. " "Asettamalla eri oikeuksia järjestelmään kytketyille kuvanlukijoille voidaan " "valita mitkä niistä ovat käytettävissä verkon kautta." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Tiedostossa /usr/share/doc/sane-utils/README.Debian on lisätietoja " "oikeuksien hallinnasta. Oletuksena saned ajetaan käyttäjällä ja ryhmällä " "saned." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Valitse tämä vaihtoehto, jos kaikki kuvanlukijat halutaan asettaa " "käytettäväksi " "verkon yli ilman rajoituksia." debian/po/nl.po0000664000000000000000000001041212165560742010565 0ustar # Dutch translation of sane-backends debconf templates. # Copyright (C) 2011 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the sane-backends package. # Jeroen Schot , 2011. # msgid "" msgstr "" "Project-Id-Version: sane-backends 1.0.22-2\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2011-05-17 10:34+0200\n" "Last-Translator: Jeroen Schot \n" "Language-Team: Debian l10n Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "Wilt u saned als losstaande server activeren?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "" "Indien geactiveerd maakt de saned-server scanners beschikbaar over het " "netwerk." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Er zijn twee manieren om saned te draaien:\n" " - Als een inetd-dienst, gestart door de inetd-superserver. In deze modus\n" "wordt saned pas opgestart wanneer een client verbinding met de server " "maakt.\n" " - Als een losstaande achtergronddienst, opgestart bij de systemstart. In\n" "deze modus draait saned zelfstandig op de achtergrond en luistert naar\n" "client-verbindingen." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "Wanneer saned in losstaande modus draait adverteert het zichzelf op het " "netwerk en kan door SANE-clients zonder configuratie automatisch worden " "gedetecteerd. U dient wel nog steeds de server te configureren om " "verbindingen van uw clients te accepteren. Deze functionaliteit is " "experimenteel en vereist een draaiende Avahi-achtergronddienst." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "" "Kies voor deze optie als u gebruik wilt maken van deze functionaliteit." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "De saned-gebruiker toevoegen aan de scanner-groep?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "Indien geactiveerd maakt de saned-server scanners beschikbaar over het " "netwerk. Door verschillende permissies toe te kennen aan de verschillende " "scanners van deze machine kunt u bepalen welke er over het netwerk " "beschikbaar worden gemaakt." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Lees /usr/share/doc/sane-utils/README.Debian voor informatie over het " "beheren van permissies voor saned. Standaard draait saned onder de saned-" "gebruiker en groep." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Kies voor deze optie als u al uw scanners zonder beperkingen over het " "netwerk beschikbaar wilt maken." debian/po/ja.po0000664000000000000000000001154212165560742010553 0ustar # Copyright (C) 2008-2009 Julien BLACHE # as sane-backends Debian package's copyright holder. # This file is distributed under the same license as the sane-backends package. # Hideki Yamane (Debian-JP) , 2008-2010. # msgid "" msgstr "" "Project-Id-Version: sane-backends 1.0.14-9\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2010-01-09 11:21+0200\n" "Last-Translator: Hideki Yamane (Debian-JP) \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "saned をスタンドアロンなサーバとして有効にしますか?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "" "有効にした場合、saned サーバはネットワーク越しにスキャナを利用できるようにな" "ります。" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "saned を実行するには二通りのやり方があります:\n" " - inetd サービスとして実行し、inetd スーパーサーバから起動する。この場合、" "saned はクライアントが接続の際に inetd の要請に応じて起動されます。\n" " - システム起動時にスタンドアロンなデーモンとして実行する。この場合、saned は" "完全にバックグラウンドで実行されクライアントからの接続を待ちつづけます。" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "スタンドアロンで実行している場合、saned はネットワークに対して存在しているこ" "とを通知します。そのため、クライアント側では何の設定もせずに SANE クライアン" "トがサーバを自動的に認識できるようになります。サーバの設定でクライアントから" "の接続を受け付けられるようにする必要もあります。この機能は実験的なもので、" "Avahi デーモンが動作していることが必要になります。" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "この機能を使いたい場合はこのオプションを有効にしてください。" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "saned ユーザを scanner グループに追加しますか?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "saned サーバが有効にされた場合、ネットワーク越しにスキャナが利用出来るように" "なります。マシンに接続されているスキャナごとに異なった設定を適用することで、" "どれがネットワーク越しに利用できるようにするかをコントロール出来ます。" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "saned の権限の取扱い方については、詳細は /usr/share/doc/sane-utils/README." "Debian を参照してください。デフォルトでは、saned は saned ユーザと saned グ" "ループの権限で動作します。" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "特に制限無く全てのスキャナを有効にしたい場合は、このオプションを有効にしてく" "ださい。" debian/po/it.po0000664000000000000000000001016012165560742010570 0ustar # Translation of sane-backends debconf templates to Italian # This file is distributed under the same license as the sane-backends package. # Luca Monducci , 2008-2010. # msgid "" msgstr "" "Project-Id-Version: sane-backends 1.0.21\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2010-08-20 16:35+0200\n" "Last-Translator: Luca Monducci \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "Attivare saned come servizio autonomo?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "" "Il server saned, quando attivo, rende gli scanner disponibili tramite la " "rete." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Il server può essere eseguito in due modalità:\n" " - come servizio di inetd, attivato dal superserver inetd. In questa\n" " modalità saned è attivato su richiesta quando un client si connette\n" " al server;\n" " - come demone autonomo, attivato all'avvio del sistema. In questa\n" " modalità saned è sempre attivo e in attesa delle connessioni dei\n" " client." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "In modalità autonoma, saned si annuncia da solo sulla rete e può essere " "rilevato automaticamente dai client SANE senza configurare i client. È " "comunque necessario configurare il server per accettare le connessioni dai " "client. Questa funzionalità è sperimentale e richiede che il demone Avahi " "sia attivo." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "Accettare per utilizzare questa funzione." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "Aggiungere l'utente saned al gruppo scanner?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "Il server saned, quando attivo, rende gli scanner disponibili tramite la " "rete. È possibile applicare permessi diversi a ogni scanner collegato alla " "macchina in modo da controllare quali saranno disponibili tramite la rete." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Per sapere come gestire i permessi per saned, leggere /usr/share/doc/sane-" "utils/README.Debian. Con la configurazione predefinita, saned viene eseguito " "con utente e gruppo saned." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Accettare per rendere tutti i propri scanner disponibili sulla rete senza " "alcuna restrizione." debian/po/gl.po0000664000000000000000000001133012165560742010556 0ustar # Galician translation of sane-backends's debconf templates # This file is distributed under the same license as the sane-backends package. # Jacobo Tarrio , 2008. # msgid "" msgstr "" "Project-Id-Version: sane-backends\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2008-05-06 22:50+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "¿Activar saned coma un servidor autónomo?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "" "O servidor saned, cando está activado, deixa os escáneres dispoñibles pola " "rede." #. Type: boolean #. Description #: ../sane-utils.templates:1001 #, fuzzy #| msgid "" #| "There are two ways of running saned:\n" #| " - as an inetd service, started by the inetd superserver. In this mode,\n" #| "saned is started as needed by inetd whenever a client tries to connect to " #| "the server;\n" #| " - as a standalone daemon, started at system boot. In this mode, saned\n" #| "runs in the background all by itself and listens for client connections." msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Hai dúas maneiras de executar saned:\n" " - coma un servizo de inetd, iniciado polo superservidor inetd.\n" " Neste modo, saned iníciase cando sexa necesario cada vez que\n" " un cliente tente conectarse ao servidor;\n" " - coma un servizo autónomo, que se inicia ao arrincar o sistema.\n" " Neste modo, saned execútase en segundo plano e espera\n" " conexións por parte dos clientes." #. Type: boolean #. Description #: ../sane-utils.templates:1001 #, fuzzy #| msgid "" #| "When run in standalone mode, saned advertises itself on the network and " #| "can be detected automatically by the SANE clients with no configuration " #| "on the client side. You still need to configure the server to accept " #| "connections from your clients." msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "Ao executalo en modo autónomo, saned anúnciase na rede e os clientes SANE " "pódeno detectar automaticamente sen necesidade de os configurar. Aínda ha " "ter que configurar o servidor para aceptar conexións dos clientes." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "Acepte esta opción se quere empregar esta funcionalidade." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "¿Engadir saned ao grupo do escáner?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "O servidor saned, cando está activado, fai que os escáneres estean " "dispoñibles pola rede. Aplicando distintos permisos aos diferentes escáneres " "conectados á máquina, pódense controlar cales han estar dispoñibles pola " "rede." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Consulte /usr/share/doc/sane-utils/README.Debian para máis detalles sobre " "como xestionar os permisos de saned. Por defecto, saned execútase co usuario " "e grupo \"saned\"." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Acepte esta opción se quere que tódolos escáneres estean dispoñibles pola " "rede sen restricións." debian/po/zh_CN.po0000664000000000000000000001003112165560742011152 0ustar # Chinese translations for PACKAGE package # PACKAGE 软件包的简体中文翻译. # Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # YunQiang Su , 2010. # msgid "" msgstr "" "Project-Id-Version: saned VERSION\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2010-10-09 16:57+0800\n" "Last-Translator: YunQiang Su \n" "Language-Team: Chinese (simplified) \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "将 saned 作为独立的服务器启动?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "启用 saned 服务器时,将使扫描仪在网络上可用。" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "有两种方式允许 saned:\n" " - 作为一个 inetd 服务,由 inetd 超级服务器启动。此模式下,\n" "服务器在客户端有连接请求时,按需启动;\n" " - 作为一个独立的守护进程,在系统启动时启动。此模式下,saned 一直自己\n" "在后台运行,并且监听客户端的连接。" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "运行在独立模式时,saned 在网络上宣传自己并且可以被 SANE 客户端探测到(免配" "置)。您仍然需要在服务器上进行配置让其接受客户端上的连接。这个功能是实验性的," "并且要求一个正在运行的 Avahi 守护进程。" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "如果想使用这个功能,接受此选项。" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "将 saned 用户添加到 scanner 组?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "启用 saned 服务器时,它使扫描仪在网络上可用。通过向连接到机器上的不同扫描仪提" "供不同的权限,您可以控制让哪个可以在网络上使用。" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "阅读 /usr/share/doc/sane-utils/README.Debian 来获取关于如何管理 saned 权限更" "多细节。默认的,saned 运行在 saned 用户和组下。" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "接受此选项,如果想让扫描仪在网络上不受限制的使用。" debian/po/ru.po0000664000000000000000000001241112165560742010603 0ustar # translation of sane-backends_1.0.20-11_ru.po to Russian # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Yuri Kozlov , 2008. # Yuri Kozlov , 2009. msgid "" msgstr "" "Project-Id-Version: sane-backends_1.0.20-11\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2009-12-30 19:10+0300\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "Запускать saned как отдельную службу?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "Если включена служба saned, то сканеры становятся доступными по сети." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "saned можно запускать двумя способами:\n" " - как служба inetd с помощью суперсервера inetd. В этом режиме saned\n" "запускается в момент, когда в inetd поступает клиентский запрос на\n" "подключение к серверу;\n" " - в виде самостоятельной службы при включении компьютера. В этом\n" "режиме saned работает в фоновом режиме и сам принимает клиентские\n" "подключения." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "При работе в виде самостоятельной службы, saned анонсирует себя в сети и " "может быть автоматически найден клиентами SANE без выполнения настроек на их " "стороне. Вам нужно только настроить сервер для приёма запросов от клиентов. " "Это экспериментальная возможность и требует запущенной службы Avahi." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "Ответьте утвердительно, если хотите использовать эту возможность." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "Добавить учётную запись saned в группу scanner?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "Если включена служба saned, то сканеры становятся доступными через сеть. " "Назначая различные права на конкретные сканеры, подключённые к компьютеру, " "вы можете сделать доступными через сеть только нужные." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "В файле /usr/share/doc/sane-utils/README.Debian подробно описано, как " "управлять правами saned. По умолчанию, saned запускается с правами учётной " "записи и группы saned." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Ответьте утвердительно, если хотите, чтобы все сканеры были доступны по сети " "без ограничений." debian/po/sk.po0000664000000000000000000001041412165560742010573 0ustar # Slovak translations for sane-backends package # Slovenské preklady pre balík sane-backends. # Copyright (C) 2011 THE sane-backends'S COPYRIGHT HOLDER # This file is distributed under the same license as the sane-backends package. # Automatically generated, 2011. # Slavko , 2011. # msgid "" msgstr "" "Project-Id-Version: sane-backends 1.0.22-6\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2011-08-25 10:52+0200\n" "Last-Translator: Slavko \n" "Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "Povoliť saned ako samostatný server?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "Server saned, keď je povolený, sprístupňuje skenery cez sieť." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Existujú dva spôsoby spustenia saned:\n" " - ako služba inetd, spúšťaný pomocou superservera inetd. V tomto režime\n" "je saned spustený na požiadanie, pri pripojení klienta k serveru;\n" " - ako samostatný démon, spúšťaný pri štarte systému. V tomto režime saned\n" "stále beží na pozadí a sám prijíma spojenia klientov." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "Pri spustení v samostatnom režime sa saned sám ponúka v sieti a klienty SANE " "ho tak môžu automaticky zistiť, bez potreby nastavenia na strane klienta. " "Stále však budete musieť nastaviť server tak, aby prijímal spojenia od " "svojich klientov. Táto vlastnosť je experimentálna a vyžaduje bežiaceho " "démona Avahi." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "Vyberte túto voľbu, ak chcete používať túto funkciu." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "Pridať používateľa saned do skupiny scanner?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "Server saned, keď je povolený, sprístupňuje skenery cez sieť. Pomocou " "nastavenia rôznych práv rôznym skenerom, ktoré sú pripojené k vášmu stroju, " "môžete riadiť ktorý(é) z nich bude dostupný cez sieť." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Ďalšie podrobnosti o správe práv saned hľadajte v /usr/share/doc/sane-utils/" "README.Debian. Predvolene je saned spustený s právami používateľa a skupiny " "saned." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Vyberte túto voľbu, ak chcete sprístupniť cez sieť všetky svoje skenery bez " "obmedzení." debian/po/fr.po0000664000000000000000000001072512165560742010572 0ustar # Translation of sane-backends debconf templates to French # Copyright (C) 2008 Christian Perrier # This file is distributed under the same license as the sane-backends package. # # Christian Perrier , 2008, 2009. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2009-12-29 14:10+0100\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "Faut-il activer le serveur « saned » ?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "" "Le serveur « saned », une fois activé, rend disponibles les scanners sur le " "réseau." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Il existe deux méthodes pour exécuter le serveur :\n" " - via le superserveur inetd : dans ce mode, le serveur est lancé\n" " à la demande quand un client se connecte ; \n" " - en tant que démon autonome, lancé au démarrage du système : dans\n" " ce mode, le serveur fonctionne en permanence en tâche de fond, en\n" " attente des connexions des clients." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "En mode autonome, le démon s'annonce sur le réseau et peut alors être " "automatiquement détecté par les clients SANE sans nécessiter de " "configuration particulière de ces clients. Il restera nécessaire de " "configurer le serveur pour qu'il accepte les connexions des clients. Cette " "fonctionnalité est expérimentale et nécessite un démon Avahi opérationnel." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "" "Si vous choisissez cette option, le serveur sera lancé au démarrage du " "système." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "Faut-il ajouter l'utilisateur « saned » au groupe « scanner » ?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "Lorsque le serveur saned est activé, les scanners deviennent accessibles via " "le réseau. Il est possible d'autoriser ou non l'accès via le réseau aux " "différents scanners de cette machine, en modifiant les permissions de chacun " "d'eux." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Veuillez lire le fichier /usr/share/doc/sane-utils/README.Debian pour plus " "d'informations sur la gestion des permissions pour saned. Par défaut, le " "démon est exécuté avec les privilèges de l'utilisateur et du groupe " "« saned »." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Si vous choisissez cette option, tous les scanners deviendront accessibles " "via le réseau sans restriction." debian/po/de.po0000664000000000000000000001032012165560742010542 0ustar # Translation of sane-backends debconf templates to German # Copyright (C) Helge Kreutzmann , 2008, 2009. # This file is distributed under the same license as the sane-backends package. # msgid "" msgstr "" "Project-Id-Version: sane-backends 1.0.20-11\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2009-12-27 10:20+0100\n" "Last-Translator: Helge Kreutzmann \n" "Language-Team: de \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "Aktiviere Saned als Einzel-Server?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "" "Der Saned-Server stellt Scanner ber das Netz zu Verfgung, wenn er " "aktiviert ist." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Es gibt zwei Arten, Saned zu betreiben:\n" " - als Inetd-Service, gestartet ber den Inetd-Superserver. In diesem Modus\n" "wird Saned nach Bedarf gestartet, wenn sich ein Client mit dem Server\n" "verbindet.\n" " - als Einzel-Server, gestartet beim Systemstart. In diesem Modus luft " "Saned\n" " selbst im Hintergrund und wartet auf Anfragen von Clients." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "Im Einzel-Server-Modus macht sich Saned ber das Netz bekannt und kann von " "SANE-Clients ohne Konfiguration auf der Clientseite automatisch erkannt " "werden. Sie mssen dennoch den Server konfigurieren, damit er Verbindungen " "von den Clients akzeptiert. Diese Funktionalitt ist experimentell und " "bentigt einen laufenden Avahi-Daemon." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "" "Akzeptieren Sie diese Option, falls Sie diese Funktionalitt nutzen wollen." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "Saned-Benutzer zu der Scanner-Gruppe hinzufgen?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "Falls er aktiviert wird, stellt der Saned-Server Scanner ber das Netz " "bereit. Durch Verteilen verschiedener Rechte auf verschiedene Scanner an " "Ihrer Maschine knnen Sie steuern, welche davon ber Netz bereitgestellt " "werden." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Lesen Sie /usr/share/doc/sane-utils/README.Debian fr Details ber die " "Rechteverwaltung fr Saned. Standardmig luft Saned unter dem saned-" "Benutzer und dessen Gruppe." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Akzeptieren Sie diese Option, falls Sie alle Ihre Scanner ber das Netz ohne " "Einschrnkungen zur Verfgung stellen wollen." debian/po/ca.po0000664000000000000000000001050212165560742010537 0ustar # sane-backends translation to Catalan # Copyright (C) 2010 Software in the Public Interest # This file is distributed under the same license as the PACKAGE package. # Innocent De Marchi , 2011. # msgid "" msgstr "" "Project-Id-Version: 1.0.22-6\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2011-09-30 19:07+0100\n" "Last-Translator: Innocent De Marchi \n" "Language-Team: catalan \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Catalan\n" "X-Poedit-Country: SPAIN\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "Activar saned com un servidor independent?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "" "El servidor saned, quan està activada, permet tenir els escànners " "disponibles a la xarxa." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Hi ha dues maneres d'executar saned:\n" " - com un servei d'inetd, iniciat pel super servidor inetd. En aquesta " "modalitat,\n" "saned s'inicia en la demanda quan un client es connecta al servidor;\n" " - com un dimoni independent, en l'arrencada del sistema. En aquesta " "modalitat, saned\n" "s'executa en segon pla per si mateix i escolta les connexions dels clients." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "Quan s'executa en mode independent, saned s'anuncia a la xarxa i pot ser " "detectat automàticament pels clients SANE sense que els clients hagin " "d'ésser configurats. Tot i així, és necessari configurar el servidor per " "acceptar connexions dels seus clients. Aquesta característica és " "experimental i requereix que el dimoni Avahi estigui en funcionament." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "Acceptar aquesta opció si desitja fer ús d'aquesta funció." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "Afegir l'usuari saned al grup escànner?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "El servidor saned, quan està activat, fa que els escànners estiguin " "disponibles a la xarxa. Mitjançant l'aplicació de diferents permisos als " "diferents escànners connectats a la vostra màquina, podeu controlar quins " "estaran disponibles a la xarxa." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Llegiu «/usr/share/doc/sane-utils/README.Debian» per a més detalls sobre la " "forma d'administrar els permisos de saned. Per defecte, saned s'executa sota " "l'usuari i grup saned." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Acceptau aquesta opció si voleu que tots els escànners estiguin disponibles " "a la xarxa sense restriccions." debian/po/pt_BR.po0000664000000000000000000001040112165560742011160 0ustar # sane-backends Brazilian Portuguese translation # Copyright (C) 2008 THE sane-backends'S COPYRIGHT HOLDER # This file is distributed under the same license as the sane-backends package. # Eder L. Marques , 2008-2011. # msgid "" msgstr "" "Project-Id-Version: sane-backends-1.0.19-7\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2011-03-19 18:31-0300\n" "Last-Translator: Eder L. Marques \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "Habilitar o saned como um servidor autônomo?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "" "O servidor saned, quando habilitado, torna os scanners disponíveis através " "da rede." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Existem duas maneiras de executar o saned:\n" " - como um serviço inetd, iniciado pelo super-servidor inetd. Nesse\n" "modo, o saned é iniciado sob demanda quando um cliente conecta ao\n" "servidor;\n" " - como um daemon autônomo, iniciado na inicialização do sistema. Nesse\n" "modo, o saned executa em segundo plano por si só e escuta por conexões\n" "de clientes." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "Quando executado no modo autônomo, o saned publica-se na rede e pode ser " "detectado automaticamente pelos clientes SANE sem nenhuma configuração no " "lado do cliente. Você continua precisando configurar o servidor para aceitar " "conexões de seus clientes. Esse recurso é experimental e requer um daemon " "Avahi em execução." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "Aceite esta opção se você quer fazer uso desse recurso." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "Adicionar o usuário saned ao grupo scanner?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "O servidor saned, quando habilitado, torna os scanners disponíveis através " "da rede. Ao aplicar diferentes permissões a diferentes scanners conectados a " "sua máquina, você pode controlar quais estarão disponíveis através da rede." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Leia /usr/share/doc/sane-utils/README.Debian para detalhes sobre como " "gerenciar permissões para o saned. Por padrão, o saned é executado sob o " "usuário e grupo saned." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Aceite esta opção se você quer tornar todos os seus scanners disponíveis " "através da rede sem restrições." debian/po/es.po0000664000000000000000000001206212165560742010566 0ustar # sane-backends translation to spanish # Copyright (C) 2010 Software in the Public Interest # This file is distributed under the same license as the sane-backends package. # # Changes: # - Initial translation # Ignacio Mondino , 2008 # # - Updates # Camaleón , 2010 # # Traductores, si no conoce el formato PO, merece la pena leer la # documentación de gettext, especialmente las secciones dedicadas a este # formato, por ejemplo ejecutando: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Equipo de traducción al español, por favor lean antes de traducir # los siguientes documentos: # - El proyecto de traducción de Debian al español # http://www.debian.org/intl/spanish # especialmente las notas de traducción en # http://www.debian.org/intl/spanish/notas # # - La guía de traducción de po's de debconf: # /usr/share/doc/po-debconf/README-trans # o http://www.debian.org/intl/l10n/po-debconf/README-trans # # msgid "" msgstr "" "Project-Id-Version: sane-backends_1.0.21-4\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2010-10-10 14:03+0100\n" "Last-Translator: Camaleón \n" "Language-Team: Debian Spanish team \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "¿Desea activar saned como un servidor independiente?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "" "Se puede acceder a los escáneres a través de la red cuando se activa el " "servidor saned." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Hay dos maneras de ejecutar saned:\n" " - como un servicio inetd, iniciado por el súper servidor inetd. En este " "modo,\n" "saned se inicia bajo demanda cada vez que el cliente intenta conectarse al " "servidor;\n" " - como un demonio independiente, lanzado al inicio del sistema. En este " "modo, saned\n" "se ejecuta en segundo plano a sí mismo y escucha las conexiones de los " "clientes." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "En modo independiente, saned se anuncia a sí mismo en la red y puede " "detectarse automáticamente por los clientes SANE sin configuración por parte " "de los mismos. Aun así, será necesario que configure el servidor para " "aceptar conexiones de los clientes. Esta característica es experimental y " "necesita que el demonio Avahi esté en ejecución." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "Acepte esta opción si desea utilizar esta característica." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "¿Desea agregar al usuario saned al grupo scanner?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "Se puede acceder a los escáneres a través de la red cuando está activado el " "servidor saned. Puede controlar qué dispositivos se ofrecerán de esta forma " "aplicando distintos permisos a los distintos escáneres conectados a su " "equipo." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Consulte «/usr/share/doc/sane-utils/README.Debian» para obtener detalles " "sobre cómo gestionar los permisos para saned. De manera predeterminada, " "saned se ejecuta con el usuario y grupo saned." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Acepte esta opción si desea que todos los escáneres estén disponibles a " "través de la red sin restricciones." debian/po/cs.po0000664000000000000000000001031312165560742010561 0ustar # Czech translation of sane-backends debconf messages. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the sane-backends package. # Miroslav Kure , 2008-2010 # msgid "" msgstr "" "Project-Id-Version: sane-backends\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2010-09-28 12:02+0200\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "Povolit saned jako samostatný server?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "" "Pokud je saned server povolený, zpřístupňuje dostupné scannery přes síť." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Existují dva způsoby spouštění saned:\n" " - jako služba inetd, kterou startuje superserver inetd. V tomto režimu je " "saned spuštěn pouze v případě, že se klient snaží připojit k serveru;\n" " - jako samostatný daemon spouštěný při zavádění systému. V tomto režimu " "běží saned celou dobu na pozadí a sám naslouchá příchozím spojením." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "Při spuštění jako samostatný daemon se saned sám nabízí na síti a SANE " "klienti ho mohou rozpoznat automaticky, bez dalšího nastavování na straně " "klienta. Stále však budete muset nastavit server, aby přijímal příchozí " "spojení od klientů. Tato vlastnost je experimentální a vyžaduje běžícího " "daemona Avahi." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "Chcete-li této vlastnosti využít, odpovězte kladně." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "Přidat uživatele saned do skupiny scanner?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "Pokud je saned server povolený, zpřístupňuje dostupné scannery přes síť. " "Nastavením různých přístupových oprávnění ke scannerům připojeným k tomuto " "počítači můžete řídit, které scannery mají být přístupné přes síť." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Podrobnosti o správě oprávnění pro saned se dočtete v /usr/share/doc/sane-" "utils/README.Debian. Ve výchozím nastavení se saned spouští pod uživatelem i " "skupinou saned." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Chcete-li zpřístupnit přes síť všechny scannery bez omezení, tuto možnost " "povolte." debian/po/vi.po0000664000000000000000000001116712165560742010602 0ustar # Vietnamese translation for SANE Backends. # Copyright © 2010 Free Software Foundation, Inc. # Clytie Siddall , 2008-2010. # msgid "" msgstr "" "Project-Id-Version: sane-backends 1.0.21-4.1\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2010-10-27 14:41+1030\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: LocFactoryEditor 1.8\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "Bật saned làm trình phục vụ độc lập ?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "Bật trình phục vụ saned thì làm cho máy quét sẵn sàng qua mạng." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Có hai phương pháp chạy saned:\n" " • làm dịch vụ inetd, được khởi chạy bởi siêu trình phục vụ inetd.\n" "\tTrong chế độ này, saned được khởi chạy theo yêu cầu,\n" "\tkhi ứng dụng khách kết nối đến trình phục vụ.\n" " • làm trình nền độc lập, được khởi chạy vào lúc khởi động hệ thống.\n" "\tTrong chế độ này, saned chạy một mình về nền,\n" "\tvà lắng nghe kết nối của ứng dụng khách." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "Chạy trong chế độ độc lập thì trình nền saned tự quảng cáo trên mạng, và có " "thể được tự động phát hiện bởi ứng dụng khách SANE mà không cần cấu hình " "riêng bên khách. Bạn vẫn còn cần phải cấu hình trình phục vụ để chấp nhận " "kết nối từ ứng dụng khách. Tính năng này vẫn còn dựa vào thực nghiệm, cũng " "yêu cầu một trình nền Avahi đang chạy." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "Bật tuỳ chọn này để sử dụng tính năng đó." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "Thêm người dùng saned vào nhóm « scanner » ?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "Bật trình phục vụ saned thì làm cho máy quét sẵn sàng trên khắp mạng. Bằng " "cách áp dụng các quyền hạn khác nhau cho những máy quét khác nhau được kết " "nối đến máy này, bạn có thể điều khiển những máy quét sẽ được công bố qua " "mạng." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Xem tài liệu Đọc Đi « /usr/share/doc/sane-utils/README.Debian » để tìm chi " "tiết về quản lý quyền hạn cho saned như thế nào. Mặc định là saned được chạy " "dưới người dùng và nhóm « saned »." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Bật tùy chọn này để làm cho tất cả các máy quét sẵn sàng qua mạng một cách " "không điều kiện." debian/po/sv.po0000664000000000000000000001033712165560742010612 0ustar # translation of sane-backends to swedish # Copyright (C) 2009 Martin Bagge # This file is distributed under the same license as the sane-backends package. # # Martin Bagge , 2008, 2009. msgid "" msgstr "" "Project-Id-Version: sane-backends_1.0.19-10_sv\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2009-12-29 11:26+0100\n" "Last-Translator: Martin Bagge \n" "Language-Team: swedish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "Aktivera saned som ensamstående tjänst?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "När saned är aktiverad så kan man komma åt scanrarna över nätverket." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Det finns två sätt att köra saned:\n" " - som en inetd-tjänst, startad av superservern inetd. I detta läge\n" "startas saned när en klient som behöver saned ansluter till servern.\n" " - som ensamstående tjänst, startad av systemet vid uppstart. I\n" "detta läge körs saned i bakgrunden hela tiden och lyssnar efter\n" "anslutningar från klienter." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "När saned körs i ensamstående läge så meddelar saned det till nätverket och " "kan på så vis automatiskt upptäckas av SANE-klienter utan att det behöver " "ställas in något på klient-sidan. Du behöver dock fortfarande ställa in " "tjänsten att ta emot anslutningar från klienterna. Denna funktion är " "experimentiell och kräver att Avahi-tjänsten körs." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "Välj detta alternativet om du vill använda denna funktionen." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "Lägg till en saned-användare till scanner-gruppen?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "När saned är aktiverad så kan man komma åt scanrarna över nätverket. Genom " "att ange olika regler till de olika scanrarna så kan du kontrollera vilka " "som ska vara tillgängliga över nätverket." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Läs /usr/share/doc/sane-utils/README.Debian för detaljerad information om " "hur man ställer in reglerna för saned. I standardläget körs saned i en egen " "användare och grupp 'saned'." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Ange detta alternativ om du vill göra alla dina scanrar tillgängliga över " "nätverket utan några restriktioner." debian/po/pl.po0000664000000000000000000001043412165560742010573 0ustar # Translation of sane-backends debconf templates to Polish. # Copyright (C) 2009 # This file is distributed under the same license as the sane-backends package. # # Michał Kułach , 2012. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2012-02-02 11:05+0100\n" "Last-Translator: Michał Kułach \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "Włączyć saned jako samodzielny serwer?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "Serwer saned, kiedy jest uruchomiony, udostępnia skanery w sieci." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Są dwa sposoby działania saned:\n" " - jako usługa inetd, uruchomiona przez super-serwer inetd. W tym trybie " "saned\n" "jest uruchamiany na żądanie, podczas połączenia klienta z serwerem;\n" " - jako samodzielny demon, uruchamiany podczas rozruchu systemu. W tym " "trybie\n" "saned działa w tle i nasłuchuje połączeń klientów." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "Jeśli program działa w trybie samodzielnym, saned rozgłasza się w sieci i " "może być automatycznie wykrywany przez klienty SANE, bez potrzeby " "konfiguracji po stronie klienta. Nadal jednak będzie konieczne " "skonfigurowanie serwera tak, aby akceptował połączenia od klientów. Funkcja " "ta jest eksperymentalna i wymaga działania demona Avahi." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "Proszę wybrać \"tak\", aby używać tej funkcji." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "Czy dodać użytkownika saned do grupy scanner?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "Serwer saned, kiedy jest uruchomiony, udostępnia skanery w sieci. Po " "wprowadzeniu różnych uprawnień dla różnych skanerów podłączonych do tego " "komputera, można kontrolować który z nich ma być dostępny w sieci." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Proszę zapoznać się z /usr/share/doc/sane-utils/README.Debian, aby " "dowiedzieć się więcej o zarządzaniu uprawnieniami saned. Domyślnie saned " "działa z poziomu użytkownika i grupy saned." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Proszę wybrać \"tak\", aby udostępnić wszystkie swoje skanery w sieci bez " "dodatkowych ograniczeń." debian/po/eu.po0000664000000000000000000001054212165560742010571 0ustar # translation of sane-backends_1.0.21-4.1_eu.po to Basque # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Piarres Beobide , 2008. # Iñaki Larrañaga Murgoitio , 2010. msgid "" msgstr "" "Project-Id-Version: sane-backends_1.0.21-4.1_eu\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2010-10-09 13:12+0200\n" "Last-Translator: Iñaki Larrañaga Murgoitio \n" "Language-Team: Basque \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "Saned bakarkako zerbitzari gisa gaitu?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "" "Saned zerbitzariak, gaituta dagoenean, eskanerrak sarearen bidez eskuragarri " "egiten ditu." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Saned exekutatzeko bi modu daude:\n" " - inetd zerbitzu gisa, inetd superzerbitzariak abiarazita. Modu honetan\n" "saned behar denean inetd bidez abiaraziko da bezero batek zerbitzarira " "konektatzen saiatzean;\n" " - bakarkako deabru gisa, sistemaren abioan abiarazita. Modu honetan, saned\n" "atzeko planoan exekutatzen da eta bezeroen konexioei itxoiten die." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "Bakarkako moduan exekutatzean, saned-ek bere burua sarean aurkezten du eta " "automatikoki atzeman dezakete SANE bezeroek konfigurazio berezirik gabe. Zuk " "zerbitzaria konfiguratu behar duzu bezeroetatik konexioak onartzeko. " "Eginbide hau esperimentala da, eta Avahi daemona exekutatzen egotea eskatzen " "du." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "Onartu aukera hau eginbide hau erabiltzea nahi baduzu." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "Gehitu saned erabiltzailea scanner taldera?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "Saned zerbitzariak, gaituta dagoenean, eskanerrak sarearen bidez erabilgarri " "egiten ditu. Zure makinara konektatuta dagoen eskaner bakoitzari baimen " "desberdinak ezarriz horietariko zein sarearen bidez erabilgarri izango diren " "kontrola dezakezu." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Irakurri /usr/share/doc/sane-utils/README.Debian saned-eko baimen " "kudeaketari buruz xehetasun gehiagorako. Lehenetsi gisa saned zerbitzaria " "saned erabiltzaile eta taldearekin exekutatzen da." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Onartu aukera hau zure eskaner guztiak sarearen bidez eta mugarik gabe " "erabilgarri egin bahi badituzu." debian/po/da.po0000664000000000000000000001023612165560742010544 0ustar # Danish translation sane-backends. # Copyright (C) 2010 sane-backends & nedenstående oversættere. # This file is distributed under the same license as the sane-backends package. # Joe Hansen , 2010. # msgid "" msgstr "" "Project-Id-Version: sane-backends\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2010-10-09 13:26+0100\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "Aktiver saned som en enkeltstående server?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "" "Saned-serveren, når aktiveret, gør skannere tilgængelige over netværket." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Der er to måder at køre saned:\n" " - som en inetd-tjeneste, startet af inetd-superserveren. I denne\n" "tilstand startes saned efter behov, når en klient forbinder til serveren;\n" " - som en enkeltsående dæmon, igangsat ved systemopstart. I denne tilstand,\n" "kører saned i baggrunden og lytter efter klientforbindelser." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "Når kørt i enkeltstående tilstand, reklamerer saned for sig selv på " "netværket og kan detekteres automatisk af SANE-klienter uden nogen " "konfiguration fra klientsiden. Du skal stadig konfigurere serveren til at " "acceptere forbindelserne fra dine klienter. Denne funktion er eksperimentel " "og kræver en kørende Avahidæmon." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "Accepter denne indstilling hvis du ønsker at bruge denne funktion." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "Tilføj sanedbruger til skannergruppen?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "Sanedserveren, når aktiveret, gør skannere tilgængelige over netværket. Ved " "at anvende forskellige rettigheder for de forskellige skannere tilsluttet " "din maskine, kan du kontrollere hvilke, som vil være tilgængelige over " "netværket." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Læs /usr/share/doc/sane-utils/README.Debian for detaljer om hvordan du " "håndterer rettigheder for saned. Som standard køres saned under " "sanedbrugeren og -gruppen." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Accepter denne indstilling hvis du ønsker at gøre alle dine skannere " "tilgængelige over netværket uden begrænsninger." debian/po/POTFILES.in0000664000000000000000000000005712165560742011375 0ustar [type: gettext/rfc822deb] sane-utils.templates debian/po/templates.pot0000664000000000000000000000526112165560742012344 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" debian/po/pt.po0000664000000000000000000001036712165560742010610 0ustar # translation of sane-backends debconf to Portuguese # Copyright (C) 2008 the sane-backends's copyright holder # This file is distributed under the same license as the sane-backends package. # # Américo Monteiro , 2008, 2009. msgid "" msgstr "" "Project-Id-Version: sane-backends 1.0.20-11\n" "Report-Msgid-Bugs-To: sane-backends@packages.debian.org\n" "POT-Creation-Date: 2009-12-12 13:14+0100\n" "PO-Revision-Date: 2009-12-27 21:49+0000\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Enable saned as a standalone server?" msgstr "Activar o saned como servidor autónomo?" #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "The saned server, when enabled, makes scanners available over the network." msgstr "" "O servidor saned, quando activo, torna os scanners disponíveis na rede. " #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "There are two ways of running saned:\n" " - as an inetd service, started by the inetd superserver. In this mode,\n" "saned is started on demand when a client connects to the server;\n" " - as a standalone daemon, started at system boot. In this mode, saned\n" "runs in the background all by itself and listens for client connections." msgstr "" "Existem duas maneiras de correr o saned:\n" "- como um serviço inetd, iniciado pelo superservidor inetd. Neste modo,\n" "o saned arranca a pedido quando um cliente se liga ao servidor;\n" "- como um deamon autónomo, iniciado no arranque do sistema. Neste modo,\n" "o saned corre autónomo em segundo plano e escuta por ligações de clientes." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "" "When run in standalone mode, saned advertises itself on the network and can " "be detected automatically by the SANE clients with no configuration on the " "client side. You still need to configure the server to accept connections " "from your clients. This feature is experimental and requires a running Avahi " "daemon." msgstr "" "Quando corre em modo autónomo, o saned anuncia-se a si próprio na rede e " "pode ser detectado automaticamente pelos clientes do SANE sem nenhuma " "configuração no lado do cliente. Você ainda precisa de configurar o servidor " "para aceitar ligações dos seus clientes. Esta funcionalidade é experimental " "e requer um daemon Avahi em funcionamento." #. Type: boolean #. Description #: ../sane-utils.templates:1001 msgid "Accept this option if you want to make use of this feature." msgstr "Aceite esta opção se deseja usar esta funcionalidade." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "Add saned user to the scanner group?" msgstr "Adicionar o utilizador saned ao grupo scanner?" #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "The saned server, when enabled, makes scanners available over the network. " "By applying different permissions to the different scanners connected to " "your machine, you can control which ones will be made available over the " "network." msgstr "" "O servidor saned, quando activo, torna os scanners disponíveis na rede. Ao " "aplicar diferentes permissões aos vários scanners ligados à sua máquina, " "você pode controlar quais deles estarão disponíveis na rede." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Read /usr/share/doc/sane-utils/README.Debian for details on how to manage " "permissions for saned. By default, saned is run under the saned user and " "group." msgstr "" "Leia /usr/share/doc/sane-utils/README.Debian para detalhes em como gerir " "permissões para o saned. Por pré-definição, o saned corre sob o utilizador e " "grupo saned." #. Type: boolean #. Description #: ../sane-utils.templates:2001 msgid "" "Accept this option if you want to make all your scanners available over the " "network without restriction." msgstr "" "Aceite esta opção se deseja tornar todos os seus scanners disponíveis na " "rede sem restrições." debian/libsane.postrm0000664000000000000000000000030012165560742012054 0ustar #!/bin/sh set -e #DEBHELPER# # remove directory /etc/sane.d/ if [ "$1" = "purge" ]; then echo "Removing directory /etc/sane.d/ ..." rmdir --ignore-fail-on-non-empty /etc/sane.d/ fi debian/libsane.shlibs0000664000000000000000000000004012165560742012015 0ustar libsane 1 libsane (>= 1.0.11-3) debian/libsane.NEWS0000664000000000000000000000103612165560742011313 0ustar sane-backends (1.0.22-1) unstable; urgency=low Starting with this version, sane-backends requires the /dev filesystem to support ACLs in order to manage the permissions on scanner devices. This change was made to provide better support for multi-function (MFP) devices. No action is required on standard Debian systems for this to work; however, if you have an unusual setup or use a custom kernel, make sure ACLs are available on /dev on your system. -- Julien BLACHE Thu, 02 Jun 2011 14:57:53 +0200 debian/patches/0000775000000000000000000000000012253323217010617 5ustar debian/patches/dll_backend_conf.patch0000664000000000000000000000231712165560742015102 0ustar Description: Add a header to dll.conf Document dll.conf in a header, point to the dll.d directory for external backends and document the net backend w/ pointers to the manpages. . Also remove the pint backend as it's not available on our platforms. Author: Julien BLACHE Index: sane-backends-1.0.22/backend/dll.conf.in =================================================================== --- sane-backends-1.0.22.orig/backend/dll.conf.in 2011-01-16 02:01:28.000000000 +0100 +++ sane-backends-1.0.22/backend/dll.conf.in 2011-02-14 19:02:42.925016002 +0100 @@ -1,4 +1,12 @@ -# enable the next line if you want to allow access through the network: +# /etc/sane.d/dll.conf - Configuration file for the SANE dynamic backend loader +# +# Backends can also be enabled by configuration snippets under +# /etc/sane.d/dll.d directory -- packages providing backends should drop +# a config file similar to dll.conf in this directory, named after the package. +# + +# The next line enables the network backend; comment it out if you don't need +# to use a remote SANE scanner over the network - see sane-net(5) and saned(8) net abaton agfafocus @@ -56,7 +64,6 @@ niash #p5 pie -pint pixma plustek #plustek_pp debian/patches/fix-FTBFS-format-not-a-string-literal-error.patch0000664000000000000000000000136412165560742021673 0ustar From: Markus Koschany Date: Thu, 27 Jun 2013 12:12:40 +0200 Subject: fix FTBFS format not a string literal error --- frontend/scanimage.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/scanimage.c b/frontend/scanimage.c index ce958df..8f4a727 100644 --- a/frontend/scanimage.c +++ b/frontend/scanimage.c @@ -1893,7 +1893,7 @@ main (int argc, char **argv) printf (start, int_arg); break; case 0: - printf (start); + printf ("%s", start); break; } *percent = cc; @@ -1907,7 +1907,7 @@ main (int argc, char **argv) } } if (*start) - printf (start); + printf ("%s", start); } } if (i == 0 && ch != 'f') debian/patches/trim-libraries-in-sane-backends.pc.in.patch0000664000000000000000000000177112165560742020711 0ustar From: Markus Koschany Date: Sun, 30 Jun 2013 19:13:54 +0200 Subject: trim libraries in sane-backends.pc.in Update the original sane-config_and_pkg-config_fixes.patch from Julien BLACHE. Patching RPATH related flags is no longer necessary. Still trim the libraries in sane-backends.pc.in to the bare minimum for what is needed for libsane. --- tools/sane-backends.pc.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/sane-backends.pc.in b/tools/sane-backends.pc.in index b4d9731..6124747 100644 --- a/tools/sane-backends.pc.in +++ b/tools/sane-backends.pc.in @@ -2,8 +2,8 @@ prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ -ldflags=@LDFLAGS@ @GPHOTO2_LDFLAGS@ -libs=@LIBS@ @DL_LIBS@ @LIBV4L_LIBS@ @MATH_LIB@ @TIFF_LIBS@ @JPEG_LIBS@ @GPHOTO2_LIBS@ @SOCKET_LIBS@ @AVAHI_LIBS@ @USB_LIBS@ @SCSI_LIBS@ @RESMGR_LIBS@ +ldflags=@LDFLAGS@ +libs=@LIBS@ Name: SANE Backends Description: Backends for SANE, the universal scanner interface debian/patches/unneeded_doc.patch0000664000000000000000000000601412253322405014253 0ustar From: Markus Koschany Date: Sun, 30 Jun 2013 19:29:40 +0200 Subject: unneeded_doc Avoid generating some docs we don't want. Do not generate some documentation we do not want; do not include sane.png in the html documentation, as it is not distributed in the source tarball. Original Author: Julien BLACHE --- Makefile.in | 6 +----- doc/Makefile.in | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) Index: sane-backends-1.0.23/Makefile.in =================================================================== --- sane-backends-1.0.23.orig/Makefile.in 2012-08-15 11:49:39.000000000 +1000 +++ sane-backends-1.0.23/Makefile.in 2013-12-15 23:44:08.000000000 +1100 @@ -298,11 +298,7 @@ top_srcdir = @top_srcdir@ SUBDIRS = include lib sanei backend frontend tools doc po DIST_SUBDIRS = include lib sanei backend frontend tools doc po japi testsuite -dist_doc_DATA = AUTHORS ChangeLog COPYING LICENSE NEWS PROBLEMS PROJECTS \ - README README.aix README.beos README.darwin README.djpeg README.freebsd \ - README.hp-ux README.linux README.netbsd README.openbsd README.os2 \ - README.solaris README.unixware2 README.unixware7 README.windows \ - README.zeta +dist_doc_DATA = README AUTHORS NEWS PROBLEMS PROJECTS EXTRA_DIST = ChangeLog-1.0.0 ChangeLog-1.0.1 ChangeLog-1.0.2 \ ChangeLog-1.0.3 ChangeLog-1.0.4 ChangeLog-1.0.5 ChangeLog-1.0.6 \ Index: sane-backends-1.0.23/doc/Makefile.in =================================================================== --- sane-backends-1.0.23.orig/doc/Makefile.in 2013-12-15 23:44:08.000000000 +1100 +++ sane-backends-1.0.23/doc/Makefile.in 2013-12-15 23:44:08.000000000 +1100 @@ -337,7 +337,7 @@ MAN2HTML = nroff -c -man |\ man2html -compress -topm 6 -botm 6 -nodepage -title $${page} \ -cgiurl '$$title.$$section.html'|\ - sed 's,,

,' + sed 's,,,' beman5dir = $(mandir)/man5 BEDOCS = canon/canon.changes canon/canon.install2700F.txt \ Index: sane-backends-1.0.23/Makefile.am =================================================================== --- sane-backends-1.0.23.orig/Makefile.am 2011-11-22 07:17:48.000000000 +1100 +++ sane-backends-1.0.23/Makefile.am 2013-12-15 23:47:59.435944300 +1100 @@ -7,11 +7,7 @@ SUBDIRS = include lib sanei backend frontend tools doc po DIST_SUBDIRS = include lib sanei backend frontend tools doc po japi testsuite -dist_doc_DATA = AUTHORS ChangeLog COPYING LICENSE NEWS PROBLEMS PROJECTS \ - README README.aix README.beos README.darwin README.djpeg README.freebsd \ - README.hp-ux README.linux README.netbsd README.openbsd README.os2 \ - README.solaris README.unixware2 README.unixware7 README.windows \ - README.zeta +dist_doc_DATA = README AUTHORS NEWS PROBLEMS PROJECTS EXTRA_DIST = ChangeLog-1.0.0 ChangeLog-1.0.1 ChangeLog-1.0.2 \ ChangeLog-1.0.3 ChangeLog-1.0.4 ChangeLog-1.0.5 ChangeLog-1.0.6 \ ChangeLog-1.0.7 ChangeLog-1.0.8 ChangeLog-1.0.9 ChangeLog-1.0.10 \ debian/patches/sane-desc.c_debian_mods.patch0000664000000000000000000000452212165560742016262 0ustar Description: Tweak sane-desc to suit our needs Do not link to HTML manpages, we do not have them installed. Also, do not use sane.png, as it's not distributed in the source tarball. Do not output a timestamp as part of the udev rules file header, as this breaks multiarch. Author: Julien BLACHE Index: sane-backends-1.0.22/tools/sane-desc.c =================================================================== --- sane-backends-1.0.22.orig/tools/sane-desc.c 2011-06-13 15:35:40.875152727 +0200 +++ sane-backends-1.0.22/tools/sane-desc.c 2011-11-21 15:51:25.135951802 +0100 @@ -46,7 +46,7 @@ #define SANE_DESC_VERSION "3.5" -#define MAN_PAGE_LINK "http://www.sane-project.org/man/%s.5.html" +#define MAN_PAGE_LINK "/usr/share/doc/libsane/html/%s.5.html" #define COLOR_MINIMAL "\"#B00000\"" #define COLOR_BASIC "\"#FF9000\"" #define COLOR_GOOD "\"#90B000\"" @@ -2496,8 +2496,8 @@ printf ("
\n"); } if (be->manpage) - printf ("Manual page: %s
\n", be->manpage, be->manpage); + printf ("Manual page:" + "%s
\n", be->manpage); if (be->comment) printf ("Comment: %s
\n", be->comment); @@ -2731,9 +2731,9 @@ printf ("\n"); if (model_record->be->manpage) - printf ("%s\n", - model_record->be->manpage, model_record->be->manpage); + printf ("" + "%s\n", + model_record->be->manpage); else printf ("?\n"); @@ -2758,8 +2758,8 @@ printf ("\n" "\n" - "
\n" - "\"SANE\"\n"); + "
\n"); + /* "\"SANE\"\n"); */ printf ("

%s

\n", title); printf ("
\n" "
\n"); printf ("%s\n", intro); @@ -3436,8 +3436,8 @@ { time_t current_time = time (0); printf ("# This file was automatically created based on description files (*.desc)\n" - "# by sane-desc %s from %s on %s", - SANE_DESC_VERSION, PACKAGE_STRING, asctime (localtime (¤t_time))); + "# by sane-desc %s from %s\n", + SANE_DESC_VERSION, PACKAGE_STRING); printf ("#\n" debian/patches/fix_avahi_error_paths.patch0000664000000000000000000000236012236360667016222 0ustar Description: Fix potential assert in avahi backend avahi_browser contains a reference to an AvahiClient, which may be avahi_client. If it does, then freeing avahi_browser references avahi_client, resulting in an assert() in Avahi's linked list macro. . Fix this by freeing avahi_browser before avahi_client. Author: Christopher James Halse Rogers Bug-Ubuntu: https://bugs.launchpad.net/bugs/831867 Index: sane-backends-1.0.22/backend/net.c =================================================================== --- sane-backends-1.0.22.orig/backend/net.c 2011-09-21 13:59:20.714459585 +1000 +++ sane-backends-1.0.22/backend/net.c 2011-09-21 14:00:38.774460412 +1000 @@ -846,15 +846,15 @@ if (error == AVAHI_ERR_DISCONNECTED) { /* Server disappeared - try to reconnect */ - avahi_client_free (avahi_client); - avahi_client = NULL; - if (avahi_browser) { avahi_service_browser_free (avahi_browser); avahi_browser = NULL; } + avahi_client_free (avahi_client); + avahi_client = NULL; + avahi_client = avahi_client_new (avahi_threaded_poll_get (avahi_thread), AVAHI_CLIENT_NO_FAIL, net_avahi_callback, NULL, &error); if (avahi_client == NULL) { debian/patches/multiarch_dll_search_path.patch0000664000000000000000000000513512253323217017030 0ustar Description: Keep /usr/lib/sane as a fallback for SANE backends Make /usr/lib/arch_triplet/sane the default location for SANE backends, but keep /usr/lib/sane as a fallback for now. Author: Julien BLACHE Index: sane-backends-1.0.23/backend/dll.c =================================================================== --- sane-backends-1.0.23.orig/backend/dll.c 2012-08-10 10:33:29.000000000 +1000 +++ sane-backends-1.0.23/backend/dll.c 2013-12-15 23:44:08.000000000 +1100 @@ -430,7 +430,7 @@ if (path) { - src_len = strlen (path) + strlen (STRINGIFY (LIBDIR)) + 1 + 1; + src_len = strlen (path) + strlen (DEB_DLL_LIBDIR) + 1 + 1; src = malloc (src_len); if (!src) { @@ -438,12 +438,11 @@ return SANE_STATUS_NO_MEM; } orig_src = src; - snprintf (src, src_len, "%s:%s", path, STRINGIFY (LIBDIR)); + snprintf (src, src_len, "%s:%s", path, DEB_DLL_LIBDIR); } else { - src = STRINGIFY (LIBDIR); - src = strdup (src); + src = strdup (DEB_DLL_LIBDIR); if (!src) { DBG (1, "load: strdup failed: %s\n", strerror (errno)); Index: sane-backends-1.0.23/backend/Makefile.in =================================================================== --- sane-backends-1.0.23.orig/backend/Makefile.in 2012-08-15 11:49:37.000000000 +1000 +++ sane-backends-1.0.23/backend/Makefile.in 2013-12-15 23:50:32.000000000 +1100 @@ -1680,7 +1680,7 @@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -AM_CPPFLAGS = -I. -I$(srcdir) -I$(top_builddir)/include -I$(top_srcdir)/include -DLIBDIR="$(libdir)/sane" +AM_CPPFLAGS = -I. -I$(srcdir) -I$(top_builddir)/include -I$(top_srcdir)/include -DLIBDIR="$(libdir)/sane" -DDEB_DLL_LIBDIR="\"$(libdir)/sane:$(prefix)/lib/sane\"" AM_LDFLAGS = @STRICT_LDFLAGS@ # The -rpath option is added because we are creating _LTLIBRARIES based # on configure substitution. This causes automake to not know the Index: sane-backends-1.0.23/backend/Makefile.am =================================================================== --- sane-backends-1.0.23.orig/backend/Makefile.am 2013-12-15 23:50:32.000000000 +1100 +++ sane-backends-1.0.23/backend/Makefile.am 2013-12-15 23:54:36.113103917 +1100 @@ -24,7 +24,7 @@ SCSI_LIBS = @SCSI_LIBS@ PTHREAD_LIBS = @PTHREAD_LIBS@ -AM_CPPFLAGS = -I. -I$(srcdir) -I$(top_builddir)/include -I$(top_srcdir)/include -DLIBDIR="$(libdir)/sane" +AM_CPPFLAGS = -I. -I$(srcdir) -I$(top_builddir)/include -I$(top_srcdir)/include -DLIBDIR="$(libdir)/sane" -DDEB_DLL_LIBDIR="\"$(libdir)/sane:$(prefix)/lib/sane\"" V_MAJOR = @V_MAJOR@ V_MINOR = @V_MINOR@ debian/patches/kfreebsd.patch0000664000000000000000000000105612165560742013437 0ustar description: Fix build failure on kfreebsd (closes: #680234) author: Petr Salinger Index: sane-backends-1.0.22/backend/umax_pp_low.c =================================================================== --- sane-backends-1.0.22.orig/backend/umax_pp_low.c 2010-12-01 18:49:58.000000000 -0500 +++ sane-backends-1.0.22/backend/umax_pp_low.c 2012-07-15 17:10:47.000000000 -0400 @@ -73,8 +73,10 @@ #endif #ifdef HAVE_MACHINE_CPUFUNC_H +#ifndef __GLIBC__ #include #endif +#endif #ifdef HAVE_I386_SET_IOPERM #include debian/patches/disable_v4l.patch0000664000000000000000000000153212236361501014030 0ustar From: Robert Ancell Description: Disable V4L backend, xsane should not detect TV cards. Bug-Ubuntu: https://launchpad.net/bugs/87312 diff -urNad sane-backends-1.0.20~/backend/v4l.conf.in sane-backends-1.0.20/backend/v4l.conf.in --- sane-backends-1.0.20~/backend/v4l.conf.in 2006-01-06 00:27:10.000000000 +0800 +++ sane-backends-1.0.20/backend/v4l.conf.in 2010-04-14 22:23:57.486410839 +0800 @@ -2,9 +2,11 @@ # In order to use the v4linux backend you have to give the device # You can enable multiple lines if # you really have multible v4l devices. -# -/dev/bttv0 -/dev/video0 -/dev/video1 -/dev/video2 -/dev/video3 + +# Backends disabled, to re-enable unquote the following lines +# See https://bugs.launchpad.net/ubuntu/+source/sane-backends/+bug/87312 +#/dev/bttv0 +#/dev/video0 +#/dev/video1 +#/dev/video2 +#/dev/video3 debian/patches/frontend_libs.patch0000664000000000000000000000331312253323010014457 0ustar From: Markus Koschany Date: Sun, 30 Jun 2013 15:20:24 +0200 Subject: frontend_libs Only link frontends against the libraries they need Reduce the dependencies on frontends by linking in only the required libraries. --- frontend/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: sane-backends-1.0.23/frontend/Makefile.in =================================================================== --- sane-backends-1.0.23.orig/frontend/Makefile.in 2012-08-15 11:49:38.000000000 +1000 +++ sane-backends-1.0.23/frontend/Makefile.in 2013-12-15 23:44:08.000000000 +1100 @@ -143,7 +143,7 @@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ +LIBS = LIBTOOL = @LIBTOOL@ LIBUSB_1_0_CFLAGS = @LIBUSB_1_0_CFLAGS@ LIBUSB_1_0_LIBS = @LIBUSB_1_0_LIBS@ @@ -265,7 +265,7 @@ saned_SOURCES = saned.c saned_LDADD = ../backend/libsane.la ../sanei/libsanei.la ../lib/liblib.la \ - ../lib/libfelib.la @SYSLOG_LIBS@ + ../lib/libfelib.la @SYSLOG_LIBS@ @AVAHI_LIBS@ test_SOURCES = test.c test_LDADD = ../lib/liblib.la ../lib/libfelib.la ../backend/libsane.la Index: sane-backends-1.0.23/frontend/Makefile.am =================================================================== --- sane-backends-1.0.23.orig/frontend/Makefile.am 2013-12-15 23:52:14.739264532 +1100 +++ sane-backends-1.0.23/frontend/Makefile.am 2013-12-15 23:52:19.967332543 +1100 @@ -22,7 +22,7 @@ saned_SOURCES = saned.c saned_LDADD = ../backend/libsane.la ../sanei/libsanei.la ../lib/liblib.la \ - ../lib/libfelib.la @SYSLOG_LIBS@ + ../lib/libfelib.la @SYSLOG_LIBS@ @AVAHI_LIBS@ test_SOURCES = test.c test_LDADD = ../lib/liblib.la ../lib/libfelib.la ../backend/libsane.la debian/patches/series0000664000000000000000000000057012236361037012041 0ustar dll_backend_conf.patch multiarch_dll_search_path.patch multiarch_manpages_libdir.patch kfreebsd.patch fix-FTBFS-format-not-a-string-literal-error.patch frontend_libs.patch libsane_deps.patch trim-libraries-in-sane-backends.pc.in.patch unneeded_doc.patch sane-desc.c_debian_mods.patch # from Ubuntu disable_v4l.patch fix_avahi_error_paths.patch fix-for-broken-tpu-scan.patch debian/patches/libsane_deps.patch0000664000000000000000000001132012253322625014267 0ustar From: Markus Koschany Date: Sun, 30 Jun 2013 18:58:59 +0200 Subject: libsane_deps Reduce libsane.so dependencies to the bare minimum. Trim dependencies to keep only what's really required by libsane.so (aka dll backend). Original patch author: Julien BLACHE --- backend/Makefile.in | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) Index: sane-backends-1.0.23/backend/Makefile.in =================================================================== --- sane-backends-1.0.23.orig/backend/Makefile.in 2013-12-15 23:44:08.000000000 +1100 +++ sane-backends-1.0.23/backend/Makefile.in 2013-12-15 23:44:08.000000000 +1100 @@ -2472,10 +2472,9 @@ nodist_libsane_la_SOURCES = dll-s.c libsane_la_CPPFLAGS = $(AM_CPPFLAGS) -DBACKEND_NAME=dll libsane_la_LDFLAGS = $(DIST_LIBS_LDFLAGS) -libsane_la_LIBADD = $(COMMON_LIBS) @PRELOADABLE_BACKENDS_ENABLED@ libdll_preload.la sane_strstatus.lo ../sanei/sanei_init_debug.lo ../sanei/sanei_constrain_value.lo ../sanei/sanei_config.lo ../sanei/sanei_config2.lo ../sanei/sanei_usb.lo ../sanei/sanei_scsi.lo ../sanei/sanei_pv8630.lo ../sanei/sanei_pp.lo ../sanei/sanei_thread.lo ../sanei/sanei_lm983x.lo ../sanei/sanei_access.lo ../sanei/sanei_net.lo ../sanei/sanei_wire.lo ../sanei/sanei_codec_bin.lo ../sanei/sanei_pa4s2.lo ../sanei/sanei_ab306.lo ../sanei/sanei_pio.lo ../sanei/sanei_tcp.lo ../sanei/sanei_udp.lo ../sanei/sanei_magic.lo $(DL_LIBS) $(LIBV4L_LIBS) $(MATH_LIB) $(IEEE1284_LIBS) $(TIFF_LIBS) $(JPEG_LIBS) $(GPHOTO2_LIBS) $(SOCKET_LIBS) $(USB_LIBS) $(AVAHI_LIBS) $(SCSI_LIBS) $(PTHREAD_LIBS) $(RESMGR_LIBS) - +libsane_la_LIBADD = $(COMMON_LIBS) libdll.la sane_strstatus.lo ../sanei/sanei_init_debug.lo ../sanei/sanei_config.lo ../sanei/sanei_constrain_value.lo $(DL_LIBS) # WARNING: Automake is getting this wrong so have to do it ourselves. -libsane_la_DEPENDENCIES = $(COMMON_LIBS) @PRELOADABLE_BACKENDS_ENABLED@ libdll_preload.la sane_strstatus.lo ../sanei/sanei_init_debug.lo ../sanei/sanei_constrain_value.lo ../sanei/sanei_config.lo ../sanei/sanei_config2.lo ../sanei/sanei_usb.lo ../sanei/sanei_scsi.lo ../sanei/sanei_pv8630.lo ../sanei/sanei_pp.lo ../sanei/sanei_thread.lo ../sanei/sanei_lm983x.lo ../sanei/sanei_access.lo ../sanei/sanei_net.lo ../sanei/sanei_wire.lo ../sanei/sanei_codec_bin.lo ../sanei/sanei_pa4s2.lo ../sanei/sanei_ab306.lo ../sanei/sanei_pio.lo ../sanei/sanei_tcp.lo ../sanei/sanei_udp.lo ../sanei/sanei_magic.lo @SANEI_SANEI_JPEG_LO@ +libsane_la_DEPENDENCIES = libdll.la sane_strstatus.lo ../sanei/sanei_init_debug.lo ../sanei/sanei_config.lo all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-am Index: sane-backends-1.0.23/backend/Makefile.am =================================================================== --- sane-backends-1.0.23.orig/backend/Makefile.am 2012-07-25 10:02:39.000000000 +1000 +++ sane-backends-1.0.23/backend/Makefile.am 2013-12-15 23:50:15.613715057 +1100 @@ -1120,7 +1120,7 @@ nodist_libsane_la_SOURCES = dll-s.c libsane_la_CPPFLAGS = $(AM_CPPFLAGS) -DBACKEND_NAME=dll libsane_la_LDFLAGS = $(DIST_LIBS_LDFLAGS) -libsane_la_LIBADD = $(COMMON_LIBS) @PRELOADABLE_BACKENDS_ENABLED@ libdll_preload.la sane_strstatus.lo ../sanei/sanei_init_debug.lo ../sanei/sanei_constrain_value.lo ../sanei/sanei_config.lo ../sanei/sanei_config2.lo ../sanei/sanei_usb.lo ../sanei/sanei_scsi.lo ../sanei/sanei_pv8630.lo ../sanei/sanei_pp.lo ../sanei/sanei_thread.lo ../sanei/sanei_lm983x.lo ../sanei/sanei_access.lo ../sanei/sanei_net.lo ../sanei/sanei_wire.lo ../sanei/sanei_codec_bin.lo ../sanei/sanei_pa4s2.lo ../sanei/sanei_ab306.lo ../sanei/sanei_pio.lo ../sanei/sanei_tcp.lo ../sanei/sanei_udp.lo ../sanei/sanei_magic.lo $(DL_LIBS) $(LIBV4L_LIBS) $(MATH_LIB) $(IEEE1284_LIBS) $(TIFF_LIBS) $(JPEG_LIBS) $(GPHOTO2_LIBS) $(SOCKET_LIBS) $(USB_LIBS) $(AVAHI_LIBS) $(SCSI_LIBS) $(PTHREAD_LIBS) $(RESMGR_LIBS) +libsane_la_LIBADD = $(COMMON_LIBS) libdll.la sane_strstatus.lo ../sanei/sanei_init_debug.lo ../sanei/sanei_config.lo ../sanei/sanei_constrain_value.lo $(DL_LIBS) # WARNING: Automake is getting this wrong so have to do it ourselves. -libsane_la_DEPENDENCIES = $(COMMON_LIBS) @PRELOADABLE_BACKENDS_ENABLED@ libdll_preload.la sane_strstatus.lo ../sanei/sanei_init_debug.lo ../sanei/sanei_constrain_value.lo ../sanei/sanei_config.lo ../sanei/sanei_config2.lo ../sanei/sanei_usb.lo ../sanei/sanei_scsi.lo ../sanei/sanei_pv8630.lo ../sanei/sanei_pp.lo ../sanei/sanei_thread.lo ../sanei/sanei_lm983x.lo ../sanei/sanei_access.lo ../sanei/sanei_net.lo ../sanei/sanei_wire.lo ../sanei/sanei_codec_bin.lo ../sanei/sanei_pa4s2.lo ../sanei/sanei_ab306.lo ../sanei/sanei_pio.lo ../sanei/sanei_tcp.lo ../sanei/sanei_udp.lo ../sanei/sanei_magic.lo @SANEI_SANEI_JPEG_LO@ +libsane_la_DEPENDENCIES = libdll.la sane_strstatus.lo ../sanei/sanei_init_debug.lo ../sanei/sanei_config.lo debian/patches/fix-for-broken-tpu-scan.patch0000664000000000000000000000116212236361637016231 0ustar Description: Fix for broken tpu scan, to unbreak Canon pixma MP970 Author: Rolf Bensch Bug-Ubuntu: https://launchpad.net/bugs/1096612 diff --git a/backend/pixma_mp810.c b/backend/pixma_mp810.c index 09b5d45..f523857 100644 --- a/backend/pixma_mp810.c +++ b/backend/pixma_mp810.c @@ -803,6 +803,7 @@ send_scan_param (pixma_t * s) { data[0x00] = 0x04; data[0x01] = 0x02; + data[0x1e] = 0x02; /* NB: CanoScan 8800F: 0x02->negatives, 0x01->positives, paper->0x00 */ } data[0x02] = 0x01; if (is_scanning_from_adfdup (s)) -- 1.8.1.2 debian/patches/multiarch_manpages_libdir.patch0000664000000000000000000000266212253323075017040 0ustar Description: Use a generic multiarch path in man pages Backend location in the man pages is substituted from LIBDIR; use a generic /usr/lib/arch_triplet/sane path instead. Author: Julien BLACHE Index: sane-backends-1.0.23/doc/Makefile.in =================================================================== --- sane-backends-1.0.23.orig/doc/Makefile.in 2012-08-15 11:49:38.000000000 +1000 +++ sane-backends-1.0.23/doc/Makefile.in 2013-12-15 23:48:08.000000000 +1100 @@ -809,7 +809,7 @@ @sed -e 's|@DATADIR@|$(datadir)|g' \ -e 's|@CONFIGDIR@|$(configdir)|g' \ -e 's|@DOCDIR@|$(docdir)|g' \ - -e 's|@LIBDIR@|$(libdir)/sane|g' \ + -e 's|@LIBDIR@|/usr/lib/arch_triplet/sane|g' \ -e 's|@BINDIR@|$(bindir)|g' \ -e 's|@SBINDIR@|$(sbindir)|g' \ -e 's|@PACKAGEVERSION@|$(package_version)|g' $^ >$@ Index: sane-backends-1.0.23/doc/Makefile.am =================================================================== --- sane-backends-1.0.23.orig/doc/Makefile.am 2012-07-01 12:00:44.000000000 +1000 +++ sane-backends-1.0.23/doc/Makefile.am 2013-12-15 23:53:10.183985845 +1100 @@ -108,7 +108,7 @@ @sed -e 's|@DATADIR@|$(datadir)|g' \ -e 's|@CONFIGDIR@|$(configdir)|g' \ -e 's|@DOCDIR@|$(docdir)|g' \ - -e 's|@LIBDIR@|$(libdir)/sane|g' \ + -e 's|@LIBDIR@|/usr/lib/arch_triplet/sane|g' \ -e 's|@BINDIR@|$(bindir)|g' \ -e 's|@SBINDIR@|$(sbindir)|g' \ -e 's|@PACKAGEVERSION@|$(package_version)|g' $^ >$@ debian/libsane-common.install.in0000664000000000000000000000016012165560742014075 0ustar usr/share/doc usr/share/man/man7 usr/share/locale/ usr/share/man/man5/sane-scsi.5 usr/share/man/man5/sane-usb.5 debian/compat0000664000000000000000000000000212165560742010376 0ustar 9