mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
* marble Don't start SUMMARY with app name Re-ordered blocks * ne Don't start SUMMARY with app name Still in old BEP format * pixman Don't start SUMMARY with app name Improved DESCRIPTION Re-ordered blocks * qemacs Don't start SUMMARY with app name Re-ordered blocks * rsync Don't start SUMMARY with app name Re-ordered blocks * schroedinger Don't start SUMMARY with app name Re-ordered blocks * screen Don't start SUMMARY with app name Re-ordered blocks * sharutils Don't start SUMMARY with app name Re-ordered blocks * sortsave Don't start SUMMARY with app name Re-ordered blocks Corrected PROVIDES to declare an addon * srm Don't start SUMMARY with app name Re-ordered blocks
84 lines
1.8 KiB
Bash
84 lines
1.8 KiB
Bash
SUMMARY="A pixel-manipulation library for X and cairo"
|
|
DESCRIPTION="Pixman is a low-level software library for pixel manipulation, \
|
|
providing features such as image compositing and trapezoid rasterization. \
|
|
Important users of pixman are the cairo graphics library and the X server.
|
|
|
|
Pixman is implemented as a library in the C programming language. It runs on \
|
|
many platforms, including Linux, BSD Derivatives, MacOS X, and Windows."
|
|
HOMEPAGE="http://pixman.org/"
|
|
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"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
SOURCE_URI="http://cairographics.org/releases/pixman-0.20.0.tar.gz"
|
|
CHECKSUM_SHA256="9c02c22c6cc3f28f3633d02ef6f0cac130518f621edb011ebbbf08cd1a81251a"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
pixman$secondaryArchSuffix = $portVersion
|
|
lib:libpixman_1$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
pixman${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libpixman_1$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES_devel="
|
|
pixman$secondaryArchSuffix == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:libtoolize
|
|
cmd:make
|
|
cmd:perl
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
"
|
|
|
|
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
|
|
}
|