mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
* Cairo needs at least 0.22 * Also remove !x86_gcc2 restriction since it builds and passes all tests.
85 lines
1.5 KiB
Plaintext
85 lines
1.5 KiB
Plaintext
SUMMARY="pixman"
|
|
DESCRIPTION="
|
|
Pixman - The pixel-manipulation library for X and cairo.
|
|
"
|
|
HOMEPAGE="http://cgit.freedesktop.org/pixman/"
|
|
SRC_URI="http://cairographics.org/releases/pixman-0.20.0.tar.gz"
|
|
CHECKSUM_SHA256="9c02c22c6cc3f28f3633d02ef6f0cac130518f621edb011ebbbf08cd1a81251a"
|
|
LICENSE="MIT"
|
|
COPYRIGHT="1987-1998 The Open Group
|
|
1987-1989 Digital Equipment Corporation
|
|
1999, 2004, 2008 Keith Packard
|
|
2004-2010 Red Hat, Inc.
|
|
2009-2010 Sun Microsystems, Inc.
|
|
and many others"
|
|
|
|
REVISION="1"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
pixman$secondaryArchSuffix = $portVersion
|
|
lib:libpixman_1$secondaryArchSuffix = $portVersion
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
pixman${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libpixman_1$secondaryArchSuffix = $portVersion
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix >= $haikuVersion
|
|
"
|
|
|
|
REQUIRES_devel="
|
|
pixman$secondaryArchSuffix == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel >= $haikuVersion
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:libtoolize
|
|
cmd:make
|
|
cmd:perl
|
|
cmd:pkg_config
|
|
"
|
|
|
|
PATCH()
|
|
{
|
|
sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac
|
|
}
|
|
|
|
BUILD()
|
|
{
|
|
aclocal
|
|
libtoolize --force --copy --install
|
|
automake --add-missing
|
|
autoconf
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
prepareInstalledDevelLibs libpixman-1
|
|
|
|
fixPkgconfig
|
|
|
|
packageEntries devel \
|
|
$developDir
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make check
|
|
}
|