freebsd-ports/www/webkit-gtk2/Makefile
Jeremy Messenger 66cea9d7e9 Somehow, if the configure finds bash then it will using bash's doltlibtool
then the result a static library will not be compile and install. It ends mess
up users' plist. Disable to use bash's doltlibtool. Bump the PORTREVISION.

I personal don't understand with bash's doltlibtool issue, so if anyone want
to dig in it deeper then be my guest.

PR:		ports/130891
Submitted by:	WATANABE Kazuhiro <CQG00620@nifty.ne.jp>
2009-02-01 16:46:09 +00:00

73 lines
2 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.23 2008/10/23 02:41:54 mezz Exp $
#
PORTNAME= webkit
PORTVERSION= 1.0.1
PORTREVISION= 6
CATEGORIES= www
MASTER_SITES= http://people.freedesktop.org/~alp/webkit/gtk/
PKGNAMESUFFIX= -gtk2
MAINTAINER= gnome@FreeBSD.org
COMMENT= An opensource browser engine
LIB_DEPENDS= icutu.38:${PORTSDIR}/devel/icu \
curl.5:${PORTSDIR}/ftp/curl \
sqlite3.8:${PORTSDIR}/databases/sqlite3
WANT_GSTREAMER= yes
USE_XORG= xt
USE_BISON= build
USE_GMAKE= yes
USE_GNOME= gtk20 libxslt
USE_PERL5= yes
USE_LDCONFIG= yes
USE_AUTOTOOLS= autoconf:262 automake:110 libtool:15
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib" \
ac_cv_path_DOLT_BASH=""
CONFIGURE_ARGS= --with-webkit-target=x11 \
--enable-icon-database \
--enable-svg \
--enable-svg-fonts \
--enable-svg-experimental
MAKEFILE= GNUmakefile
BROWSER_PLUGINS_DIR?= ${LOCALBASE}/lib/browser_plugins/symlinks/webkit-gtk2
#_BROWSER_PLUGINS_DIR= ${BROWSER_PLUGINS_DIR:S|^/|"|:S|/|", "|g}",
OPTIONS= VIDEO "Enable video support" on
.include <bsd.port.pre.mk>
.if defined(WITH_VIDEO)
USE_GSTREAMER+= gnomevfs
CONFIGURE_ARGS+=--enable-video
.endif
post-patch:
@${REINPLACE_CMD} -e 's|%%BROWSER_PLUGINS_DIR%%|${BROWSER_PLUGINS_DIR}|' \
${WRKSRC}/WebCore/plugins/PluginDatabase.cpp
@${REINPLACE_CMD} -e 's|autoconf|${AUTOCONF}|g ; \
s|automake|${AUTOMAKE}|g ; s|aclocal|${ACLOCAL}|g ; \
s|autoheader|${AUTOHEADER}|g ; \
s|LIBTOOLIZE=libtoolize|LIBTOOLIZE=${LIBTOOLIZE}|g ; \
s|$$srcdir/configure|#$$srcdir/configure|g' \
${WRKSRC}/autogen.sh
@${FIND} ${WRKSRC} -name GNUmakefile.am | ${XARGS} ${REINPLACE_CMD} -e \
's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g'
pre-configure:
@(cd ${WRKSRC} && ${SH} autogen.sh)
post-install:
# Install compat pkg-config file so we don't have to patch ports
${CP} ${PREFIX}/libdata/pkgconfig/webkit-1.0.pc \
${PREFIX}/libdata/pkgconfig/WebKitGtk.pc
.include <bsd.port.post.mk>