diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-09-24 16:58:38 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-09-24 16:58:38 +0800 |
commit | 9c6feda8fa308d5d501299251b9fd15f342f2943 (patch) | |
tree | 92fb54442b7b37a867b72b84315cdb5fd7d7fd38 /www | |
parent | 49890eda34bd75cf26e8cff386a4f7fb21b961f9 (diff) | |
download | marcuscom-ports-9c6feda8fa308d5d501299251b9fd15f342f2943.tar marcuscom-ports-9c6feda8fa308d5d501299251b9fd15f342f2943.tar.gz marcuscom-ports-9c6feda8fa308d5d501299251b9fd15f342f2943.tar.bz2 marcuscom-ports-9c6feda8fa308d5d501299251b9fd15f342f2943.tar.lz marcuscom-ports-9c6feda8fa308d5d501299251b9fd15f342f2943.tar.xz marcuscom-ports-9c6feda8fa308d5d501299251b9fd15f342f2943.tar.zst marcuscom-ports-9c6feda8fa308d5d501299251b9fd15f342f2943.zip |
Fix the with_static option I broke in the 1.1.15 update.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13014 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www')
-rw-r--r-- | www/webkit-gtk2/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/www/webkit-gtk2/Makefile b/www/webkit-gtk2/Makefile index 138d526e9..802ab932c 100644 --- a/www/webkit-gtk2/Makefile +++ b/www/webkit-gtk2/Makefile @@ -3,7 +3,7 @@ # Whom: Michael Johnson <ahze@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/www/webkit-gtk2/Makefile,v 1.37 2009/09/22 18:11:57 kwm Exp $ +# $MCom: ports/www/webkit-gtk2/Makefile,v 1.38 2009/09/23 17:49:59 kwm Exp $ # PORTNAME= webkit @@ -66,8 +66,7 @@ CONFIGURE_ARGS+=--enable-static PLIST_SUB+= STATIC="" .else CONFIGURE_ARGS+=--enable-static=no -#PLIST_SUB+= STATIC="@comment " -PLIST_SUB+= STATIC="" +PLIST_SUB+= STATIC="@comment " .endif post-patch: @@ -75,5 +74,9 @@ post-patch: ${WRKSRC}/WebCore/plugins/PluginDatabase.cpp @${FIND} ${WRKSRC} -name GNUmakefile.* | ${XARGS} ${REINPLACE_CMD} -e \ 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g' +.if !defined(WITH_STATIC) + @${REINPLACE_CMD} -e 's|build_old_libs=yes|build_old_libs=no|g' \ + ${WRKDIR}/gnome-libtool +.endif .include <bsd.port.post.mk> |