blob: 0c92a6ea67ef08c0e64cfe418254aa49ce45a650 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.18 2018/04/16 14:33:57 wiz Exp $
PKGREVISION= 14
.include "Makefile.common"
PKGNAME= ${DISTNAME:S/webkitgtk/webkit24-gtk/}
COMMENT= GTK2 port of the WebKit browser engine (version 2.4)
CONFIGURE_ARGS+= --with-gtk=2.0
CONFIGURE_ARGS+= --disable-webkit2
.if ${OPSYS} == "NetBSD" && ${MACHINE_CPU:U} == "arm"
LDFLAGS+= -Wl,-no-keep-memory -Wl,-reduce-memory
.endif
#introspection support
BUILDLINK_API_DEPENDS.gtk2+= gtk2+>=2.24.17nb3
.include "../../x11/gtk2/buildlink3.mk"
.include "../../graphics/cairo-gobject/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|