mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
96 lines
2.3 KiB
Bash
96 lines
2.3 KiB
Bash
SUMMARY="Portable Network Graphics library"
|
|
DESCRIPTION="libpng is the official PNG reference library. It supports almost \
|
|
all PNG features, is extensible, and has been extensively tested for over 17 \
|
|
years."
|
|
HOMEPAGE="http://www.libpng.org/"
|
|
COPYRIGHT="1998-2016 Glenn Randers-Pehrson
|
|
1996-1997 Andreas Dilger
|
|
1995-1996 Guy Eric Schalnat, Group 42, Inc."
|
|
LICENSE="LibPNG"
|
|
REVISION="1"
|
|
SOURCE_URI="http://downloads.sf.net/libpng/libpng-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="c9d164ec247f426a525a7b89936694aefbc91fb7a50182b198898b8fc91174b4"
|
|
SOURCE_DIR="libpng-$portVersion"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64 arm ?ppc"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
libpng16$secondaryArchSuffix = $portVersion compat >= 1.6
|
|
lib:libpng$secondaryArchSuffix = 16.26.0 compat >= 16
|
|
lib:libpng16$secondaryArchSuffix = 16.26.0 compat >= 16
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
libpng16${secondaryArchSuffix}_devel = $portVersion compat >= 1.6
|
|
cmd:libpng_config$secondaryArchSuffix = $portVersion compat >= 1.6
|
|
cmd:libpng16_config$secondaryArchSuffix = $portVersion compat >= 1.6
|
|
cmd:pngcp$secondaryArchSuffix = $portVersion compat >= 1.6
|
|
cmd:pngfix$secondaryArchSuffix = $portVersion compat >= 1.6
|
|
cmd:png_fix_itxt$secondaryArchSuffix = $portVersion compat >= 1.6
|
|
devel:libpng$secondaryArchSuffix = 16.26.0 compat >= 16
|
|
devel:libpng16$secondaryArchSuffix = 16.26.0 compat >= 16
|
|
"
|
|
REQUIRES_devel="
|
|
libpng16$secondaryArchSuffix == $portVersion base
|
|
haiku$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
CONFLICTS_devel="
|
|
libpng12${secondaryArchSuffix}_devel
|
|
libpng${secondaryArchSuffix}_devel
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libz$secondaryArchSuffix >= 1.0.4
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:libtoolize$secondaryArchSuffix >= 2.4.2
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
autoreconf -f -i
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
rm $libDir/libpng*.la
|
|
|
|
prepareInstalledDevelLibs libpng libpng16
|
|
fixPkgconfig
|
|
|
|
if [ -z "$secondaryArchSuffix" ]; then
|
|
maybe_manDir_man3=$manDir/man3
|
|
else
|
|
maybe_manDir_man3=
|
|
rm -rf $manDir
|
|
fi
|
|
|
|
# devel package
|
|
packageEntries devel \
|
|
$binDir \
|
|
$developDir \
|
|
$maybe_manDir_man3
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make check
|
|
}
|