mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
125 lines
3.2 KiB
Bash
125 lines
3.2 KiB
Bash
SUMMARY="Scanner Access Now Easy (SANE)"
|
|
DESCRIPTION="
|
|
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 scanners backends, the command line frontend scanimage, \
|
|
the saned server and the sane-find-scanner utility, along with their \
|
|
documentation.
|
|
"
|
|
HOMEPAGE="http://www.sane-project.org"
|
|
COPYRIGHT="David Mosberger-Tang, Andy Beck"
|
|
LICENSE="GNU LGPL v2"
|
|
REVISION="2"
|
|
SOURCE_URI="https://alioth.debian.org/frs/download.php/file/4224/sane-backends-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="293747bf37275c424ebb2c833f8588601a60b2f9653945d5a3194875355e36c9"
|
|
SOURCE_DIR="sane-backends-$portVersion"
|
|
GLOBAL_WRITABLE_FILES="
|
|
settings/sane.d directory keep-old
|
|
"
|
|
PATCHES="
|
|
sane_backends-$portVersion.patchset
|
|
"
|
|
|
|
ARCHITECTURES="?x86_gcc2 x86 ?x86_64"
|
|
SECONDARY_ARCHITECTURES="?x86_gcc2 ?x86"
|
|
|
|
|
|
PROVIDES="
|
|
sane_backends$secondaryArchSuffix = $portVersion
|
|
cmd:gamma4scanimage$secondaryArchSuffix = $portVersion
|
|
cmd:sane_config$secondaryArchSuffix = $portVersion
|
|
cmd:sane_find_scanner$secondaryArchSuffix = $portVersion
|
|
cmd:saned$secondaryArchSuffix = $portVersion
|
|
cmd:scanimage$secondaryArchSuffix = $portVersion
|
|
cmd:umax_pp$secondaryArchSuffix
|
|
lib:libsane$secondaryArchSuffix = $portVersion compat >= 1
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
lib:libusb_1.0$secondaryArchSuffix
|
|
lib:libjpeg$secondaryArchSuffix
|
|
lib:libtiff$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
sane_backends${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libsane$secondaryArchSuffix = $portVersion compat >= 1
|
|
"
|
|
REQUIRES_devel="
|
|
sane_backends$secondaryArchSuffix == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
devel:libz$secondaryArchSuffix
|
|
devel:libusb_1.0$secondaryArchSuffix
|
|
devel:libjpeg$secondaryArchSuffix
|
|
devel:libtiff$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:libtoolize
|
|
cmd:awk
|
|
cmd:find
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
libtoolize --force --copy --install
|
|
aclocal
|
|
autoconf
|
|
automake
|
|
|
|
runConfigure configure \
|
|
--prefix=$prefix \
|
|
--bindir=$binDir \
|
|
--sbindir=$binDir \
|
|
--libdir=$libDir \
|
|
--includedir=$includeDir \
|
|
--datadir=$dataDir \
|
|
--with-docdir=$docDir \
|
|
--enable-pthread \
|
|
--disable-latex \
|
|
--disable-translations \
|
|
--enable-libusb_1_0 \
|
|
--enable-rpath \
|
|
--enable-pnm-backend \
|
|
LIBS=-lnetwork
|
|
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install-strip
|
|
|
|
rm $libDir/libsane.la
|
|
|
|
# prepare develop/lib
|
|
prepareInstalledDevelLibs libsane
|
|
fixPkgconfig
|
|
|
|
# hack for old BeOS apps (Sanity)
|
|
ln -s $libDir/libsane.so.1 $libDir/libsane.so
|
|
|
|
# devel package
|
|
packageEntries devel \
|
|
$developDir
|
|
|
|
}
|