mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
Unfortunately it's broken. The start page will not draw anything, and trying to access any other URL triggers an assert. I don't even understand why NetSurf is building in DEBUG mode, the assert shouldn't be active...
78 lines
1.9 KiB
Plaintext
78 lines
1.9 KiB
Plaintext
SUMMARY="NetSurf is a multi-platform web browser"
|
||
DESCRIPTION="
|
||
Small as a mouse, fast as a cheetah and available for free. NetSurf is a \
|
||
multi-platform web browser for RISC OS, UNIX-like platforms (including Linux), \
|
||
Mac OS X, and more.
|
||
|
||
Whether you want to check your webmail, read the news or post to discussion \
|
||
forums, NetSurf is your lightweight gateway to the world wide web. Actively \
|
||
developed, NetSurf is continually evolving and improving.
|
||
"
|
||
HOMEPAGE="http://www.netsurf-browser.org/"
|
||
# Do NOT use the netsurf-all package. It contains a bunch of subprojects which
|
||
# we build as separate packages. NetSurf is statically linked to them, so the
|
||
# resulting binary is the same.
|
||
SRC_URI="http://download.netsurf-browser.org/netsurf/releases/source/netsurf-$portVersion-src.tar.gz"
|
||
CHECKSUM_SHA256="04ffeb8335c59cbc23371b79ae3b178002e6e95c35225ef62db4b155ecc7e213"
|
||
REVISION="1"
|
||
ARCHITECTURES="!x86_gcc2"
|
||
REQUIRES="
|
||
lib:libcurl
|
||
lib:libpng
|
||
lib:libjpeg
|
||
"
|
||
|
||
BUILD_REQUIRES="
|
||
haiku_devel >= $haikuVersion
|
||
devel:libcurl
|
||
devel:libexpat
|
||
devel:libiconv
|
||
devel:libjpeg
|
||
devel:libpng
|
||
devel:libssl
|
||
devel:libz
|
||
|
||
devel:libcss
|
||
devel:libdom
|
||
devel:libhubbub
|
||
devel:libnsbmp
|
||
devel:libnsgif
|
||
devel:libparserutils
|
||
devel:libsvgtiny
|
||
devel:libwapcaplet
|
||
"
|
||
|
||
BUILD_PREREQUIRES="
|
||
html_parser >= 3.70
|
||
cmd:bison
|
||
cmd:flex
|
||
cmd:gcc
|
||
cmd:git
|
||
cmd:gperf
|
||
cmd:make
|
||
cmd:pkg_config
|
||
"
|
||
|
||
PROVIDES="
|
||
netsurf = $portVersion
|
||
app:NetSurf = $portVersion
|
||
"
|
||
|
||
PATCHES="netsurf-$portVersion.patchset"
|
||
|
||
BUILD()
|
||
{
|
||
make TARGET=beos PREFIX=$prefix/ DESTDIR=$appsDir/ BUILD=release \
|
||
NETSURF_BEOS_BIN=netsurf/ NETSURF_BEOS_RESOURCES=netsurf/res/
|
||
}
|
||
|
||
INSTALL()
|
||
{
|
||
make TARGET=beos PREFIX=$prefix/ DESTDIR=$appsDir/ \
|
||
NETSURF_BEOS_BIN=netsurf/ NETSURF_BEOS_RESOURCES=netsurf/res/ install
|
||
addAppDeskbarSymlink $appsDir/netsurf/NetSurf NetSurf
|
||
}
|
||
|
||
LICENSE="GNU GPL v2"
|
||
COPYRIGHT="2003-2014 The NetSurf Browser project"
|