diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-12-29 01:39:32 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-12-29 01:39:32 +0800 |
commit | 589477efe47c16a83665a3f16710091e61ac8603 (patch) | |
tree | 7fd072e2dde09dd65544b8a63da1bfb1f36410dd /www/seamonkey/files/patch-configure | |
parent | c120d69ae983fcdcf34cf4d992c4fb0b51fc0b05 (diff) | |
download | marcuscom-ports-589477efe47c16a83665a3f16710091e61ac8603.tar marcuscom-ports-589477efe47c16a83665a3f16710091e61ac8603.tar.gz marcuscom-ports-589477efe47c16a83665a3f16710091e61ac8603.tar.bz2 marcuscom-ports-589477efe47c16a83665a3f16710091e61ac8603.tar.lz marcuscom-ports-589477efe47c16a83665a3f16710091e61ac8603.tar.xz marcuscom-ports-589477efe47c16a83665a3f16710091e61ac8603.tar.zst marcuscom-ports-589477efe47c16a83665a3f16710091e61ac8603.zip |
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.
It has been tested with py-gnome-extras, ruby-gtkmozembed, epiphany,
development version of deluge, miro and yelp in both build and run time
with Firefox.
marcus wants me to put in MC first before I put these in FreeBSD ports tree,
because of ports tree still isn't complete unfreeze. I personal doubt that it
will causing any problem, so if it does then please report to me.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@10009 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www/seamonkey/files/patch-configure')
-rw-r--r-- | www/seamonkey/files/patch-configure | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/www/seamonkey/files/patch-configure b/www/seamonkey/files/patch-configure new file mode 100644 index 000000000..1b766c9db --- /dev/null +++ b/www/seamonkey/files/patch-configure @@ -0,0 +1,47 @@ +--- configure.orig 2007-07-15 10:42:42.000000000 -0400 ++++ configure 2007-07-20 17:39:12.000000000 -0400 +@@ -1047,7 +1047,7 @@ + + MOZJPEG=62 + MOZPNG=10217 +-MOZZLIB=1.2.3 ++MOZZLIB=1.2.2 + NSPR_VERSION=4 + NSS_VERSION=3 + +@@ -10403,7 +10403,7 @@ + echo $ac_n "(cached) $ac_c" 1>&6 + else + ac_save_LIBS="$LIBS" +-LIBS="-liconv $LIBS" ++LIBS="-L$LOCALBASE/lib -liconv $LIBS" + cat > conftest.$ac_ext <<EOF + #line 10409 "configure" + #include "confdefs.h" +@@ -10434,7 +10434,7 @@ + fi + if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 +- _ICONV_LIBS="$_ICONV_LIBS -liconv" ++ _ICONV_LIBS="$_ICONV_LIBS -L$LOCALBASE/lib -liconv" + else + echo "$ac_t""no" 1>&6 + echo $ac_n "checking for libiconv in -liconv""... $ac_c" 1>&6 +@@ -10444,7 +10444,7 @@ + echo $ac_n "(cached) $ac_c" 1>&6 + else + ac_save_LIBS="$LIBS" +-LIBS="-liconv $LIBS" ++LIBS="-L$LOCALBASE/lib -liconv $LIBS" + cat > conftest.$ac_ext <<EOF + #line 10450 "configure" + #include "confdefs.h" +@@ -10475,7 +10475,7 @@ + fi + if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 +- _ICONV_LIBS="$_ICONV_LIBS -liconv" ++ _ICONV_LIBS="$_ICONV_LIBS -L$LOCALBASE/lib -liconv" + else + echo "$ac_t""no" 1>&6 + fi |