diff options
author | 2008-11-19 22:37:14 +0000 | |
---|---|---|
committer | 2008-11-19 22:37:14 +0000 | |
commit | 61214f97f93f1a47cd77688e7add7fe5a7e109e5 (patch) | |
tree | e140e3a9cfec2213d462378ce3c9cb6b91318baa /dev-util/monodoc | |
parent | Bump for mono-2, remove crufty slag. (diff) | |
download | gentoo-2-61214f97f93f1a47cd77688e7add7fe5a7e109e5.tar.gz gentoo-2-61214f97f93f1a47cd77688e7add7fe5a7e109e5.tar.bz2 gentoo-2-61214f97f93f1a47cd77688e7add7fe5a7e109e5.zip |
Bump for mono-2, remove crufty slag.
(Portage version: 2.2_rc14/cvs/Linux 2.6.28-rc4 x86_64)
Diffstat (limited to 'dev-util/monodoc')
-rw-r--r-- | dev-util/monodoc/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/monodoc/monodoc-2.0.ebuild | 49 |
2 files changed, 55 insertions, 1 deletions
diff --git a/dev-util/monodoc/ChangeLog b/dev-util/monodoc/ChangeLog index 7a91ba8de39d..167ce825656d 100644 --- a/dev-util/monodoc/ChangeLog +++ b/dev-util/monodoc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/monodoc # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/monodoc/ChangeLog,v 1.73 2008/10/04 18:08:17 mabi Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/monodoc/ChangeLog,v 1.74 2008/11/19 22:37:14 loki_val Exp $ + +*monodoc-2.0 (19 Nov 2008) + + 19 Nov 2008; Peter Alfredsen <loki_val@gentoo.org> +monodoc-2.0.ebuild: + Bump for mono-2, remove crufty slag. 04 Oct 2008; Matti Bickel <mabi@gentoo.org> monodoc-1.2.4.ebuild, monodoc-1.9.ebuild: diff --git a/dev-util/monodoc/monodoc-2.0.ebuild b/dev-util/monodoc/monodoc-2.0.ebuild new file mode 100644 index 000000000000..ae80612b0226 --- /dev/null +++ b/dev-util/monodoc/monodoc-2.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/monodoc/monodoc-2.0.ebuild,v 1.1 2008/11/19 22:37:14 loki_val Exp $ + +inherit autotools mono multilib + +DESCRIPTION="Documentation for mono's .Net class library" +HOMEPAGE="http://www.go-mono.com" +SRC_URI="http://ftp.novell.com/pub/mono/sources/${PN}/${P}.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" +IUSE="X" + +RDEPEND=">=dev-lang/mono-2.0 + www-client/lynx" +DEPEND="${RDEPEND} + app-arch/unzip" +PDEPEND="X? ( >=dev-util/mono-tools-2 )" + +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" + + eautoreconf + fi + +} + +src_install() { + emake DESTDIR="${D}" install || die +} |