771cb4ba44
pkgsrc changes: - Add fontconfig and freetype2 dependencies to links-gui in order to adjust per-upstream defaults Changes: 2.19 ---- - Disable high-DPI scaling on Windows - Links makes it possible to specify scaling of text and images in the dialog windows, so this should preferably be used instead of system-level scaling - Fixed a crash on invalid IDN URL, such as http://test,ï.com/ (found by lsxvdqe@gmail.com) - Make it possible to select other fonts, using fontconfig and freetype - Show certificate authority in the "Document info" box - Use international error messages - The -dump switch didn't report an error if write to stdout failed
29 lines
774 B
Makefile
29 lines
774 B
Makefile
# $NetBSD: Makefile,v 1.86 2019/04/07 19:49:12 leot Exp $
|
|
|
|
PKGNAME= ${DISTNAME:S/links/&-gui/}
|
|
COMMENT= Lynx-like text and graphics WWW browser
|
|
|
|
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 "../../fonts/fontconfig/buildlink3.mk"
|
|
.include "../../graphics/freetype2/buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../graphics/tiff/buildlink3.mk"
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/libXt/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|