mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
80 lines
1.8 KiB
Bash
80 lines
1.8 KiB
Bash
SUMMARY="A cross-platform widgetset"
|
|
DESCRIPTION="ParaGUI is a cross-platform high-level application framework and \
|
|
GUI (graphical user interface) library. It can be compiled on various \
|
|
platforms (Linux, Win32, BeOS, MacOS, ...)"
|
|
HOMEPAGE="http://www.nongnu.org/paragui/"
|
|
COPYRIGHT="2000-2004 Alexander Pipelka"
|
|
LICENSE="GNU LGPL v2"
|
|
REVISION="3"
|
|
SOURCE_URI="http://download.savannah.gnu.org/releases/paragui/paragui-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="5a6663d3be6819bce8a8ca0bf8a0d33c7508e28d8e9f220649cef19e9d5260c3"
|
|
PATCHES="paragui-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
paragui$secondaryArchSuffix = $portVersion
|
|
lib:libparagui
|
|
lib:libparagui_1.1 = 8.0.0 compat = 8
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libexpat
|
|
lib:libGL
|
|
lib:libphysfs
|
|
lib:libpng16
|
|
lib:libSDL_1.2
|
|
lib:libsigc_1.2
|
|
lib:libz
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
paragui${secondaryArchSuffix}_devel = $portVersion
|
|
cmd:paragui_config
|
|
devel:libparagui
|
|
devel:libparagui_1.1 = 8.0.0 compat = 8
|
|
"
|
|
REQUIRES_devel="
|
|
paragui$secondaryArchSuffix == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libexpat$secondaryArchSuffix
|
|
devel:libfreetype$secondaryArchSuffix
|
|
devel:libphysfs$secondaryArchSuffix
|
|
devel:libsdl$secondaryArchSuffix
|
|
devel:libsigc_1.2$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:find
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:libtoolize$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
libtoolize --force --copy --install
|
|
aclocal
|
|
autoconf
|
|
runConfigure --omit-dirs "docDir dataRootDir" ./configure --with-libstdcpp=stdc++.r4
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
prepareInstalledDevelLib libparagui
|
|
rm $developLibDir/*.la
|
|
|
|
fixPkgconfig
|
|
|
|
packageEntries devel $relativeDevelopDir $relativeBinDir
|
|
}
|