diff options
author | Jurek Bartuszek <jurek@gentoo.org> | 2008-06-01 14:54:12 +0000 |
---|---|---|
committer | Jurek Bartuszek <jurek@gentoo.org> | 2008-06-01 14:54:12 +0000 |
commit | 50bb70ab386097bbf2f150d01fc2709d70d428a9 (patch) | |
tree | 16eca61c202df80c48918a1e141381ec659a35a2 | |
parent | dev-util/monodevelop: Version bump (bug #195925) (diff) | |
download | gentoo-2-50bb70ab386097bbf2f150d01fc2709d70d428a9.tar.gz gentoo-2-50bb70ab386097bbf2f150d01fc2709d70d428a9.tar.bz2 gentoo-2-50bb70ab386097bbf2f150d01fc2709d70d428a9.zip |
dev-util/monodevelop-boo: Version bump (bug #195925)
(Portage version: 2.1.4.4)
-rw-r--r-- | dev-util/monodevelop-boo/ChangeLog | 10 | ||||
-rw-r--r-- | dev-util/monodevelop-boo/monodevelop-boo-1.0.ebuild | 50 |
2 files changed, 58 insertions, 2 deletions
diff --git a/dev-util/monodevelop-boo/ChangeLog b/dev-util/monodevelop-boo/ChangeLog index c8c273edbe61..5d5e8e8af95d 100644 --- a/dev-util/monodevelop-boo/ChangeLog +++ b/dev-util/monodevelop-boo/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-util/monodevelop-boo -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/monodevelop-boo/ChangeLog,v 1.1 2007/12/31 04:46:36 jurek Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/monodevelop-boo/ChangeLog,v 1.2 2008/06/01 14:54:12 jurek Exp $ + +*monodevelop-boo-1.0 (01 Jun 2008) + + 01 Jun 2008; Jurek Bartuszek <jurek@gentoo.org> + +monodevelop-boo-1.0.ebuild: + Version bump (bug #195925) *monodevelop-boo-0.18.1 (31 Dec 2007) diff --git a/dev-util/monodevelop-boo/monodevelop-boo-1.0.ebuild b/dev-util/monodevelop-boo/monodevelop-boo-1.0.ebuild new file mode 100644 index 000000000000..ec8fef360555 --- /dev/null +++ b/dev-util/monodevelop-boo/monodevelop-boo-1.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/monodevelop-boo/monodevelop-boo-1.0.ebuild,v 1.1 2008/06/01 14:54:12 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 cxx; then + eerror "Please re-emerge dev-util/monodeveop with the cxx USE flag set" + die "monodevelop-boo needs the cxx 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" +} |