summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-util/monodoc')
-rw-r--r--dev-util/monodoc/ChangeLog7
-rw-r--r--dev-util/monodoc/monodoc-1.2.4.ebuild50
2 files changed, 5 insertions, 52 deletions
diff --git a/dev-util/monodoc/ChangeLog b/dev-util/monodoc/ChangeLog
index 2d004aa3b2f6..e1a7ecce62e6 100644
--- a/dev-util/monodoc/ChangeLog
+++ b/dev-util/monodoc/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/monodoc
-# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/monodoc/ChangeLog,v 1.77 2009/04/04 14:13:46 maekke Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/monodoc/ChangeLog,v 1.78 2010/10/07 20:30:30 pacho Exp $
+
+ 07 Oct 2010; Pacho Ramos <pacho@gentoo.org> -monodoc-1.2.4.ebuild:
+ Remove old.
04 Apr 2009; Markus Meier <maekke@gentoo.org> monodoc-2.0.ebuild:
amd64/x86 stable, bug #234305
diff --git a/dev-util/monodoc/monodoc-1.2.4.ebuild b/dev-util/monodoc/monodoc-1.2.4.ebuild
deleted file mode 100644
index 3f5368b007fc..000000000000
--- a/dev-util/monodoc/monodoc-1.2.4.ebuild
+++ /dev/null
@@ -1,50 +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/monodoc/monodoc-1.2.4.ebuild,v 1.8 2009/01/18 19:24:10 loki_val Exp $
-
-inherit mono multilib
-
-DESCRIPTION="Documentation for mono's .Net class library"
-HOMEPAGE="http://www.go-mono.com"
-SRC_URI="http://www.go-mono.com/sources/${PN}/${P}.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86 ~x86-fbsd"
-IUSE="X"
-
-RDEPEND=">=dev-lang/mono-1.1
- www-client/lynx
- !>=dev-lang/mono-2.2"
-DEPEND="${RDEPEND}
- app-arch/unzip"
-PDEPEND="X? ( >=dev-util/mono-tools-1.1.17 )"
-
-RESTRICT="test"
-
-# Parallel build unfriendly
-MAKEOPTS="${MAKEOPTS} -j1"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Install all our .dlls under $(libdir), not $(prefix)/lib
- if [ $(get_libdir) != "lib" ] ; then
- sed -i -e 's:$(prefix)/lib:$(libdir):' \
- "${S}"/engine/Makefile.am \
- || die "sed failed"
-
- sed -i -e 's:libdir=@prefix@/lib:libdir=@libdir@:' \
- -i -e 's:${prefix}/lib:${libdir}:' \
- "${S}"/monodoc.pc.in \
- || die "sed failed"
-
- aclocal || die "aclocal failed"
- automake || die "automake failed"
- fi
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
-}