Package Details: lib32-iscan-plugin-gt-9400 1.0.0-6

Package Base: lib32-iscan-plugin-gt-9400
Description: iscan plugin for the Epson Perfection 3170 PHOTO (GT-9400) scanner.
Upstream URL: http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX
Category: lib
Licenses: custom
Submitter: azleifel
Maintainer: None
Last Packager: None
Votes: 3
First Submitted: 2009-09-18 22:00
Last Updated: 2013-04-09 22:09

Latest Comments

Comment by azleifel

2013-04-09 22:10

pkgrel=6

* Refreshed the PKGBUILD

Comment by azleifel

2012-04-07 17:02

* pkgrel=5: Symlink from /usr/lib/iscan removed because Ed Hamrick has fixed VueScan's library search paths as of version 9.0.91.

Comment by azleifel

2012-04-07 09:29

* pkgrel=4

VueScan > 9.0.57 (approximately) no longer looks for driver libraries in /usr/lib32. Worked around this by creating /usr/lib/iscan and making a symlink to libesint32.so.2.0.0 from /usr/lib/iscan. Just for the sake of greater consistency with the original software distribution, moved libesint32* from /usr/lib32 to /usr/lib32/iscan.

Comment by azleifel

2011-12-29 20:54

* pkgrel=2: Updated download URL

Comment by azleifel

2010-11-27 09:09

Current version of script to run vuescan:

#!/bin/sh

# Useful lib32 environment variables
export LD_LIBRARY_PATH="/usr/lib32/:/opt/lib32/usr/lib/:/opt/lib32/lib/:$LD_LIBRARY_PATH"
export GCONV_PATH="/usr/lib32/gconv/"
export GTK_PATH="/usr/lib32/gtk-2.0/"
export GTK_IM_MODULE_FILE="/etc/gtk-2.0/gtk.immodules-32"

# Environment variables for Epson Perfection 3170 Photo
export LD_PRELOAD="/usr/lib32/libstdc++.so.6"
export ISCAN_FW_DIR="/usr/share/iscan/"

# Run
cd /opt/vuescan
exec "./vuescan"

Comment by azleifel

2010-11-27 09:06

* Updated PKGBUILD to use /usr/lib32

Anonymous comment

2010-06-19 01:24

Figured it out. Still getting used to Arch repositories.

Anonymous comment

2010-06-19 00:39

makepkg / Pacman fails on the lib32 dependency, which seems to be 64bit only. Added an i686 line to the pkg, still nothing. Is this meant to be 64bit only?

Comment by azleifel

2010-04-02 08:20

I use the following script to run vuescan:

#!/bin/sh

# Useful lib32 environment variables
export LD_LIBRARY_PATH="/opt/lib32/usr/lib/:/opt/lib32/lib/:$LD_LIBRARY_PATH"
export GCONV_PATH="/opt/lib32/usr/lib/gconv/"
export GTK_PATH="/opt/lib32/usr/lib/gtk-2.0/"
# NB. gtk.immodules has to be created from /etc/gtk-2.0/gtk.immodules with
# 's:/usr/lib:/opt/lib32/usr/lib:' and installed manually
export GTK_IM_MODULE_FILE="/opt/lib32/config/gdk/gtk.immodules"
export GDK_PIXBUF_MODULE_FILE="/opt/lib32/config/gdk/gdk-pixbuf.loaders"
export PANGO_RC_FILE="/opt/lib32/config/pango/pangorc"

# Environment variables for Epson Perfection 3170 Photo
export LD_PRELOAD="/opt/lib32/usr/lib/libstdc++.so.6"
export ISCAN_FW_DIR="/opt/lib32/usr/share/iscan/"

# Run
cd /opt/vuescan
exec "./vuescan"