summaryrefslogtreecommitdiff
path: root/www/links-gui
diff options
context:
space:
mode:
authordholland <dholland@pkgsrc.org>2015-07-20 23:03:24 +0000
committerdholland <dholland@pkgsrc.org>2015-07-20 23:03:24 +0000
commit40e21a8f0d1e02e2616f88ed5de89a5fa965e1ef (patch)
tree7bd3bc6c14a23d782b22580569324eaa451c6aaa /www/links-gui
parentcfdd7472fb83a9a9acc48b40106c1a32daef0803 (diff)
downloadpkgsrc-40e21a8f0d1e02e2616f88ed5de89a5fa965e1ef.tar.gz
Update www/links{,gui} to links-{,gui-}2.10.
From Leo Taccari in PR 50072. pkgsrc changes: o Convert all the old links-xz and links-zlib options to lzma and zlib2. o Do not include the bzip2, xz and zlib buildlink3.mk files: they are handled in www/links/options.mk. o Add "svg" option for links-gui (disabled by default) to reflect upstream change. Changes: o Fix "Counld not assing boundary" bug when posting a form The bug was found by Greg Cook o SVG support using the rsvg library o Attach to existing links instance instead of creating a new instance o Detect image type based on the first few bytes rather than on content-type o New glyphs taken from Volker's git o Fixed a bug on Windows where dns lookup got stuck if we closed the primary instance (which resulted in fork) while the lookup was in progress o Use OpenMP in the image scaler o Fixed a bug where the output of font sharpening depended on data read from uninitialized memory o Preallocate downloaded files on Linux o Support libevent and libev o Enable SSL SNI, some servers need it o Test for RAND_* functions in configure because libressl doesn't have them o Support keepalive on https connections
Diffstat (limited to 'www/links-gui')
-rw-r--r--www/links-gui/Makefile13
1 files changed, 11 insertions, 2 deletions
diff --git a/www/links-gui/Makefile b/www/links-gui/Makefile
index 8e318821bb3..50791823c28 100644
--- a/www/links-gui/Makefile
+++ b/www/links-gui/Makefile
@@ -1,17 +1,26 @@
-# $NetBSD: Makefile,v 1.72 2014/12/30 14:47:25 wiz Exp $
+# $NetBSD: Makefile,v 1.73 2015/07/20 23:03:24 dholland Exp $
PKGNAME= ${DISTNAME:S/links/&-gui/}
COMMENT= Lynx-like text and graphics WWW browser
CONFLICTS+= links-[0-9]* elinks-0.3*
-USE_TOOLS+= pkg-config
+USE_TOOLS+= pkg-config
CONFIGURE_ARGS+= --enable-graphics
CONFIGURE_ARGS+= --without-sdl
BUILDLINK_DEPMETHOD.libXt?= build
+PKG_SUPPORTED_OPTIONS+= svg
+
.include "../../www/links/Makefile.common"
+
+.if !empty(PKG_OPTIONS:Msvg)
+. include "../../graphics/librsvg/buildlink3.mk"
+.else
+CONFIGURE_ARGS+= --without-librsvg
+.endif
+
.include "../../graphics/png/buildlink3.mk"
.include "../../graphics/tiff/buildlink3.mk"
.include "../../x11/libX11/buildlink3.mk"