5b2c0644e8
=========== Core / All ---------- * Overhaul documentation in line with new website * Many improvements to cookie handling * Minimum font size option is now obeyed by form elements * Add support for periodic reflow during fetching * Fixes for positioning of floated elements -- NetSurf now passes Acid1 * Bring support for <center> and align= in line with specification * Updated SSL root certificate bundle * Various fixes for form element default styling and interaction with CSS * Rewritten, more tolerant, HTTP redirect handling * Fix crash when tabbing into hidden form fields * Fix background handling on <body> and <html> * Permit <style> in <body> * Relax restriction on location of @import rules * Improve CSS colour handling * Fix positioning of horizontal scrollbars within page * Fixes for inline-block boxes * Minor fixes to CSS parsing * NetBSD support * Fix GIF decoding to work correctly on big-endian processors * New build system and many compiler warnings fixed RISC OS-specific ---------------- * Fix crashes on images.google.com * Fix intermittent crashing when clicking in URL-completion menu * Fix search when input is '*' * Fix Shift+Adjust clicks * Permit disabling of interactive help GTK-specific ------------ * Improve form widget support * Improve support for core configuration options (memory cache size, proxy, etc) * Fix unsightly flickering to white * Fix non-ASCII text input handling * Fix for caret positioning when clicking after the end of text in form inputs Also included are many and various smaller bug fixes, documentation enhancements and updated translations.
37 lines
1.2 KiB
Makefile
37 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.4 2008/04/12 14:58:31 hoka_adam Exp $
|
|
#
|
|
|
|
DISTNAME= netsurf-1.2-src
|
|
PKGNAME= ${DISTNAME:S/-src$//}
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.netsurf-browser.org/downloads/releases/
|
|
|
|
MAINTAINER= adam.hoka@gmail.com
|
|
HOMEPAGE= http://www.netsurf-browser.org/
|
|
COMMENT= Web browser for RISC OS and UNIX-like platforms
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
WRKSRC= ${WRKDIR}/netsurf
|
|
|
|
USE_TOOLS+= gmake perl:build pax pkg-config
|
|
|
|
BUILD_DEPENDS+= re2c>=0.12.*:../../devel/re2c
|
|
BUILD_DEPENDS+= lemon>=1.0:../../wip/lemon
|
|
|
|
INSTALLATION_DIRS+= share/netsurf bin
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && pax -rw !NetSurf ${DESTDIR}${PREFIX}/share/netsurf/
|
|
cd ${WRKSRC} && pax -rw gtk/res ${DESTDIR}${PREFIX}/share/netsurf/
|
|
${INSTALL_PROGRAM} ${WRKSRC}/nsgtk ${DESTDIR}${PREFIX}/share/netsurf/nsgtk
|
|
${INSTALL_SCRIPT} ${WRKSRC}/netsurf ${DESTDIR}${PREFIX}/bin/netsurf
|
|
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.include "../../devel/libglade/buildlink3.mk"
|
|
.include "../../graphics/librsvg/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../www/curl/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../graphics/mng/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|