mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 05:10:05 +02:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
104 lines
2.5 KiB
Bash
104 lines
2.5 KiB
Bash
SUMMARY="Powerful C/C++ function library for exporting 2-D vector graphics"
|
|
DESCRIPTION="A thread-safe function library for exporting two-dimensional \
|
|
vector graphics files, and for displaying animated vector graphics under the \
|
|
X Window System."
|
|
HOMEPAGE="https://www.gnu.org/software/plotutils/"
|
|
COPYRIGHT="1995, 1996, 1997, 1998, 1999, 2000, 2005, 2008, Free Software Foundation, Inc."
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="1"
|
|
SOURCE_URI="https://www.mirrorservice.org/sites/ftp.gnu.org/gnu/plotutils/plotutils-$portVersion.tar.gz
|
|
https://ftpmirror.gnu.org/plotutils/plotutils-$portVersion.tar.gz
|
|
http://ftp.hosteurope.de/mirror/ftp.gnu.org/gnu/plotutils/plotutils-$portVersion.tar.gz
|
|
https://ftp.gnu.org/pub/plotutils/plotutils-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="4f4222820f97ca08c7ea707e4c53e5a3556af4d8f1ab51e0da6ff1627ff433ab"
|
|
PATCHES="plotutils-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="all ?x86_gcc2 ?arm ?ppc"
|
|
SECONDARY_ARCHITECTURES="?x86_gcc2 x86"
|
|
|
|
libVersion="$portVersion"
|
|
libVersionCompat="$libVersion compat >= ${libVersion%%.*}"
|
|
|
|
PROVIDES="
|
|
plotutils$secondaryArchSuffix = $portVersion
|
|
lib:libplot$secondaryArchSuffix = $libVersionCompat
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libpng16$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_tools="
|
|
plotutils${secondaryArchSuffix}_tools = $portVersion
|
|
cmd:double = $portVersion
|
|
cmd:graph = $portVersion
|
|
cmd:hersheydemo = $portVersion
|
|
cmd:ode = $portVersion
|
|
cmd:plot = $portVersion
|
|
cmd:plotfont = $portVersion
|
|
cmd:spline = $portVersion
|
|
cmd:tek2plot = $portVersion
|
|
"
|
|
REQUIRES_tools="
|
|
haiku$secondaryArchSuffix
|
|
lib:libplot$secondaryArchSuffix == $portVersion base
|
|
lib:libpng16$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
plotutils${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libplot$secondaryArchSuffix = $libVersionCompat
|
|
"
|
|
REQUIRES_devel="
|
|
haiku$secondaryArchSuffix
|
|
plotutils$secondaryArchSuffix == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libpng16$secondaryArchSuffix
|
|
devel:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:awk
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:libtoolize$secondaryArchSuffix >= 2.4.2
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
libtoolize --force --copy --install
|
|
autoreconf -i
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
rm $libDir/libplot*.la
|
|
|
|
prepareInstalledDevelLibs libplot
|
|
fixPkgconfig
|
|
|
|
# tools package
|
|
packageEntries tools $binDir
|
|
|
|
# devel package
|
|
packageEntries devel \
|
|
$developDir
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make check
|
|
}
|