diff options
author | Jurek Bartuszek <jurek@gentoo.org> | 2007-06-21 23:51:52 +0000 |
---|---|---|
committer | Jurek Bartuszek <jurek@gentoo.org> | 2007-06-21 23:51:52 +0000 |
commit | 903c997c391ff618f237c4030bac673d2b21ab3a (patch) | |
tree | 60cc9258189a6695089d94a931e69b46443923f6 /dev-util/monodoc/monodoc-1.2.4.ebuild | |
parent | (#167281) Bump to latest. The doxygen dep is mandatory. (diff) | |
download | historical-903c997c391ff618f237c4030bac673d2b21ab3a.tar.gz historical-903c997c391ff618f237c4030bac673d2b21ab3a.tar.bz2 historical-903c997c391ff618f237c4030bac673d2b21ab3a.zip |
dev-util/monodoc: version bump (1.2.4)
Package-Manager: portage-2.1.2.7
Diffstat (limited to 'dev-util/monodoc/monodoc-1.2.4.ebuild')
-rw-r--r-- | dev-util/monodoc/monodoc-1.2.4.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/dev-util/monodoc/monodoc-1.2.4.ebuild b/dev-util/monodoc/monodoc-1.2.4.ebuild new file mode 100644 index 000000000000..b46f56cbd409 --- /dev/null +++ b/dev-util/monodoc/monodoc-1.2.4.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2007 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.1 2007/06/21 23:51:52 jurek 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" +IUSE="X" + +RDEPEND=">=dev-lang/mono-1.1 + www-client/lynx" +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 +} |