# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-util/monodevelop-boo/monodevelop-boo-0.18.1.ebuild,v 1.1 2007/12/31 04:46:36 jurek Exp $ inherit autotools eutils mono multilib DESCRIPTION="Boo Extension for MonoDevelop" HOMEPAGE="http://www.monodevelop.com/" SRC_URI="http://www.go-mono.com/sources/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="debug" RDEPEND=">=dev-util/monodevelop-${PV} >=dev-lang/boo-0.7.9.2659 >=dev-dotnet/gtksourceview-sharp-0.11" DEPEND="${RDEPEND} >=dev-util/pkgconfig-0.19" MAKEOPTS="-j1 ${MAKEOPTS}" pkg_setup() { if ! built_with_use dev-util/monodevelop c++; then eerror "Please re-emerge dev-util/monodeveop with the c++ USE flag set" die "monodevelop-boo needs the c++ flag set" fi } src_compile() { MD_BOO_CONFIG="" if use debug; then MD_BOO_CONFIG="--config=DEBUG" else MD_BOO_CONFIG="--config=RELEASE" fi ./configure \ --prefix=/usr \ ${MD_BOO_CONFIG} \ || die "configure failed" emake || die "make failed" } src_install() { emake DESTDIR="${D}" install || die "install failed" }