diff options
author | Peter Johanson <latexer@gentoo.org> | 2005-05-13 01:52:46 +0000 |
---|---|---|
committer | Peter Johanson <latexer@gentoo.org> | 2005-05-13 01:52:46 +0000 |
commit | 0254558cdfe4c19713d4dc610049ecc4aff8fc1f (patch) | |
tree | 943f4b5d7e7ed7350d8c7f9bc257eb609faf4edd /dev-lang/boo/boo-0.5.3.1544.ebuild | |
parent | Add a FreeBSD compatibility patch by Diego Pettenò #92434. (diff) | |
download | historical-0254558cdfe4c19713d4dc610049ecc4aff8fc1f.tar.gz historical-0254558cdfe4c19713d4dc610049ecc4aff8fc1f.tar.bz2 historical-0254558cdfe4c19713d4dc610049ecc4aff8fc1f.zip |
Initial import. Ebuild by yours truly.
Package-Manager: portage-2.0.51.21-r1
Diffstat (limited to 'dev-lang/boo/boo-0.5.3.1544.ebuild')
-rw-r--r-- | dev-lang/boo/boo-0.5.3.1544.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-lang/boo/boo-0.5.3.1544.ebuild b/dev-lang/boo/boo-0.5.3.1544.ebuild new file mode 100644 index 000000000000..18b383c96ed8 --- /dev/null +++ b/dev-lang/boo/boo-0.5.3.1544.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/boo/boo-0.5.3.1544.ebuild,v 1.1 2005/05/13 01:52:46 latexer Exp $ + +inherit 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.tar.bz2" + +LICENSE="BSD" + +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND=">=dev-lang/mono-1.1.4 + dev-dotnet/nant + x11-misc/shared-mime-info + >=x11-libs/gtksourceview-1.0.1" + + +#S=${WORKDIR} + +src_compile() { + nant -D:install.prefix=/usr || die +} + +src_install() { + nant install -D:install.destdir=${D} -D:install.prefix=/usr || die +} + +pkg_postinst() { + fdo-mime_desktop_database_update +} |