diff options
author | Jeremy Messenger <mezz@FreeBSD.org> | 2008-02-28 04:39:23 +0000 |
---|---|---|
committer | Jeremy Messenger <mezz@FreeBSD.org> | 2008-02-28 04:39:23 +0000 |
commit | a6cd016924f81627f28df76c9d388de64c5ada30 (patch) | |
tree | 6cd45240fe1b63ae443514c98eadf85a934b5c05 /www/xulrunner | |
parent | 77f362106b12f72d8ebe7c182e63c1f5dfe9d095 (diff) |
- Add "--with-default-mozilla-five-home=${PREFIX}/lib/${MOZILLA}" to fix other
applications in the runtime. Some applications required to have set
MOZILLA_FIVE_HOME or/and LD_LIBRARY_PATH to make it works in the runtime. Now,
it's no longer need to set these variables, which this flag takes care of it.
The MOZILLA_FIVE_HOME still works with this flag if someone need to use
different one. I have learned about this flag from RPM, Debian, Gentoo ebuild
and other packages.
- Bump the PORTREVISION.
Have been tested in MC CVS since Dec.
Notes
Notes:
svn path=/head/; revision=208043
Diffstat (limited to 'www/xulrunner')
-rw-r--r-- | www/xulrunner/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/www/xulrunner/Makefile b/www/xulrunner/Makefile index ceddb6c1f6be..c4d6c5513406 100644 --- a/www/xulrunner/Makefile +++ b/www/xulrunner/Makefile @@ -3,12 +3,12 @@ # Whom: Michael Johnson <ahze@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/www/xulrunner/Makefile,v 1.13 2006/10/12 12:22:03 ahze Exp $ +# $MCom: ports/www/xulrunner/Makefile,v 1.15 2007/12/28 17:39:31 mezz Exp $ # PORTNAME= xulrunner PORTVERSION= 1.8.0.4 -PORTREVISION?= 9 +PORTREVISION?= 10 CATEGORIES?= www devel MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= xulrunner/releases/${PORTVERSION}/source/ @@ -26,7 +26,8 @@ USE_GMAKE= yes USE_GCC= 3.4+ PORT_MOZCONFIG= ${WRKSRC}/xulrunner/config/mozconfig -MOZ_OPTIONS?= --disable-javaxpcom --enable-canvas \ +MOZ_OPTIONS?= --with-default-mozilla-five-home=${PREFIX}/lib/${MOZILLA} \ + --disable-javaxpcom --enable-canvas \ --enable-system-cairo MOZ_EXTENSIONS= default,cookie,permissions OPTIONS= # Empty, used for generic gecko OPTIONS |