diff options
author | Pacho Ramos <pacho@gentoo.org> | 2012-01-22 11:21:39 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2012-01-22 11:21:39 +0000 |
commit | 484339364184cbd1c73a658811e8237a46f672a0 (patch) | |
tree | 436c6fb2aed5a38933a5a87a5ab222cd96426cc9 /dev-lang/boo | |
parent | Drop old. (diff) | |
download | gentoo-2-484339364184cbd1c73a658811e8237a46f672a0.tar.gz gentoo-2-484339364184cbd1c73a658811e8237a46f672a0.tar.bz2 gentoo-2-484339364184cbd1c73a658811e8237a46f672a0.zip |
Drop old.
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang/boo')
-rw-r--r-- | dev-lang/boo/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/boo/boo-0.9.3.3457.ebuild | 76 |
2 files changed, 5 insertions, 78 deletions
diff --git a/dev-lang/boo/ChangeLog b/dev-lang/boo/ChangeLog index 73e4887e70fa..06ba2b78ae08 100644 --- a/dev-lang/boo/ChangeLog +++ b/dev-lang/boo/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/boo -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/boo/ChangeLog,v 1.41 2011/05/11 19:27:42 angelos Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/boo/ChangeLog,v 1.42 2012/01/22 11:21:39 pacho Exp $ + + 22 Jan 2012; Pacho Ramos <pacho@gentoo.org> -boo-0.9.3.3457.ebuild: + Drop old. 11 May 2011; Christoph Mende <angelos@gentoo.org> boo-0.9.4.9.ebuild: Stable on amd64 wrt bug #359651 diff --git a/dev-lang/boo/boo-0.9.3.3457.ebuild b/dev-lang/boo/boo-0.9.3.3457.ebuild deleted file mode 100644 index f4f1c1da91fc..000000000000 --- a/dev-lang/boo/boo-0.9.3.3457.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/boo/boo-0.9.3.3457.ebuild,v 1.4 2010/09/23 22:14:43 hwoarang Exp $ - -EAPI=2 - -inherit multilib mono fdo-mime eutils - -DESCRIPTION="A wrist friendly language for the CLI" -HOMEPAGE="http://boo.codehaus.org/" -SRC_URI="http://dist.codehaus.org/boo/distributions/${P}-src.zip" -LICENSE="BSD" - -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="" - -RDEPEND=">=dev-lang/mono-2.0 - x11-libs/gtksourceview:2.0" -DEPEND="${RDEPEND} - x11-misc/shared-mime-info - app-arch/unzip - >=dev-dotnet/nant-0.86_beta1" - -RESTRICT="test" - -pkg_setup() { - if /usr/bin/gacutil -l|grep Boo.Lang.Extensions &> /dev/null - then - eerror "$(best_version ${CATEGORY}/${PN}) has installed Boo.Lang.Extensions into the GAC." - eerror "This is a bug, that will cause compilation of ${CATEGORY}/${PF} to fail. It has" - eerror "been fixed in this version. For now, it requires that you uninstall" - eerror "${CATEGORY}/${PN} before updating." - eerror "Please run: emerge -C ${CATEGORY}/${PN} and try again." - die "Please run: emerge -C ${CATEGORY}/${PN} and try again." - fi - - # gacutil may generate a root-owned directory in ${T} which makes nant fail afterwards (bug #269907) - rm -rf "${T}/.wapi" -} - -src_prepare() { - sed -i -e 's: Boo.Microsoft.Build.Tasks, update-vs2005-env,::' default.build || die - sed -i -e 's@${libdir}/boo@${libdir}/mono/boo@g' \ - extras/boo.pc.in || die - epatch "${FILESDIR}/${PN}-0.9.1.3287-GACproblems.patch" - epatch "${FILESDIR}/${PN}-0.7.8.2559-gtksourceview2.patch" -} - -src_compile() { - nant -t:mono-2.0 \ - -D:install.prefix=/usr \ - -D:install.libdir=/usr/$(get_libdir) \ - set-release-configuration all|| die "Compilation failed" -} - -src_install() { - nant install -D:install.buildroot="${D}" \ - -D:install.prefix="${D}"/usr \ - -D:install.share="${D}"/usr/share \ - -D:install.libdir="${D}"/usr/lib \ - -D:install.bindir="${D}/usr/bin" \ - -D:fakeroot.sharedmime="${D}"/usr \ - -D:fakeroot.gsv="${D}"/usr \ - || die "install failed" - rm -rf "${D}"/usr/share/gtksourceview-1.0 || die - mono_multilib_comply -} - -pkg_postinst() { - fdo-mime_mime_database_update -} - -pkg_postrm() { - fdo-mime_mime_database_update -} |