diff options
author | Matti Bickel <mabi@gentoo.org> | 2008-10-04 17:49:49 +0000 |
---|---|---|
committer | Matti Bickel <mabi@gentoo.org> | 2008-10-04 17:49:49 +0000 |
commit | d6e9fe95332eb781b1acb800db6452009666315d (patch) | |
tree | dba8acc6d5da42e75746270dee448cbada905936 /dev-util/monodoc | |
parent | Make tests run with Python 2.5 and FEATURES=userpriv, a patch by Lourdes Jone... (diff) | |
download | gentoo-2-d6e9fe95332eb781b1acb800db6452009666315d.tar.gz gentoo-2-d6e9fe95332eb781b1acb800db6452009666315d.tar.bz2 gentoo-2-d6e9fe95332eb781b1acb800db6452009666315d.zip |
fix bug #216450
(Portage version: 2.2_rc11/cvs/Linux 2.6.23-gentoo-r3-20080120 ppc)
Diffstat (limited to 'dev-util/monodoc')
-rw-r--r-- | dev-util/monodoc/ChangeLog | 5 | ||||
-rw-r--r-- | dev-util/monodoc/monodoc-1.9.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/dev-util/monodoc/ChangeLog b/dev-util/monodoc/ChangeLog index 0e3548904672..bfaeece0d34a 100644 --- a/dev-util/monodoc/ChangeLog +++ b/dev-util/monodoc/ChangeLog @@ -1,6 +1,9 @@ # 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.70 2008/05/31 12:47:31 jurek Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/monodoc/ChangeLog,v 1.71 2008/10/04 17:49:49 mabi Exp $ + + 04 Oct 2008; Matti Bickel <mabi@gentoo.org> monodoc-1.9.ebuild: + fix bug #216450 *monodoc-1.9 (31 May 2008) diff --git a/dev-util/monodoc/monodoc-1.9.ebuild b/dev-util/monodoc/monodoc-1.9.ebuild index 08506543c46b..4a20a9405e98 100644 --- a/dev-util/monodoc/monodoc-1.9.ebuild +++ b/dev-util/monodoc/monodoc-1.9.ebuild @@ -1,8 +1,8 @@ # 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-1.9.ebuild,v 1.1 2008/05/31 12:47:31 jurek Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/monodoc/monodoc-1.9.ebuild,v 1.2 2008/10/04 17:49:49 mabi Exp $ -inherit mono multilib +inherit autotools mono multilib DESCRIPTION="Documentation for mono's .Net class library" HOMEPAGE="http://www.go-mono.com" @@ -39,11 +39,11 @@ src_unpack() { ${S}/monodoc.pc.in \ || die "sed failed" - aclocal || die "aclocal failed" - automake || die "automake failed" + eautoreconf fi + } src_install() { - make DESTDIR="${D}" install || die + emake DESTDIR="${D}" install || die } |