blob: b4f780e857cdcc579936f66703c752ec16b29955 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono-fuse/mono-fuse-0.4.0.ebuild,v 1.2 2006/10/22 11:34:17 jurek Exp $
inherit mono
DESCRIPTION="C# binding for the FUSE library"
HOMEPAGE="http://www.jprl.com/Projects/mono-fuse/"
SRC_URI="http://www.jprl.com/Projects/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=dev-lang/mono-1.1.13
>=dev-util/monodoc-1.1.13
sys-fs/fuse"
src_compile()
{
econf || die "configure failed"
emake -j1 || die "make failed"
}
src_install()
{
emake DESTDIR="${D}" install || die "install failed"
dodoc ChangeLog README COPYING
insinto /usr/share/doc/${PF}
doins -r example
}
pkg_postinst()
{
elog "Ensure that you have the fuse module loaded"
elog "before you start using mono-fuse"
}
|