diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2010-11-14 21:12:19 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2010-11-14 21:12:19 +0000 |
commit | 7e3b13225a3424f0aa98323908eeecaa8e2033fb (patch) | |
tree | 496f26ed2883e07e3213472d010a8a8e79518eae /www | |
parent | 9541e4634105bb39bb69b3b4aa3a2d793341ff9e (diff) |
Notes
Diffstat (limited to 'www')
-rw-r--r-- | www/chromium/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/www/chromium/Makefile b/www/chromium/Makefile index 4f8cac40e8e9..026ec4cf815a 100644 --- a/www/chromium/Makefile +++ b/www/chromium/Makefile @@ -88,8 +88,6 @@ BUILDTYPE= Release BUILDTYPE= Debug .endif -#pull newer flex and gperf in from ports -MAKE_ENV+= PATH=${LOCALBASE}/bin:${PATH} MAKE_ENV+= BUILDTYPE=${BUILDTYPE} MAKE_JOBS_SAFE= yes STRIP= @@ -108,6 +106,7 @@ post-patch: @${REINPLACE_CMD} -e "s|/usr/local|${LOCALBASE}|" \ ${WRKSRC}/base/base.gypi \ ${WRKSRC}/build/common.gypi \ + ${WRKSRC}/third_party/ffmpeg/ffmpeg.gyp \ ${WRKSRC}/third_party/icu/public/common/unicode/pfreebsd.h \ ${WRKSRC}/third_party/tcmalloc/chromium/src/config_freebsd.h \ ${WRKSRC}/third_party/WebKit/WebCore/plugins/PluginDatabase.cpp \ @@ -115,6 +114,13 @@ post-patch: @${REINPLACE_CMD} -e 's|/usr/bin/gcc|${CC}|' \ ${WRKSRC}/third_party/WebKit/WebCore/bindings/scripts/IDLParser.pm \ ${WRKSRC}/third_party/WebKit/WebCore/dom/make_names.pl + @${REINPLACE_CMD} -e "s|'flex'|'${LOCALBASE}/bin/flex'|" \ + ${WRKSRC}/third_party/angle/src/build_angle.gyp \ + ${WRKSRC}/third_party/WebKit/WebCore/WebCore.gyp/scripts/action_maketokenizer.py + @${REINPLACE_CMD} -e 's|gperf --key-positions|${LOCALBASE}/bin/gperf --key-positions|' \ + ${WRKSRC}/third_party/WebKit/WebCore/css/makeprop.pl \ + ${WRKSRC}/third_party/WebKit/WebCore/css/makevalues.pl \ + ${WRKSRC}/third_party/WebKit/WebCore/make-hash-tools.pl do-configure: cd ${WRKSRC} && \ |