7010abd14e
PR: ports/160268 [1], ports/160471 [2] Reported by: paul@thistledew.org [1], Martin Laabs <spamtrap@martinlaabs.de> [2]
86 lines
2.5 KiB
Makefile
86 lines
2.5 KiB
Makefile
# New ports collection makefile for: webkit
|
|
# Date created: 2007-10-21
|
|
# Whom: Michael Johnson <ahze@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/www/webkit-gtk2/Makefile,v 1.80 2011/07/11 10:14:46 kwm Exp $
|
|
#
|
|
|
|
PORTNAME= webkit
|
|
PORTVERSION= 1.4.3
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://webkitgtk.org/
|
|
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 \
|
|
g-ir-scanner:${PORTSDIR}/devel/gobject-introspection
|
|
LIB_DEPENDS= enchant.1:${PORTSDIR}/textproc/enchant \
|
|
icutu.48:${PORTSDIR}/devel/icu \
|
|
curl.6:${PORTSDIR}/ftp/curl \
|
|
sqlite3.8:${PORTSDIR}/databases/sqlite3 \
|
|
soup-2.4.1:${PORTSDIR}/devel/libsoup
|
|
|
|
USE_GETTEXT= yes
|
|
USE_GSTREAMER= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
USE_XORG= xt xrender
|
|
USE_BISON= build
|
|
USE_GMAKE= yes
|
|
USE_AUTOTOOLS= libtool
|
|
USE_GNOME= gtk20 libxslt ltverhack
|
|
USE_PERL5= yes
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= ac_cv_path_FLEX="${LOCALBASE}/bin/flex" \
|
|
ac_cv_path_DOLT_BASH=""
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS= --enable-icon-database \
|
|
--with-gtk=2.0 \
|
|
--enable-introspection
|
|
MAKEFILE= GNUmakefile
|
|
GLIB_SCHEMAS= org.webkitgtk-1.0.gschema.xml
|
|
|
|
BROWSER_PLUGINS_DIR?= ${LOCALBASE}/lib/browser_plugins/symlinks/webkit-gtk2
|
|
#_BROWSER_PLUGINS_DIR= ${BROWSER_PLUGINS_DIR:S|^/|"|:S|/|", "|g}",
|
|
|
|
OPTIONS= DEBUG "Build with debug support" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_DEBUG)
|
|
CONFIGURE_ARGS+=--enable-debug
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-debug
|
|
.endif
|
|
|
|
.if ${ARCH} == powerpc64
|
|
CFLAGS+= -mminimal-toc
|
|
.endif
|
|
|
|
.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
|
|
|
|
.include <bsd.port.post.mk>
|