diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-11-30 22:08:50 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-11-30 22:08:50 +0800 |
commit | 2a6ade2008b084b79b034e657a035221631ff1a4 (patch) | |
tree | c43166c2dadbf71931f627af7557a254c9d2ab1d /www/webkit-gtk3/Makefile | |
parent | 89dd9d363f5504669ae45a65dbdfccfc3ff79bc8 (diff) | |
download | marcuscom-ports-2a6ade2008b084b79b034e657a035221631ff1a4.tar marcuscom-ports-2a6ade2008b084b79b034e657a035221631ff1a4.tar.gz marcuscom-ports-2a6ade2008b084b79b034e657a035221631ff1a4.tar.bz2 marcuscom-ports-2a6ade2008b084b79b034e657a035221631ff1a4.tar.lz marcuscom-ports-2a6ade2008b084b79b034e657a035221631ff1a4.tar.xz marcuscom-ports-2a6ade2008b084b79b034e657a035221631ff1a4.tar.zst marcuscom-ports-2a6ade2008b084b79b034e657a035221631ff1a4.zip |
Add javascriptcoregtk to pkgconfig file [1].
Switch video support and replace it with a optional webgl support. (default off).
remove trash file in webkit-gtk2 port.
Obtained from: webkit upstream [1] (found by looking at the debian patches)
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@16602 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www/webkit-gtk3/Makefile')
-rw-r--r-- | www/webkit-gtk3/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/www/webkit-gtk3/Makefile b/www/webkit-gtk3/Makefile index fb3e2f561..f4051b9ad 100644 --- a/www/webkit-gtk3/Makefile +++ b/www/webkit-gtk3/Makefile @@ -3,12 +3,12 @@ # Whom: Michael Johnson <ahze@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/www/webkit-gtk3/Makefile,v 1.22 2011/10/04 15:20:36 kwm Exp $ +# $MCom: ports/www/webkit-gtk3/Makefile,v 1.23 2011/10/14 18:21:53 kwm Exp $ # PORTNAME= webkit PORTVERSION= 1.6.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://webkitgtk.org/ PKGNAMESUFFIX= -gtk3 @@ -26,7 +26,7 @@ LIB_DEPENDS= enchant.1:${PORTSDIR}/textproc/enchant \ soup-2.4.1:${PORTSDIR}/devel/libsoup USE_GETTEXT= yes -WANT_GSTREAMER= yes +USE_GSTREAMER= yes MAKE_JOBS_SAFE= yes USE_XORG= xt USE_BISON= build @@ -50,16 +50,16 @@ GLIB_SCHEMAS= org.webkitgtk-3.0.gschema.xml BROWSER_PLUGINS_DIR?= ${LOCALBASE}/lib/browser_plugins/symlinks/webkit-gtk3 #_BROWSER_PLUGINS_DIR= ${BROWSER_PLUGINS_DIR:S|^/|"|:S|/|", "|g}", -OPTIONS= VIDEO "Enable video support" on \ +OPTIONS= WEBGL "Enable webGL support (experimental)" off \ DEBUG "Build with debug support" off .include <bsd.port.pre.mk> -.if defined(WITH_VIDEO) -USE_GSTREAMER+= yes -CONFIGURE_ARGS+=--enable-video +.if defined(WITH_WEBGL) +USE_GL= gl +CONFIGURE_ARGS+=--enable-webgl .else -CONFIGURE_ARGS+=--disable-video +CONFIGURE_ARGS+=--disable-webgl .endif .if defined(WITH_DEBUG) |