diff options
author | Sam James <sam@gentoo.org> | 2022-07-20 01:43:53 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-07-20 01:43:53 +0000 |
commit | 27dff5105bcc57104ede88d9b0c740b7f17c64f3 (patch) | |
tree | 0b0170076986b2fdcceab59f24406b5f42d2b1f9 | |
parent | dev-dotnet/gnome-desktop-sharp: treeclean (broken) (diff) | |
download | dotnet-27dff5105bcc57104ede88d9b0c740b7f17c64f3.tar.gz dotnet-27dff5105bcc57104ede88d9b0c740b7f17c64f3.tar.bz2 dotnet-27dff5105bcc57104ede88d9b0c740b7f17c64f3.zip |
dev-util/mono-docbrowser: treeclean (broken)
Signed-off-by: Sam James <sam@gentoo.org>
5 files changed, 0 insertions, 265 deletions
diff --git a/dev-util/mono-docbrowser/files/mono-tools-2.8-html-renderer-fixes.patch b/dev-util/mono-docbrowser/files/mono-tools-2.8-html-renderer-fixes.patch deleted file mode 100644 index 1c079c1..0000000 --- a/dev-util/mono-docbrowser/files/mono-tools-2.8-html-renderer-fixes.patch +++ /dev/null @@ -1,111 +0,0 @@ ---- configure.in.old 2010-10-09 16:52:09.859675267 +0200 -+++ configure.in 2010-10-09 17:01:01.043434596 +0200 -@@ -62,50 +62,80 @@ - AC_SUBST(GNOME_SHARP_LIBS) - AM_CONDITIONAL(ENABLE_GNOME, test "x$enable_gnome" = "xyes") - --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 $CSHARP_FLAGS" --else -- PKG_CHECK_MODULES(GTKHTML_SHARP, gtkhtml-sharp-2.0, enable_gtkhtml=yes, enable_gtkhtml=no) -+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) -+ - AM_CONDITIONAL(ENABLE_GTKHTML, test "x$enable_gtkhtml" = "xyes") - --AC_SUBST(CSHARP_FLAGS) -+AC_ARG_ENABLE(gecko, -+ AC_HELP_STRING([--enable-gecko], [Use Gecko / Xulrunner-1.8 browser libs]),, -+ 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 - --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(webkit, -+ AC_HELP_STRING([--enable-webkit], [Use Webkit browser]),, -+ enable_webkit=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) - --AC_MSG_CHECKING([for Mono.WebBrowser]) --if test "x$GACUTIL" = "xno" --then -- AC_MSG_RESULT([no]) -- if test "x$enable_monowebbrowser" = "x" ; then enable_monowebbrowser=no ; fi --else -- if $GACUTIL -l Mono.WebBrowser | grep -q "Mono.WebBrowser" -+AC_ARG_ENABLE(monowebbrowser, -+ AC_HELP_STRING([--enable-monowebbrowser], [Use Mono.Webbrowser]),, -+ enable_monowebbrowser=yes) -+ -+if test "x$enable_monowebbrowser" = "xyes" ; then -+ AC_MSG_CHECKING([for Mono.WebBrowser]) -+ if test "x$GACUTIL" = "xno" - then -- AC_MSG_RESULT([yes]) -- enable_monowebbrowser=yes -- else - AC_MSG_RESULT([no]) -- enable_monowebbrowser=no -- fi -+ if test "x$enable_monowebbrowser" = "x" ; then enable_monowebbrowser=no ; fi -+ else -+ if $GACUTIL -l Mono.WebBrowser | grep -q "Mono.WebBrowser" -+ then -+ AC_MSG_RESULT([yes]) -+ enable_monowebbrowser=yes -+ MONOWEBBROWSER_LIBS=-r:Mono.WebBrowser -+ else -+ AC_MSG_RESULT([no]) -+ enable_monowebbrowser=no -+ fi -+ 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 diff --git a/dev-util/mono-docbrowser/files/mono-tools-docbrowser-basedir-fix.patch b/dev-util/mono-docbrowser/files/mono-tools-docbrowser-basedir-fix.patch deleted file mode 100644 index 0a7741c..0000000 --- a/dev-util/mono-docbrowser/files/mono-tools-docbrowser-basedir-fix.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/docbrowser/browser.cs b/docbrowser/browser.cs -index 6f70620..865f06a 100644 ---- a/docbrowser/browser.cs -+++ b/docbrowser/browser.cs -@@ -132,6 +132,9 @@ class Driver { - return r; - } - -+ if(basedir == null || basedir == "") -+ basedir = "/usr/lib/monodoc"; -+ - /*if (mergeConfigFile != null) { - ArrayList targetDirs = new ArrayList (); - diff --git a/dev-util/mono-docbrowser/metadata.xml b/dev-util/mono-docbrowser/metadata.xml deleted file mode 100644 index 94585c3..0000000 --- a/dev-util/mono-docbrowser/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>dotnet@gentoo.org</email> - <description>Gentoo Dotnet Project</description> - </maintainer> - <use> - <flag name='gtkhtml'> - HTK HTML - </flag> - </use> -</pkgmetadata> diff --git a/dev-util/mono-docbrowser/mono-docbrowser-2.20130821-r2.ebuild b/dev-util/mono-docbrowser/mono-docbrowser-2.20130821-r2.ebuild deleted file mode 100644 index c391084..0000000 --- a/dev-util/mono-docbrowser/mono-docbrowser-2.20130821-r2.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit dotnet autotools git-r3 - -DESCRIPTION="monodoc stripped from mono-tools" -HOMEPAGE="https://www.mono-project.com/" - -EGIT_REPO_URI="git://github.com/mono/mono-tools.git" -EGIT_COMMIT="3d28f26e1ca93ea7ead9ff2aae1897ec01c1ceb8" - -LICENSE="GPL-2 MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+webkit gtkhtml" - -# gtkhtml is currently deprecated in Gentoo tree -RDEPEND=">=dev-dotnet/gtk-sharp-2.12.21:2 - >=dev-dotnet/gnome-sharp-2.24.2-r1 - gtkhtml? ( >=dev-dotnet/gnome-desktop-sharp-2.26.0-r2:2 ) - webkit? ( >=dev-dotnet/webkit-sharp-0.2-r1 )" -DEPEND="${RDEPEND} - sys-devel/gettext - virtual/pkgconfig" - -PATCHES=( "${FILESDIR}/mono-tools-2.8-html-renderer-fixes.patch" - "${FILESDIR}/mono-tools-docbrowser-basedir-fix.patch" ) -MAKEOPTS="${MAKEOPTS} -j1" #nowarn - -pkg_setup() { - if ! use webkit && ! use gtkhtml - then - die "You must USE either webkit or gtkhtml" - fi -} - -src_prepare() { - base_src_prepare - - # Stop getting ACLOCAL_FLAGS command not found problem like bug #298813 - sed -i -e '/ACLOCAL_FLAGS/d' Makefile.am || die - - eautoreconf -} - -src_configure() { - econf --disable-dependency-tracking \ - --disable-gecko \ - $(use_enable gtkhtml) \ - $(use_enable webkit) \ - --disable-monowebbrowser || die -} - -src_compile() { - cd docbrowser - default -} - -src_install() { - cd docbrowser - default -} diff --git a/dev-util/mono-docbrowser/mono-docbrowser-9999.ebuild b/dev-util/mono-docbrowser/mono-docbrowser-9999.ebuild deleted file mode 100644 index f8388f6..0000000 --- a/dev-util/mono-docbrowser/mono-docbrowser-9999.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit dotnet autotools git-r3 - -DESCRIPTION="monodoc stripped from mono-tools" -HOMEPAGE="https://www.mono-project.com/" - -EGIT_REPO_URI="git://github.com/mono/mono-tools.git" - -LICENSE="GPL-2 MIT" -SLOT="0" -KEYWORDS="" -IUSE="+webkit gtkhtml" - -# gtkhtml is currently deprecated in Gentoo tree -RDEPEND=">=dev-dotnet/gtk-sharp-2.12.21:2 - >=dev-dotnet/gnome-sharp-2.24.2-r1 - gtkhtml? ( >=dev-dotnet/gnome-desktop-sharp-2.26.0-r2:2 ) - webkit? ( >=dev-dotnet/webkit-sharp-0.2-r1 )" -DEPEND="${RDEPEND} - sys-devel/gettext - virtual/pkgconfig" - -PATCHES=( "${FILESDIR}/mono-tools-2.8-html-renderer-fixes.patch" - "${FILESDIR}/mono-tools-docbrowser-basedir-fix.patch" ) -MAKEOPTS="${MAKEOPTS} -j1" #nowarn - -pkg_setup() { - if ! use webkit && ! use gtkhtml - then - die "You must USE either webkit or gtkhtml" - fi -} - -src_prepare() { - base_src_prepare - - # Stop getting ACLOCAL_FLAGS command not found problem like bug #298813 - sed -i -e '/ACLOCAL_FLAGS/d' Makefile.am || die - - eautoreconf -} - -src_configure() { - econf --disable-dependency-tracking \ - --disable-gecko \ - $(use_enable gtkhtml) \ - $(use_enable webkit) \ - --disable-monowebbrowser || die -} - -src_compile() { - cd docbrowser - default -} - -src_install() { - cd docbrowser - default -} |