mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
Removed the full-stop and repeating package name in SUMMARY. Removed hard line breaks, broke up some very long paragraphs and use bullet lists where possible. All done by browsing through HaikuDepot. There may be (many) more left in the whole haikuports repo... Included 10 extended desriptions done by soyoye14 for GCI 2014 (https://www.google-melange.com/gci/task/view/google/gci2014/5240373098053632) Removed/insert whitespace where it seems to be the custom in recipes. Sometimes rearranged elements of a recipe (moving license and copyright up, for example).
73 lines
1.9 KiB
Plaintext
73 lines
1.9 KiB
Plaintext
SUMMARY="A library for high-performance 2D graphics"
|
|
DESCRIPTION="
|
|
Libart is free software (all components are either GPL or LGPL). Libart is \
|
|
also available for commercial licensing.
|
|
Libart supports a very powerful imaging model, basically the same as SVG and \
|
|
the Java 2D API. It includes all PostScript imaging operations, and adds \
|
|
antialiasing and alpha-transparency.
|
|
Libart is also highly tuned for incremental rendering. It contains data \
|
|
structures and algorithms suited to rapid, precise computation of Region of \
|
|
Interest, as well as a two-phase rendering pipeline optimized for interactive \
|
|
display.
|
|
"
|
|
HOMEPAGE="http://www.levien.com/libart/"
|
|
SRC_URI="http://ftp.gnome.org/pub/gnome/sources/libart_lgpl/2.3/libart_lgpl-2.3.21.tar.gz"
|
|
CHECKSUM_SHA256="2a10b1c884bb37c7bd5c5eba59dbd0d28bf68e64a42d7f2083c836f60f8e98fa"
|
|
REVISION="1"
|
|
LICENSE="GNU LGPL v2.1"
|
|
COPYRIGHT="2001-2010 Mathieu Lacage and Raph Levien"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
libart_lgpl$secondaryArchSuffix = $portVersion
|
|
lib:libart_lgpl_2$secondaryArchSuffix = 2.3.21 compat >= 2
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoreconf
|
|
cmd:libtool
|
|
cmd:make
|
|
cmd:ld${secondaryArchSuffix}
|
|
cmd:gcc${secondaryArchSuffix}
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
libtoolize --force --copy --install
|
|
autoreconf -i
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
# prepare devel/lib
|
|
prepareInstalledDevelLibs libart_lgpl_2
|
|
|
|
# devel package
|
|
packageEntries devel \
|
|
$developDir \
|
|
$binDir
|
|
}
|
|
|
|
# ----- devel package
|
|
|
|
PROVIDES_devel="
|
|
libart_lgpl_2$secondaryArchSuffix = $portVersion
|
|
devel:libart_lgpl_2$secondaryArchSuffix = 2.3.21 compat >= 2
|
|
cmd:libart2_config$secondaryArchSuffix = $portVersion compat >= 2
|
|
"
|
|
REQUIRES_devel="
|
|
libart_lgpl_2$secondaryArchSuffix == $portVersion base
|
|
"
|