blob: 645920e521ed1c8687fd59405184a829f5320a40 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/jscall-sharp/jscall-sharp-0.0.3_pre20070621.ebuild,v 1.5 2008/11/27 18:49:10 ssuominen Exp $
inherit mono eutils
DESCRIPTION="A simple JavaScript bridge for Gecko#"
HOMEPAGE="http://www.go-mono.com/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="|| ( =www-client/mozilla-firefox-2*
=www-client/seamonkey-1* )
>=dev-lang/mono-1.1.9
>=dev-dotnet/gtk-sharp-2.4
>=dev-dotnet/gecko-sharp-0.10"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
einfo "Running autogen..."
./autogen.sh || die "autogen failed"
}
src_install()
{
make GACUTIL_FLAGS="/root "${D}"/usr/$(get_libdir) \
/gacdir /usr/$(get_libdir) /package ${PN}-0.0.3" \
DESTDIR="${D}" install || die
dodoc ChangeLog README AUTHORS
}
|