mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
101 lines
2.3 KiB
Bash
101 lines
2.3 KiB
Bash
SUMMARY="Library for reading and processing of RAW digicam images"
|
|
DESCRIPTION="LibRaw is a library for reading RAW files from digital photo \
|
|
cameras (CRW/CR2, NEF, RAF, DNG, MOS, KDC, DCR, etc, virtually all RAW \
|
|
formats are supported).
|
|
It pays special attention to correct retrieval of data required for subsequent \
|
|
RAW conversion.
|
|
The library is intended for embedding in RAW converters, data analyzers, and \
|
|
other programs using RAW files as the initial data."
|
|
HOMEPAGE="https://www.libraw.org/"
|
|
COPYRIGHT="2008-2018 LibRaw LLC"
|
|
LICENSE="GNU LGPL v2.1
|
|
CDDL v1"
|
|
REVISION="1"
|
|
SOURCE_URI="https://www.libraw.org/data/LibRaw-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="40a262d7cc71702711a0faec106118ee004f86c86cc228281d12d16da03e02f5"
|
|
SOURCE_DIR="LibRaw-$portVersion"
|
|
PATCHES="libraw-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
commandSuffix=$secondaryArchSuffix
|
|
commandBinDir=$binDir
|
|
if [ "$targetArchitecture" = x86_gcc2 ]; then
|
|
commandSuffix=
|
|
commandBinDir=$prefix/bin
|
|
fi
|
|
|
|
libVersion="19.0.2"
|
|
libVersionCompat="$libVersion compat >= ${libVersion%%.*}"
|
|
portVersionCompat="$portVersion compat >= 0"
|
|
|
|
PROVIDES="
|
|
libraw19$secondaryArchSuffix = $portVersion compat >= 0
|
|
lib:libraw$secondaryArchSuffix = $libVersionCompat
|
|
lib:libraw_r$secondaryArchSuffix = $libVersionCompat
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libgomp$secondaryArchSuffix
|
|
lib:libjasper$secondaryArchSuffix
|
|
lib:libjpeg$secondaryArchSuffix
|
|
lib:liblcms2$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libjasper$secondaryArchSuffix
|
|
devel:liblcms2$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:cmp
|
|
cmd:find
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:libtoolize$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
autoreconf -fi
|
|
runConfigure --omit-dirs binDir ./configure --bindir="$commandBinDir"
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
rm $libDir/lib*.la
|
|
|
|
prepareInstalledDevelLibs libraw libraw_r
|
|
fixPkgconfig
|
|
|
|
pushd "$developLibDir"
|
|
if [ -f libraw_r.a -a -f libraw.a ] && cmp libraw_r.a libraw.a; then
|
|
rm libraw_r.a
|
|
ln -s libraw.a libraw_r.a
|
|
fi
|
|
popd
|
|
|
|
# devel package
|
|
rm -rf \
|
|
$developDir
|
|
|
|
# tools package
|
|
rm -rf \
|
|
"$commandBinDir"
|
|
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make check
|
|
}
|