summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2010-10-07 20:31:59 +0000
committerPacho Ramos <pacho@gentoo.org>2010-10-07 20:31:59 +0000
commit38e8443200f1a4c613b6831fb345138dd8cc0bb3 (patch)
tree082065f23ff4ff85490412898339ea910cb109a3 /dev-util/mono-tools
parentppc64 stable wrt #324077 (diff)
downloadhistorical-38e8443200f1a4c613b6831fb345138dd8cc0bb3.tar.gz
historical-38e8443200f1a4c613b6831fb345138dd8cc0bb3.tar.bz2
historical-38e8443200f1a4c613b6831fb345138dd8cc0bb3.zip
Remove old.
Package-Manager: portage-2.1.8.3/cvs/Linux x86_64
Diffstat (limited to 'dev-util/mono-tools')
-rw-r--r--dev-util/mono-tools/ChangeLog13
-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
-rw-r--r--dev-util/mono-tools/mono-tools-1.2.1.ebuild59
-rw-r--r--dev-util/mono-tools/mono-tools-1.2.4.ebuild62
-rw-r--r--dev-util/mono-tools/mono-tools-1.2.6.ebuild55
-rw-r--r--dev-util/mono-tools/mono-tools-2.0.9999.ebuild53
-rw-r--r--dev-util/mono-tools/mono-tools-2.0.ebuild48
-rw-r--r--dev-util/mono-tools/mono-tools-2.4.2-r1.ebuild59
-rw-r--r--dev-util/mono-tools/mono-tools-2.4.9999.ebuild59
13 files changed, 12 insertions, 755 deletions
diff --git a/dev-util/mono-tools/ChangeLog b/dev-util/mono-tools/ChangeLog
index b3730bb05ea8..cc52335b44e9 100644
--- a/dev-util/mono-tools/ChangeLog
+++ b/dev-util/mono-tools/ChangeLog
@@ -1,6 +1,17 @@
# ChangeLog for dev-util/mono-tools
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-tools/ChangeLog,v 1.73 2010/09/12 04:26:39 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-tools/ChangeLog,v 1.74 2010/10/07 20:21:42 pacho Exp $
+
+ 07 Oct 2010; Pacho Ramos <pacho@gentoo.org>
+ -files/mono-tools-1.1.17-html-renderer-fixes.diff,
+ -mono-tools-1.2.1.ebuild, -mono-tools-1.2.4.ebuild,
+ -files/mono-tools-1.2.4-install.patch, -mono-tools-1.2.6.ebuild,
+ -files/mono-tools-1.2.6-html-renderer-fixes.patch,
+ -files/mono-tools-1.9-html-renderer-fixes.patch, -mono-tools-2.0.ebuild,
+ -mono-tools-2.0.9999.ebuild,
+ -files/mono-tools-2.0-html-renderer-fixes.patch,
+ -mono-tools-2.4.2-r1.ebuild, -mono-tools-2.4.9999.ebuild:
+ Remove old.
12 Sep 2010; Joseph Jezak <josejx@gentoo.org> mono-tools-2.6.2.ebuild:
Marked ppc for bug #327279.
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
diff --git a/dev-util/mono-tools/mono-tools-1.2.1.ebuild b/dev-util/mono-tools/mono-tools-1.2.1.ebuild
deleted file mode 100644
index 901797e22c03..000000000000
--- a/dev-util/mono-tools/mono-tools-1.2.1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-tools/mono-tools-1.2.1.ebuild,v 1.8 2010/03/27 08:54:48 ssuominen Exp $
-
-inherit eutils mono multilib autotools
-
-DESCRIPTION="Set of useful Mono related utilities"
-HOMEPAGE="http://www.mono-project.com/"
-SRC_URI="http://www.go-mono.com/sources/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-RDEPEND="dev-lang/mono
- >=virtual/monodoc-${PV}
- =dev-dotnet/gtk-sharp-2*
- =dev-dotnet/glade-sharp-2*
- =dev-dotnet/gconf-sharp-2*
- =dev-dotnet/gtkhtml-sharp-2*"
-DEPEND="${RDEPEND}
- sys-devel/gettext"
-
-# Parallel build unfriendly
-MAKEOPTS="${MAKEOPTS} -j1"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Make the browser optional
- epatch "${FILESDIR}/${PN}-1.1.17-html-renderer-fixes.diff"
-
- # Install all our .dlls under $(libdir), not $(prefix)/lib
- if [ $(get_libdir) != "lib" ] ; then
- sed -i -e 's:$(prefix)/lib:$(libdir):' \
- "${S}"/{asn1view/gtk,docbrowser,gnunit/src}/Makefile.am \
- || die "sed failed"
-
- sed -i -e 's:$prefix/lib:@libdir@:' \
- "${S}"/docbrowser/monodoc.in \
- || die "sed failed"
- fi
-
- eautoreconf
-}
-
-src_compile() {
- local myconf="--enable-gtkhtml --disable-mozilla"
-
- econf ${myconf} || die "configure failed"
- emake || die "make failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- dodoc ChangeLog README
-}
diff --git a/dev-util/mono-tools/mono-tools-1.2.4.ebuild b/dev-util/mono-tools/mono-tools-1.2.4.ebuild
deleted file mode 100644
index 83d1dd9715cf..000000000000
--- a/dev-util/mono-tools/mono-tools-1.2.4.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-tools/mono-tools-1.2.4.ebuild,v 1.11 2010/07/11 17:54:29 armin76 Exp $
-
-inherit eutils mono multilib autotools
-
-DESCRIPTION="Set of useful Mono related utilities"
-HOMEPAGE="http://www.mono-project.com/"
-SRC_URI="http://www.go-mono.com/sources/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ppc x86 ~x86-fbsd"
-IUSE=""
-
-RDEPEND="dev-lang/mono
- >=virtual/monodoc-${PV}
- =dev-dotnet/gtk-sharp-2*
- =dev-dotnet/glade-sharp-2*
- =dev-dotnet/gconf-sharp-2*
- =dev-dotnet/gtkhtml-sharp-2*"
-DEPEND="${RDEPEND}
- sys-devel/gettext"
-
-# Parallel build unfriendly
-MAKEOPTS="${MAKEOPTS} -j1"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Make the browser optional
- epatch "${FILESDIR}/${PN}-1.1.17-html-renderer-fixes.diff"
-
- # Fix installing on FreeBSD
- epatch "${FILESDIR}/${P}-install.patch"
-
- # Install all our .dlls under $(libdir), not $(prefix)/lib
- if [ $(get_libdir) != "lib" ] ; then
- sed -i -e 's:$(prefix)/lib:$(libdir):' \
- "${S}"/{asn1view/gtk,docbrowser,gnunit/src}/Makefile.am \
- || die "sed failed"
-
- sed -i -e 's:$prefix/lib:@libdir@:' \
- "${S}"/docbrowser/monodoc.in \
- || die "sed failed"
- fi
-
- eautoreconf
-}
-
-src_compile() {
- local myconf="--enable-gtkhtml --disable-mozilla"
-
- econf ${myconf} || die "configure failed"
- emake || die "make failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- dodoc ChangeLog README
-}
diff --git a/dev-util/mono-tools/mono-tools-1.2.6.ebuild b/dev-util/mono-tools/mono-tools-1.2.6.ebuild
deleted file mode 100644
index 01b0837c4097..000000000000
--- a/dev-util/mono-tools/mono-tools-1.2.6.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-tools/mono-tools-1.2.6.ebuild,v 1.4 2010/07/11 17:54:29 armin76 Exp $
-
-inherit mono multilib eutils
-
-DESCRIPTION="Set of useful Mono related utilities"
-HOMEPAGE="http://www.mono-project.com/"
-SRC_URI="http://www.go-mono.com/sources/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
-IUSE=""
-
-RDEPEND=">=dev-lang/mono-1.0
- >=virtual/monodoc-${PV}
- =dev-dotnet/gtk-sharp-2*
- =dev-dotnet/glade-sharp-2*
- =dev-dotnet/gconf-sharp-2*
- =dev-dotnet/gtkhtml-sharp-2*"
-DEPEND="${RDEPEND}
- sys-devel/gettext
- >=dev-util/pkgconfig-0.19"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Make the browser optional
- epatch "${FILESDIR}/${PN}-1.2.6-html-renderer-fixes.patch"
-
- # Install all our .dlls under $(libdir), not $(prefix)/lib
- find "${S}" -name 'Makefile*' -exec \
- sed -i -e "s:\$(prefix)/lib:\$(prefix)/$(get_libdir):g" \
- -e "s:\${prefix}/lib:\${prefix}/$(get_libdir):g" \
- {} \; \
- || die "libdir fixup failed"
-
- sed -i -e 's:$prefix/lib:@libdir@:' \
- "${S}"/docbrowser/monodoc.in \
- || die "sed failed"
-}
-
-src_compile() {
- local myconf="--enable-gtkhtml --disable-mozilla"
-
- econf ${myconf} || die "configure failed"
- emake || die "make failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- dodoc ChangeLog README
-}
diff --git a/dev-util/mono-tools/mono-tools-2.0.9999.ebuild b/dev-util/mono-tools/mono-tools-2.0.9999.ebuild
deleted file mode 100644
index 9d82b6ad4efe..000000000000
--- a/dev-util/mono-tools/mono-tools-2.0.9999.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-tools/mono-tools-2.0.9999.ebuild,v 1.3 2009/06/09 21:19:35 loki_val Exp $
-
-EAPI=2
-
-inherit go-mono mono autotools
-
-DESCRIPTION="Set of useful Mono related utilities"
-HOMEPAGE="http://www.mono-project.com/"
-
-LICENSE="GPL-2 MIT"
-SLOT="0"
-KEYWORDS=""
-IUSE="webkit xulrunner"
-
-RDEPEND="=virtual/monodoc-${GO_MONO_REL_PV}*
- >=dev-dotnet/gtk-sharp-2.12.6
- >=dev-dotnet/glade-sharp-2.12.6
- >=dev-dotnet/gconf-sharp-2
- >=dev-dotnet/gtkhtml-sharp-2
- webkit? ( dev-dotnet/webkit-sharp )
- xulrunner? (
- >=dev-dotnet/gecko-sharp-0.13
- =dev-dotnet/gluezilla-${PV}
- )"
-DEPEND="${RDEPEND}
- sys-devel/gettext
- >=dev-util/pkgconfig-0.19"
-
-PATCHES=( "${FILESDIR}/${PN}-2.0-html-renderer-fixes.patch" )
-
-#Fails parallel make.
-MAKEOPTS="${MAKEOPTS} -j1"
-
-src_prepare() {
- glib-gettextize --force --copy || die "glib-gettextize --force --copy failed"
- go-mono_src_prepare
-}
-
-src_configure() {
- econf --disable-dependency-tracking \
- --enable-gtkhtml \
- $(use_enable xulrunner mozilla) \
- $(use_enable webkit) \
- || die "configure failed"
-}
-
-src_install() {
- go-mono_src_install
- # Defunct .desktop file, see bug 266694
- find "${D}" -type f -name 'mprof-heap-viewer.desktop' -exec rm -f '{}' '+' || die "removal of mprof-heap-viewer.desktop failed"
-}
diff --git a/dev-util/mono-tools/mono-tools-2.0.ebuild b/dev-util/mono-tools/mono-tools-2.0.ebuild
deleted file mode 100644
index aa1cc53dd894..000000000000
--- a/dev-util/mono-tools/mono-tools-2.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-tools/mono-tools-2.0.ebuild,v 1.10 2010/07/11 17:54:29 armin76 Exp $
-
-EAPI=2
-
-inherit base mono multilib eutils autotools
-
-DESCRIPTION="Set of useful Mono related utilities"
-HOMEPAGE="http://www.mono-project.com/"
-SRC_URI="http://ftp.novell.com/pub/mono/sources/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~x86-fbsd"
-IUSE="webkit xulrunner"
-
-RDEPEND=">=dev-lang/mono-2.0
- >=virtual/monodoc-${PV}
- >=dev-dotnet/gtk-sharp-2.10
- >=dev-dotnet/glade-sharp-2.10
- >=dev-dotnet/gconf-sharp-2
- >=dev-dotnet/gtkhtml-sharp-2
- webkit? ( dev-dotnet/webkit-sharp )
- xulrunner? ( >=dev-dotnet/gecko-sharp-0.13 )"
-
-DEPEND="${RDEPEND}
- sys-devel/gettext
- >=dev-util/pkgconfig-0.19"
-
-PATCHES=( "${FILESDIR}/${P}-html-renderer-fixes.patch" )
-
-#Fails parallel make.
-MAKEOPTS="${MAKEOPTS} -j1"
-
-src_prepare() {
- base_src_prepare
- eautoreconf
-}
-
-src_configure() {
- econf --enable-gtkhtml $(use_enable xulrunner mozilla) $(use_enable webkit) || die "configure failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- dodoc ChangeLog README
-}
diff --git a/dev-util/mono-tools/mono-tools-2.4.2-r1.ebuild b/dev-util/mono-tools/mono-tools-2.4.2-r1.ebuild
deleted file mode 100644
index f69abfce6049..000000000000
--- a/dev-util/mono-tools/mono-tools-2.4.2-r1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-tools/mono-tools-2.4.2-r1.ebuild,v 1.3 2009/09/27 17:00:36 nixnut Exp $
-
-EAPI=2
-
-inherit go-mono mono autotools
-
-DESCRIPTION="Set of useful Mono related utilities"
-HOMEPAGE="http://www.mono-project.com/"
-
-LICENSE="GPL-2 MIT"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="webkit gtkhtml +xulrunner"
-
-RDEPEND="=virtual/monodoc-${GO_MONO_REL_PV}*
- >=dev-dotnet/gtk-sharp-2.12.6
- >=dev-dotnet/glade-sharp-2.12.6
- >=dev-dotnet/gconf-sharp-2
- gtkhtml? ( >=dev-dotnet/gtkhtml-sharp-2.24.0 )
- webkit? ( >=dev-dotnet/webkit-sharp-0.2-r1 )
- xulrunner? ( =dev-dotnet/gluezilla-${PV} )
- "
-DEPEND="${RDEPEND}
- sys-devel/gettext
- >=dev-util/pkgconfig-0.19"
-
-PATCHES=( "${FILESDIR}/${PN}-2.4-html-renderer-fixes.patch" )
-
-#Fails parallel make.
-MAKEOPTS="${MAKEOPTS} -j1"
-
-pkg_setup() {
- if ! use webkit && ! use gtkhtml && ! use xulrunner
- then
- die "You must USE either webkit, gtkhtml or xulrunner"
- fi
-}
-
-src_prepare() {
- go-mono_src_prepare
- eautoreconf
-}
-
-src_configure() {
- econf --disable-dependency-tracking \
- --disable-gecko \
- $(use_enable gtkhtml) \
- $(use_enable webkit) \
- $(use_enable xulrunner monowebbrowser) \
- || die "configure failed"
-}
-
-src_install() {
- go-mono_src_install
- # Defunct .desktop file, see bug 266694
- find "${D}" -type f -name 'mprof-heap-viewer.desktop' -exec rm -f '{}' '+' || die "removal of mprof-heap-viewer.desktop failed"
-}
diff --git a/dev-util/mono-tools/mono-tools-2.4.9999.ebuild b/dev-util/mono-tools/mono-tools-2.4.9999.ebuild
deleted file mode 100644
index 0324254e73c8..000000000000
--- a/dev-util/mono-tools/mono-tools-2.4.9999.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-tools/mono-tools-2.4.9999.ebuild,v 1.4 2009/09/02 14:05:04 loki_val Exp $
-
-EAPI=2
-
-inherit go-mono mono autotools
-
-DESCRIPTION="Set of useful Mono related utilities"
-HOMEPAGE="http://www.mono-project.com/"
-
-LICENSE="GPL-2 MIT"
-SLOT="0"
-KEYWORDS=""
-IUSE="webkit gtkhtml +xulrunner"
-
-RDEPEND="=virtual/monodoc-${GO_MONO_REL_PV}*
- >=dev-dotnet/gtk-sharp-2.12.6
- >=dev-dotnet/glade-sharp-2.12.6
- >=dev-dotnet/gconf-sharp-2
- gtkhtml? ( >=dev-dotnet/gtkhtml-sharp-2.24.0 )
- webkit? ( >=dev-dotnet/webkit-sharp-0.2-r1 )
- xulrunner? ( =dev-dotnet/gluezilla-${PV} )
- "
-DEPEND="${RDEPEND}
- sys-devel/gettext
- >=dev-util/pkgconfig-0.19"
-
-PATCHES=( "${FILESDIR}/${PN}-2.4-html-renderer-fixes.patch" )
-
-#Fails parallel make.
-MAKEOPTS="${MAKEOPTS} -j1"
-
-pkg_setup() {
- if ! use webkit && ! use gtkhtml && ! use xulrunner
- then
- die "You must USE either webkit, gtkhtml or xulrunner"
- fi
-}
-
-src_prepare() {
- glib-gettextize --force --copy || die "glib-gettextize --force --copy failed"
- go-mono_src_prepare
-}
-
-src_configure() {
- econf --disable-dependency-tracking \
- --disable-gecko \
- $(use_enable gtkhtml) \
- $(use_enable webkit) \
- $(use_enable xulrunner monowebbrowser) \
- || die "configure failed"
-}
-
-src_install() {
- go-mono_src_install
- # Defunct .desktop file, see bug 266694
- find "${D}" -type f -name 'mprof-heap-viewer.desktop' -exec rm -f '{}' '+' || die "removal of mprof-heap-viewer.desktop failed"
-}