mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
105 lines
2.8 KiB
Plaintext
105 lines
2.8 KiB
Plaintext
SUMMARY="Open source web browser engine"
|
|
DESCRIPTION="
|
|
WebKit is an open source web browser engine. WebKit is also the name of the \
|
|
Mac OS X system framework version of the engine that's used by Safari, \
|
|
Dashboard, Mail, and many other OS X applications. WebKit's HTML and \
|
|
JavaScript code began as a branch of the KHTML and KJS libraries from KDE.
|
|
"
|
|
HOMEPAGE="http://www.webkit.org/"
|
|
COPYRIGHT="1998-2014 Apple Inc., Google Inc., et al"
|
|
LICENSE="
|
|
GNU LGPL v2
|
|
GNU LGPL v2.1
|
|
MIT
|
|
"
|
|
SRC_URI="https://github.com/haiku/webkit/archive/$portVersion.tar.gz"
|
|
REVISION="1"
|
|
ARCHITECTURES="x86 x86_64"
|
|
if [ $effectiveTargetArchitecture != x86_gcc2 ]; then
|
|
# x86_gcc2 is fine as primary target architecture as long as we're building
|
|
# for a different secondary architecture.
|
|
ARCHITECTURES="$ARCHITECTURES x86_gcc2"
|
|
fi
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
CHECKSUM_SIZE="599979083"
|
|
CHECKSUM_MD5="044299eacba255ec05a97865543d2f1b"
|
|
CHECKSUM_RMD160="11db0c4fcdc2c049867ef9480c34fa020ad6b49d"
|
|
CHECKSUM_SHA512="60b0d83f98f732df3fa779581766570598e3cf0f7500bbf70322a61c53f29ad06a7781994779038844052ddf61752acd305eef6739c7917ca8e54b56503ff493"
|
|
|
|
PROVIDES="
|
|
haikuwebkit$secondaryArchSuffix = $portVersion
|
|
lib:libWebKit$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix >= $haikuVersion
|
|
lib:libicuuc$secondaryArchSuffix
|
|
lib:libjpeg$secondaryArchSuffix
|
|
lib:libpng$secondaryArchSuffix
|
|
lib:libsqlite3$secondaryArchSuffix
|
|
lib:libxml2$secondaryArchSuffix
|
|
lib:libxslt$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel >= $haikuVersion
|
|
haiku_devel >= $haikuVersion
|
|
devel:libicuuc$secondaryArchSuffix
|
|
devel:libjpeg$secondaryArchSuffix
|
|
devel:libpng$secondaryArchSuffix
|
|
devel:libsqlite3$secondaryArchSuffix
|
|
devel:libxml2$secondaryArchSuffix
|
|
devel:libxslt$secondaryArchSuffix
|
|
devel:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:pkg_config
|
|
cmd:flex
|
|
cmd:bison
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:gperf
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:m4
|
|
cmd:make
|
|
cmd:perl
|
|
cmd:python
|
|
cmd:cmake
|
|
cmd:ruby
|
|
"
|
|
|
|
SOURCE_DIR="webkit-$portVersion"
|
|
|
|
BUILD()
|
|
{
|
|
export PKG_CONFIG_LIBDIR="`finddir B_SYSTEM_DIRECTORY`/$relativeDevelopLibDir/pkgconfig"
|
|
Tools/Scripts/build-webkit --haiku --no-webkit2 \
|
|
--cmakeargs="-DCMAKE_INSTALL_PREFIX=$prefix"
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd WebKitBuild/Release
|
|
make install
|
|
|
|
rm $developLibDir/*
|
|
prepareInstalledDevelLibs libWebKit
|
|
|
|
# devel package
|
|
packageEntries devel \
|
|
$developDir
|
|
}
|
|
|
|
# ----- devel package -------------------------------------------------------
|
|
|
|
PROVIDES_devel="
|
|
haikuwebkit${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libjavascriptcore$secondaryArchSuffix = $portVersion
|
|
devel:libwebcore$secondaryArchSuffix = $portVersion
|
|
devel:libWebKit$secondaryArchSuffix = $portVersion
|
|
devel:libwtf$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES_devel="
|
|
haikuwebkit$secondaryArchSuffix == $portVersion base
|
|
"
|