blob: 86e3f8fc4b0d49c55200c7dcfd71623c84a6c8fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/boo/boo-0.7.6.2237-r1.ebuild,v 1.6 2007/10/12 08:44:43 remi 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/${PN}/distributions/${P}-src.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="doc examples"
DEPEND=">=dev-lang/mono-1.1.4
dev-dotnet/nant
x11-misc/shared-mime-info
=x11-libs/gtksourceview-1*"
src_compile() {
# We no longer need to provide boo.lang (bug #163926)
sed -i -e 's#^.*<copy file="extras/boo.lang".*$##' \
default.build || die "sed failed"
nant -t:mono-2.0 -D:install.prefix=/usr || die "build failed"
}
src_install() {
nant install \
-D:install.destdir=${D} -t:mono-2.0 -D:install.prefix=/usr ||
die "install failed"
use doc && dodoc docs/BooManifesto.sxw
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples
fi
}
pkg_postinst() {
fdo-mime_mime_database_update
}
pkg_postrm() {
fdo-mime_mime_database_update
}
|