summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2010-10-07 20:21:42 +0000
committerPacho Ramos <pacho@gentoo.org>2010-10-07 20:21:42 +0000
commit948c5522011f36bb76e791d3c1c5dd3770c080b1 (patch)
treea58850200281feaa66588ced6ee107c99d65ea1b /dev-util/mono-tools/files
parentppc64 stable wrt #324077 (diff)
downloadgentoo-2-948c5522011f36bb76e791d3c1c5dd3770c080b1.tar.gz
gentoo-2-948c5522011f36bb76e791d3c1c5dd3770c080b1.tar.bz2
gentoo-2-948c5522011f36bb76e791d3c1c5dd3770c080b1.zip
Remove old.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/mono-tools/files')
-rw-r--r--dev-util/mono-tools/files/mono-tools-1.1.17-html-renderer-fixes.diff72
-rw-r--r--dev-util/mono-tools/files/mono-tools-1.2.4-install.patch10
-rw-r--r--dev-util/mono-tools/files/mono-tools-1.2.6-html-renderer-fixes.patch78
-rw-r--r--dev-util/mono-tools/files/mono-tools-1.9-html-renderer-fixes.patch73
-rw-r--r--dev-util/mono-tools/files/mono-tools-2.0-html-renderer-fixes.patch126
5 files changed, 0 insertions, 359 deletions
diff --git a/dev-util/mono-tools/files/mono-tools-1.1.17-html-renderer-fixes.diff b/dev-util/mono-tools/files/mono-tools-1.1.17-html-renderer-fixes.diff
deleted file mode 100644
index 0b631a3e4e93..000000000000
--- a/dev-util/mono-tools/files/mono-tools-1.1.17-html-renderer-fixes.diff
+++ /dev/null
@@ -1,72 +0,0 @@
-Only in mono-tools-1.1.17: autom4te.cache
-diff -aur --exclude=Makefile.in --exclude=aclocal.m4 --exclude=configure mono-tools-1.1.17-orig/configure.in mono-tools-1.1.17/configure.in
---- mono-tools-1.1.17-orig/configure.in 2006-10-04 00:13:30.000000000 -0700
-+++ mono-tools-1.1.17/configure.in 2006-10-28 05:28:17.000000000 -0700
-@@ -42,21 +42,32 @@
- AC_SUBST(GTK_SHARP_LIBS)
-
-
--PKG_CHECK_MODULES(GTKHTML_SHARP, gtkhtml-sharp-2.0, enable_gtkhtml=yes, enable_gtkhtml=no)
--AC_SUBST(GTKHTML_SHARP_LIBS)
-+AC_ARG_ENABLE(gtkhtml,
-+ AC_HELP_STRING([--enable-gtkhtml], [Use GTKHTML Browser]),
-+ enable_gtkhtml="$enableval", enable_gtkhtml=yes)
-+
-+if test "x$enable_gtkhtml" = "xyes" ; then
-+ PKG_CHECK_MODULES(GTKHTML_SHARP, gtkhtml-sharp-2.0)
-+ AC_SUBST(GTKHTML_SHARP_LIBS)
-+fi
-+
- AM_CONDITIONAL(ENABLE_GTKHTML, test "x$enable_gtkhtml" = "xyes")
-
-
--PKG_CHECK_MODULES(GECKO_SHARP, gecko-sharp-2.0, enable_gecko=yes, enable_gecko=no)
--AC_SUBST(GECKO_SHARP_LIBS)
--AM_CONDITIONAL(ENABLE_GECKO, test "x$enable_gecko" = "xyes")
-+AC_ARG_ENABLE(mozilla,
-+ AC_HELP_STRING([--enable-mozilla], [Use Gecko Browser]),
-+ enable_gecko="$enableval", enable_gecko=yes)
-+
-+if test "x$enable_gecko" = "xyes" ; then
-+ PKG_CHECK_MODULES(GECKO_SHARP, gecko-sharp-2.0)
-+ AC_SUBST(GECKO_SHARP_LIBS)
-
--if test "x$enable_gecko" = "xyes"; then
-- # get the mozilla home directory
- MOZILLA_HOME="`$PKG_CONFIG --variable=libdir mozilla-gtkmozembed`"
- AC_SUBST(MOZILLA_HOME)
- fi
-
-+AM_CONDITIONAL(ENABLE_GECKO, test "x$enable_gecko" = "xyes")
-+
-
- if test "x$enable_gtkhtml$enable_gecko" = "xnono" ; then
- AC_MSG_ERROR([no HTML display found. You need either gtkhtml or gecko])
-Only in mono-tools-1.1.17-orig/docbrowser: AssemblyInfo.cs
-diff -aur --exclude=Makefile.in --exclude=aclocal.m4 --exclude=configure mono-tools-1.1.17-orig/docbrowser/Makefile.am mono-tools-1.1.17/docbrowser/Makefile.am
---- mono-tools-1.1.17-orig/docbrowser/Makefile.am 2006-10-04 00:13:30.000000000 -0700
-+++ mono-tools-1.1.17/docbrowser/Makefile.am 2006-10-28 04:32:22.000000000 -0700
-@@ -1,5 +1,7 @@
- monodocdir=$(prefix)/lib/monodoc
-+if ENABLE_GTKHTML
- noinst_DATA = admin.exe
-+endif
-
-
- if ENABLE_GECKO
-diff -aur --exclude=Makefile.in --exclude=aclocal.m4 --exclude=configure mono-tools-1.1.17-orig/docbrowser/monodoc.in mono-tools-1.1.17/docbrowser/monodoc.in
---- mono-tools-1.1.17-orig/docbrowser/monodoc.in 2006-10-04 00:13:30.000000000 -0700
-+++ mono-tools-1.1.17/docbrowser/monodoc.in 2006-10-28 07:50:20.000000000 -0700
-@@ -69,8 +69,10 @@
- MOZILLA_HOME=@MOZILLA_HOME@
- elif [ $(which mozilla 2> /dev/null) ] && grep MOZILLA_FIVE_HOME= "$(which mozilla)" > /dev/null ; then
- MOZILLA_HOME=$(grep MOZILLA_FIVE_HOME= $(which mozilla) | cut -d '"' -f 2)
--elif [ $(which firefox 2> /dev/null) ] && grep MOZILLA_FIVE_HOME= "$(which firefox)" > /dev/null ; then
-- MOZILLA_HOME=$(grep MOZILLA_FIVE_HOME= $(which firefox) | cut -d '"' -f 2)
-+elif [ $(which firefox 2> /dev/null) ] && grep MOZILLA_LIBDIR= "$(which firefox)" > /dev/null ; then
-+ MOZILLA_HOME=$(grep MOZILLA_LIBDIR= $(which firefox) | cut -d '=' -f 2)
-+elif [ $(which seamonkey 2> /dev/null) ] && grep MOZILLA_LIBDIR= "$(which seamonkey)" > /dev/null ; then
-+ MOZILLA_HOME=$(grep MOZILLA_LIBDIR= $(which seamonkey) | cut -d '=' -f 2)
- fi
-
- if [ -n $LD_LIBRARY_PATH ]; then
diff --git a/dev-util/mono-tools/files/mono-tools-1.2.4-install.patch b/dev-util/mono-tools/files/mono-tools-1.2.4-install.patch
deleted file mode 100644
index d89a70946377..000000000000
--- a/dev-util/mono-tools/files/mono-tools-1.2.4-install.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- po/Makefile.in.in.orig Fri Jun 17 01:34:05 2005
-+++ po/Makefile.in.in Fri Jun 17 01:39:12 2005
-@@ -32,6 +32,7 @@
- gettextsrcdir = $(datadir)/glib-2.0/gettext/po
- subdir = po
-
-+mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- INSTALL = @INSTALL@
- INSTALL_DATA = @INSTALL_DATA@
-
diff --git a/dev-util/mono-tools/files/mono-tools-1.2.6-html-renderer-fixes.patch b/dev-util/mono-tools/files/mono-tools-1.2.6-html-renderer-fixes.patch
deleted file mode 100644
index c718b13f5d65..000000000000
--- a/dev-util/mono-tools/files/mono-tools-1.2.6-html-renderer-fixes.patch
+++ /dev/null
@@ -1,78 +0,0 @@
---- configure.in.orig 2007-12-19 22:32:57.000000000 -0800
-+++ configure.in 2007-12-19 23:10:42.000000000 -0800
-@@ -42,30 +42,41 @@
- AC_SUBST(GTK_SHARP_LIBS)
-
-
--PKG_CHECK_MODULES(GTKHTML_SHARP, gtkhtml-sharp-3.14, enable_gtkhtml=yes, enable_gtkhtml=no)
--if test "x$enable_gtkhtml" = "xyes"; then
--GTKHTMLDLLCOPY=`pkg-config --variable=Libraries gtkhtml-sharp-3.14`
--CSHARP_FLAGS="-d:GTKHTML_SHARP_3_14"
--else
--PKG_CHECK_MODULES(GTKHTML_SHARP, gtkhtml-sharp-2.0, enable_gtkhtml=yes, enable_gtkhtml=no)
--CSHARP_FLAGS=
--GTKHTMLDLLCOPY=
-+dnl PKG_CHECK_MODULES(GTKHTML_SHARP, gtkhtml-sharp-3.14, enable_gtkhtml=yes, enable_gtkhtml=no)
-+dnl if test "x$enable_gtkhtml" = "xyes"; then
-+dnl GTKHTMLDLLCOPY=`pkg-config --variable=Libraries gtkhtml-sharp-3.14`
-+dnl CSHARP_FLAGS="-d:GTKHTML_SHARP_3_14"
-+dnl else
-+AC_ARG_ENABLE(gtkhtml,
-+ AC_HELP_STRING([--enable-gtkhtml], [Use GTKHTML Browser]),,
-+ enable_gtkhtml=yes)
-+
-+if test "x$enable_gtkhtml" = "xyes" ; then
-+ PKG_CHECK_MODULES(GTKHTML_SHARP, gtkhtml-sharp-2.0)
-+
-+ AC_SUBST(GTKHTML_SHARP_LIBS)
-+ AC_SUBST(GTKHTMLDLLCOPY)
-+ AC_SUBST(CSHARP_FLAGS)
- fi
--AC_SUBST(GTKHTML_SHARP_LIBS)
--AC_SUBST(GTKHTMLDLLCOPY)
--AC_SUBST(CSHARP_FLAGS)
--AM_CONDITIONAL(ENABLE_GTKHTML, test "x$enable_gtkhtml" = "xyes")
-+dnl fi
-
--PKG_CHECK_MODULES(GECKO_SHARP, gecko-sharp-2.0, enable_gecko=yes, enable_gecko=no)
--AC_SUBST(GECKO_SHARP_LIBS)
--AM_CONDITIONAL(ENABLE_GECKO, test "x$enable_gecko" = "xyes")
-+AM_CONDITIONAL(ENABLE_GTKHTML, test "x$enable_gtkhtml" = "xyes")
-
--if test "x$enable_gecko" = "xyes"; then
-- # get the mozilla home directory
-- MOZILLA_HOME="`$PKG_CONFIG --variable=libdir mozilla-gtkmozembed`"
-- AC_SUBST(MOZILLA_HOME)
-+AC_ARG_ENABLE(mozilla,
-+ AC_HELP_STRING([--enable-mozilla], [Use Gecko Browser]),,
-+ enable_gecko=yes)
-+
-+if test "x$enable_gecko"= "xyes" ; then
-+ PKG_CHECK_MODULES(GECKO_SHARP, gecko-sharp-2.0)
-+
-+ AC_SUBST(GECKO_SHARP_LIBS)
-+
-+ # get the mozilla home directory
-+ MOZILLA_HOME="`$PKG_CONFIG --variable=libdir mozilla-gtkmozembed`"
-+ AC_SUBST(MOZILLA_HOME)
- fi
-
-+AM_CONDITIONAL(ENABLE_GECKO, test "x$enable_gecko" = "xyes")
-
- if test "x$enable_gtkhtml$enable_gecko" = "xnono" ; then
- AC_MSG_ERROR([no HTML display found. You need either gtkhtml or gecko])
---- docbrowser/monodoc.in.orig 2007-12-19 23:12:15.000000000 -0800
-+++ docbrowser/monodoc.in 2007-12-19 23:15:03.000000000 -0800
-@@ -85,8 +85,10 @@
- MOZILLA_HOME=$MOZILLA_FIVE_HOME
- elif [ $(which mozilla 2> /dev/null) ] && grep MOZILLA_FIVE_HOME= "$(which mozilla)" > /dev/null ; then
- MOZILLA_HOME=$(grep MOZILLA_FIVE_HOME= $(which mozilla) | cut -d '"' -f 2)
--elif [ $(which firefox 2> /dev/null) ] && grep MOZILLA_FIVE_HOME= "$(which firefox)" > /dev/null ; then
-- MOZILLA_HOME=$(grep MOZILLA_FIVE_HOME= $(which firefox) | cut -d '"' -f 2)
-+elif [ $(which firefox 2> /dev/null) ] && grep MOZILLA_LIBDIR= "$(which firefox)" > /dev/null ; then
-+ MOZILLA_HOME=$(grep MOZILLA_LIBDIR= $(which firefox) | cut -d '=' -f 2)
-+elif [ $(which seamonkey 2> /dev/null) ] && grep MOZILLA_LIBDIR= "$(which seamonkey)" > /dev/null ; then
-+ MOZILLA_HOME=$(grep MOZILLA_LIBDIR= $(which seamonkey) | cut -d '=' -f 2)
- fi
-
- if [ -n $LD_LIBRARY_PATH ]; then
diff --git a/dev-util/mono-tools/files/mono-tools-1.9-html-renderer-fixes.patch b/dev-util/mono-tools/files/mono-tools-1.9-html-renderer-fixes.patch
deleted file mode 100644
index b54278cb7193..000000000000
--- a/dev-util/mono-tools/files/mono-tools-1.9-html-renderer-fixes.patch
+++ /dev/null
@@ -1,73 +0,0 @@
---- configure.in 2008-02-06 19:12:17.000000000 +0100
-+++ configure.in.new 2008-03-20 14:37:13.000000000 +0100
-@@ -43,26 +43,39 @@
- AC_SUBST(GTK_SHARP_LIBS)
-
- PKG_CHECK_MODULES(GTKHTML_SHARP, gtkhtml-sharp-3.14, enable_gtkhtml=yes, enable_gtkhtml=no)
--if test "x$enable_gtkhtml" = "xyes"; then
--CSHARP_FLAGS="-d:GTKHTML_SHARP_3_14"
--else
--PKG_CHECK_MODULES(GTKHTML_SHARP, gtkhtml-sharp-2.0, enable_gtkhtml=yes, enable_gtkhtml=no)
--CSHARP_FLAGS=
-+dnl PKG_CHECK_MODULES(GTKHTML_SHARP, gtkhtml-sharp-3.14, enable_gtkhtml=yes, enable_gtkhtml=no)
-+dnl if test "x$enable_gtkhtml" = "xyes"; then
-+dnl CSHARP_FLAGS="-d:GTKHTML_SHARP_3_14"
-+dnl else
-+AC_ARG_ENABLE(gtkhtml,
-+ AC_HELP_STRING([--enable-gtkhtml], [Use GTKHTML Browser]),,
-+ enable_gtkhtml=yes)
-+
-+if test "x$enable_gtkhtml" = "xyes" ; then
-+ PKG_CHECK_MODULES(GTKHTML_SHARP, gtkhtml-sharp-2.0)
-+
-+ AC_SUBST(GTKHTML_SHARP_LIBS)
-+ AC_SUBST(CSHARP_FLAGS)
- fi
--AC_SUBST(GTKHTML_SHARP_LIBS)
--AC_SUBST(CSHARP_FLAGS)
--AM_CONDITIONAL(ENABLE_GTKHTML, test "x$enable_gtkhtml" = "xyes")
-+dnl fi
-
--PKG_CHECK_MODULES(GECKO_SHARP, gecko-sharp-2.0, enable_gecko=yes, enable_gecko=no)
--AC_SUBST(GECKO_SHARP_LIBS)
--AM_CONDITIONAL(ENABLE_GECKO, test "x$enable_gecko" = "xyes")
-+AM_CONDITIONAL(ENABLE_GTKHTML, test "x$enable_gtkhtml" = "xyes")
-
--if test "x$enable_gecko" = "xyes"; then
-- # get the mozilla home directory
-- MOZILLA_HOME="`$PKG_CONFIG --variable=libdir mozilla-gtkmozembed`"
-- AC_SUBST(MOZILLA_HOME)
-+AC_ARG_ENABLE(mozilla,
-+ AC_HELP_STRING([--enable-mozilla], [Use Gecko Browser]),,
-+ enable_gecko=yes)
-+
-+if test "x$enable_gecko"= "xyes" ; then
-+ PKG_CHECK_MODULES(GECKO_SHARP, gecko-sharp-2.0)
-+
-+ AC_SUBST(GECKO_SHARP_LIBS)
-+
-+ # get the mozilla home directory
-+ MOZILLA_HOME="`$PKG_CONFIG --variable=libdir mozilla-gtkmozembed`"
-+ AC_SUBST(MOZILLA_HOME)
- fi
-
-+AM_CONDITIONAL(ENABLE_GECKO, test "x$enable_gecko" = "xyes")
-
- if test "x$enable_gtkhtml$enable_gecko" = "xnono" ; then
- AC_MSG_ERROR([no HTML display found. You need either gtkhtml or gecko])
-
---- docbrowser/monodoc.in 2008-03-10 23:34:01.000000000 +0100
-+++ docbrowser/monodoc.in.new 2008-03-20 14:27:26.000000000 +0100
-@@ -85,8 +85,10 @@
- MOZILLA_HOME=$MOZILLA_FIVE_HOME
- elif [ $(which mozilla 2> /dev/null) ] && grep MOZILLA_FIVE_HOME= "$(which mozilla)" > /dev/null ; then
- MOZILLA_HOME=$(grep MOZILLA_FIVE_HOME= $(which mozilla) | cut -d '"' -f 2)
--elif [ $(which firefox 2> /dev/null) ] && grep MOZILLA_FIVE_HOME= "$(which firefox)" > /dev/null ; then
-- MOZILLA_HOME=$(grep MOZILLA_FIVE_HOME= $(which firefox) | cut -d '"' -f 2)
-+elif [ $(which firefox 2> /dev/null) ] && grep MOZILLA_LIBDIR= "$(which firefox)" > /dev/null ; then
-+ MOZILLA_HOME=$(grep MOZILLA_LIBDIR= $(which firefox) | cut -d '=' -f 2)
-+elif [ $(which seamonkey 2> /dev/null) ] && grep MOZILLA_LIBDIR= "$(which seamonkey)" > /dev/null ; then
-+ MOZILLA_HOME=$(grep MOZILLA_LIBDIR= $(which seamonkey) | cut -d '=' -f 2)
- fi
-
- if [ -n $LD_LIBRARY_PATH ]; then
diff --git a/dev-util/mono-tools/files/mono-tools-2.0-html-renderer-fixes.patch b/dev-util/mono-tools/files/mono-tools-2.0-html-renderer-fixes.patch
deleted file mode 100644
index 4d963cf9bb3d..000000000000
--- a/dev-util/mono-tools/files/mono-tools-2.0-html-renderer-fixes.patch
+++ /dev/null
@@ -1,126 +0,0 @@
-diff -NrU5 mono-tools-2.0.orig/configure.in mono-tools-2.0/configure.in
---- mono-tools-2.0.orig/configure.in 2008-11-26 18:19:23.000000000 +0100
-+++ mono-tools-2.0/configure.in 2008-11-26 18:27:32.000000000 +0100
-@@ -43,33 +43,56 @@
-
- PKG_CHECK_MODULES(GTK_SHARP, gtk-sharp-2.0 glade-sharp-2.0 gnome-sharp-2.0 gconf-sharp-2.0)
- #PKG_CHECK_MODULES(GTK_SHARP, gtk-sharp glade-sharp gconf-sharp)
- AC_SUBST(GTK_SHARP_LIBS)
-
--PKG_CHECK_MODULES(GTKHTML_SHARP, gtkhtml-sharp-3.14, enable_gtkhtml=yes, enable_gtkhtml=no)
--if test "x$enable_gtkhtml" = "xyes"; then
--CSHARP_FLAGS="-d:GTKHTML_SHARP_3_14"
--else
--PKG_CHECK_MODULES(GTKHTML_SHARP, gtkhtml-sharp-2.0, enable_gtkhtml=yes, enable_gtkhtml=no)
--CSHARP_FLAGS=
-+AC_ARG_ENABLE(gtkhtml,
-+ AC_HELP_STRING([--enable-gtkhtml], [Use GTKHTML Browser]),,
-+ enable_gtkhtml=yes)
-+
-+if test "x$enable_gtkhtml" = "xyes" ; then
-+ PKG_CHECK_MODULES([GTKHTML_SHARP],
-+ [gtkhtml-sharp-3.14],
-+ [CSHARP_FLAGS="-d:GTKHTML_SHARP_3_14"],
-+ [
-+ PKG_CHECK_MODULES([GTKHTML_SHARP],
-+ [gtkhtml-sharp-2.0],
-+ [CSHARP_FLAGS=""],
-+ [])
-+ ]
-+ )
-+ AC_SUBST(GTKHTML_SHARP_LIBS)
-+ AC_SUBST(CSHARP_FLAGS)
- fi
--AC_SUBST(GTKHTML_SHARP_LIBS)
--AC_SUBST(CSHARP_FLAGS)
-+
- AM_CONDITIONAL(ENABLE_GTKHTML, test "x$enable_gtkhtml" = "xyes")
-
--PKG_CHECK_MODULES(GECKO_SHARP, gecko-sharp-2.0, enable_gecko=yes, enable_gecko=no)
--AC_SUBST(GECKO_SHARP_LIBS)
--AM_CONDITIONAL(ENABLE_GECKO, test "x$enable_gecko" = "xyes")
--
--if test "x$enable_gecko" = "xyes"; then
-- # get the mozilla home directory
-- MOZILLA_HOME="`$PKG_CONFIG --variable=libdir mozilla-gtkmozembed`"
-- AC_SUBST(MOZILLA_HOME)
-+AC_ARG_ENABLE(mozilla,
-+ AC_HELP_STRING([--enable-mozilla], [Use Mozilla browser]),,
-+ enable_mozilla=yes)
-+
-+if test "x$enable_mozilla" = "xyes" ; then
-+ PKG_CHECK_MODULES(GECKO_SHARP, gecko-sharp-2.0)
-+
-+ AC_SUBST(GECKO_SHARP_LIBS)
-+
-+ # get the mozilla home directory
-+ MOZILLA_HOME="`$PKG_CONFIG --variable=libdir mozilla-gtkmozembed`"
-+ AC_SUBST(MOZILLA_HOME)
-+fi
-+
-+AM_CONDITIONAL(ENABLE_GECKO, test "x$enable_mozilla" = "xyes")
-+
-+AC_ARG_ENABLE(webkit,
-+ AC_HELP_STRING([--enable-webkit], [Use Webkit browser]),,
-+ enable_mozilla=yes)
-+
-+if test "x$enable_webkit" = "xyes" ; then
-+ PKG_CHECK_MODULES(WEBKIT_SHARP, webkit-sharp-1.0)
-+ AC_SUBST(WEBKIT_SHARP_LIBS)
- fi
-
--PKG_CHECK_MODULES(WEBKIT_SHARP, webkit-sharp-1.0, enable_webkit=yes, enable_webkit=no)
--AC_SUBST(WEBKIT_SHARP_LIBS)
- AM_CONDITIONAL(ENABLE_WEBKIT, test "x$enable_webkit" = "xyes")
-
- # PKG_CHECK_MODULES(MONOWEBBROWSER, mono-webbrowser, enable_monowebbrowser=yes, enable_monowebbrowser=no)
- # AC_SUBST(MONOWEBBROWSER_LIBS)
-
-@@ -89,12 +112,12 @@
- fi
- fi
- MONOWEBBROWSER_LIBS=-r:Mono.WebBrowser
- AM_CONDITIONAL(ENABLE_MONOWEBBROWSER, test "x$enable_monowebbrowser" = "xyes")
-
--if test "x$enable_gtkhtml$enable_gecko$enable_monowebbrowser$enable_webkit" = "xnononono" ; then
-- AC_MSG_ERROR([no HTML display found. You need either gtkhtml, gecko, WebKit or Mono.WebBrowser])
-+if test "x$enable_gtkhtml$enable_mozilla$enable_monowebbrowser$enable_webkit" = "xnononono" ; then
-+ AC_MSG_ERROR([no HTML display found. You need either gtkhtml, mozilla, WebKit or Mono.WebBrowser])
- fi
-
- AC_ARG_ENABLE(debug,
- AC_HELP_STRING([--enable-debug],
- [Use 'DEBUG' Configuration [default=YES]]),
-@@ -232,11 +255,11 @@
-
- echo "---"
- echo "Configuration summary"
- echo ""
- echo " * Installation prefix = $prefix"
--echo " * Using Gecko = $enable_gecko"
-+echo " * Using Mozilla = $enable_mozilla"
- echo " * Using GtkHtml = $enable_gtkhtml"
- echo " * Using Mono.WebBrowser = $enable_monowebbrowser"
- echo " * Using WebKit = $enable_webkit"
- echo ""
- echo " NOTE: if any of the above say 'no' you may install the"
-diff -NrU5 mono-tools-2.0.orig/docbrowser/monodoc.in mono-tools-2.0/docbrowser/monodoc.in
---- mono-tools-2.0.orig/docbrowser/monodoc.in 2008-11-26 18:19:23.000000000 +0100
-+++ mono-tools-2.0/docbrowser/monodoc.in 2008-11-26 18:19:35.000000000 +0100
-@@ -84,12 +84,14 @@
- elif [ $(which xulrunner 2> /dev/null) ] > /dev/null ; then
- MOZILLA_FIVE_HOME=`getdirectory xulrunner`
- MOZILLA_HOME=$MOZILLA_FIVE_HOME
- elif [ $(which mozilla 2> /dev/null) ] && grep MOZILLA_FIVE_HOME= "$(which mozilla)" > /dev/null ; then
- MOZILLA_HOME=$(grep MOZILLA_FIVE_HOME= $(which mozilla) | cut -d '"' -f 2)
--elif [ $(which firefox 2> /dev/null) ] && grep MOZILLA_FIVE_HOME= "$(which firefox)" > /dev/null ; then
-- MOZILLA_HOME=$(grep MOZILLA_FIVE_HOME= $(which firefox) | cut -d '"' -f 2)
-+elif [ $(which firefox 2> /dev/null) ] && grep MOZILLA_LIBDIR= "$(which firefox)" > /dev/null ; then
-+ MOZILLA_HOME=$(grep MOZILLA_LIBDIR= $(which firefox) | cut -d '=' -f 2)
-+elif [ $(which seamonkey 2> /dev/null) ] && grep MOZILLA_LIBDIR= "$(which seamonkey)" > /dev/null ; then
-+ MOZILLA_HOME=$(grep MOZILLA_LIBDIR= $(which seamonkey) | cut -d '=' -f 2)
- fi
-
- if [ -n $LD_LIBRARY_PATH ]; then
- export LD_LIBRARY_PATH=$MOZILLA_HOME:$LD_LIBRARY_PATH
- else