diff options
author | Saleem Abdulrasool <compnerd@gentoo.org> | 2006-10-16 18:17:40 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@gentoo.org> | 2006-10-16 18:17:40 +0000 |
commit | 11c2827d53bb5a912d7805b89392c94662182c73 (patch) | |
tree | b3a5d9f56a13ec49d4d010fcf9c41228e3bcfbd6 /dev-util/monodoc | |
parent | Adding the init-script for 2.2.0, thanks to Calchan for reporting it. (diff) | |
download | gentoo-2-11c2827d53bb5a912d7805b89392c94662182c73.tar.gz gentoo-2-11c2827d53bb5a912d7805b89392c94662182c73.tar.bz2 gentoo-2-11c2827d53bb5a912d7805b89392c94662182c73.zip |
Version bump from upstream
(Portage version: 2.1.2_pre3-r2)
Diffstat (limited to 'dev-util/monodoc')
-rw-r--r-- | dev-util/monodoc/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/monodoc/files/digest-monodoc-1.1.18 | 3 | ||||
-rw-r--r-- | dev-util/monodoc/monodoc-1.1.18.ebuild | 46 |
3 files changed, 55 insertions, 1 deletions
diff --git a/dev-util/monodoc/ChangeLog b/dev-util/monodoc/ChangeLog index 9d468460543b..40e4e0acdf62 100644 --- a/dev-util/monodoc/ChangeLog +++ b/dev-util/monodoc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/monodoc # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/monodoc/ChangeLog,v 1.49 2006/04/08 14:53:59 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/monodoc/ChangeLog,v 1.50 2006/10/16 18:17:40 compnerd Exp $ + +*monodoc-1.1.18 (16 Oct 2006) + + 16 Oct 2006; Saleem Abdulrasool <compnerd@gentoo.org> +monodoc-1.1.18.ebuild: + Version bump from upstream 08 Apr 2006; Tobias Scherbaum <dertobi123@gentoo.org> monodoc-1.1.13.ebuild: diff --git a/dev-util/monodoc/files/digest-monodoc-1.1.18 b/dev-util/monodoc/files/digest-monodoc-1.1.18 new file mode 100644 index 000000000000..b79dff0c46ca --- /dev/null +++ b/dev-util/monodoc/files/digest-monodoc-1.1.18 @@ -0,0 +1,3 @@ +MD5 71981a3ed2c1eadd9ec0493c4b9f1bf1 monodoc-1.1.18.zip 13205038 +RMD160 450b6e810cba7557d4044cedfb4ae26702aefc97 monodoc-1.1.18.zip 13205038 +SHA256 e6a3f489c8852a7b7748a7bfedc0a6910099bb4cb60c885d9810ee5f4d216806 monodoc-1.1.18.zip 13205038 diff --git a/dev-util/monodoc/monodoc-1.1.18.ebuild b/dev-util/monodoc/monodoc-1.1.18.ebuild new file mode 100644 index 000000000000..2c9db40d9ab2 --- /dev/null +++ b/dev-util/monodoc/monodoc-1.1.18.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/monodoc/monodoc-1.1.18.ebuild,v 1.1 2006/10/16 18:17:40 compnerd 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 ~x86" +IUSE="X" + +RDEPEND=">=dev-lang/mono-1.1" +DEPEND="${RDEPEND} + app-arch/unzip" +PDEPEND="X? ( >=dev-util/mono-tools-1.1.17 )" + +# 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 +} |