summaryrefslogtreecommitdiffstats
path: root/www/webkit-gtk2/Makefile
blob: 77ad249e1462d704d4e998f8decff6f0ebbeed64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# Created by: Michael Johnson <ahze@FreeBSD.org>
# $FreeBSD$
#   $MCom: ports/trunk/www/webkit-gtk2/Makefile 18610 2013-06-30 16:33:05Z marcus $

PORTNAME=   webkit
PORTVERSION=    1.8.3
PORTREVISION=   3
CATEGORIES= www
MASTER_SITES=   http://webkitgtk.org/releases/
PKGNAMESUFFIX=  -gtk2

MAINTAINER= gnome@FreeBSD.org
COMMENT=    An opensource browser engine

BUILD_DEPENDS=  ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex \
        ${LOCALBASE}/bin/gperf:${PORTSDIR}/devel/gperf \
        gtkdoc-rebase:${PORTSDIR}/textproc/gtk-doc
LIB_DEPENDS=    libenchant.so:${PORTSDIR}/textproc/enchant \
        libicutu.so:${PORTSDIR}/devel/icu \
        libcurl.so:${PORTSDIR}/ftp/curl \
        libsoup-2.4.so:${PORTSDIR}/devel/libsoup

USE_XZ=     yes
USE_GSTREAMER=  yes
USE_XORG=   xt
USES=       bison gettext gmake perl5 pkgconfig
USE_AUTOTOOLS=  libtool
USE_GNOME=  gtk20 libxslt ltverhack introspection:build
USE_SQLITE= yes
USE_LDCONFIG=   yes
GNU_CONFIGURE=  yes
CONFIGURE_ENV=  ac_cv_path_FLEX="${LOCALBASE}/bin/flex" \
        ZLIB_CFLAGS="-I/usr/include" \
        ZLIB_LIBS="-L/usr/lib -lz" \
        ac_cv_path_DOLT_BASH=""
CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib
CONFIGURE_ARGS= --with-gtk=2.0 \
        --enable-svg-fonts \
        --disable-geolocation \
        --enable-introspection
MAKEFILE=   GNUmakefile

BROWSER_PLUGINS_DIR?=   ${LOCALBASE}/lib/browser_plugins/symlinks/webkit-gtk2
#_BROWSER_PLUGINS_DIR=  ${BROWSER_PLUGINS_DIR:S|^/|"|:S|/|", "|g}",

OPTIONS_DEFINE= WEBGL DEBUG
OPTIONS_DEFAULT=WEBGL
WEBGL_DESC= Enable Web GL support

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MWEBGL}
USE_GL=     gl
CONFIGURE_ARGS+=--enable-webgl
.else
CONFIGURE_ARGS+=--disable-webgl
.endif

.if ${PORT_OPTIONS:MDEBUG}
CONFIGURE_ARGS+=--enable-debug
.else
CONFIGURE_ARGS+=--disable-debug
.endif

.if ${ARCH} == powerpc64
CFLAGS+=    -mminimal-toc
.endif

CCISCLANG!=     ${CC} --version

.if !empty(CCISCLANG:M*clang*)
CPPFLAGS+=  -Wno-c++11-extensions
.endif

.include <bsd.port.pre.mk>

.if ${PERL_LEVEL} >= 501400
BUILD_DEPENDS+= p5-Switch>0:${PORTSDIR}/lang/p5-Switch
.endif

post-patch:
    @${REINPLACE_CMD} -e 's|%%BROWSER_PLUGINS_DIR%%|${BROWSER_PLUGINS_DIR}|' \
        ${WRKSRC}/Source/WebCore/plugins/PluginDatabase.cpp
    @${FIND} ${WRKSRC} -name GNUmakefile.* | ${XARGS} ${REINPLACE_CMD} -e \
        's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g'
# disable static library.
    @${REINPLACE_CMD} -e 's|^build_old_libs=yes|build_old_libs=no|' \
        ${WRKDIR}/gnome-libtool
    @${REINPLACE_CMD} -e 's|/usr/bin/gcc|${CC}|' \
        ${WRKSRC}/Source/WebCore/dom/make_names.pl \
        ${WRKSRC}/Source/WebCore/css/make-css-file-arrays.pl \
        ${WRKSRC}/Source/WebCore/bindings/scripts/IDLParser.pm
    @${REINPLACE_CMD} -e 's|"gperf|"${LOCALBASE}/bin/gperf|g' \
        ${WRKSRC}/Source/WebCore/css/makevalues.pl \
        ${WRKSRC}/Source/WebCore/css/makeprop.pl \
        ${WRKSRC}/Source/WebCore/make-hash-tools.pl

post-install:
# Add work around for epiphany 2.x gobject-introspection build.
    ${LN} -sf ${PREFIX}/libdata/pkgconfig/webkit-1.0.pc \
        ${PREFIX}/libdata/pkgconfig/webkitgtk-1.0.pc

.include <bsd.port.post.mk>