summaryrefslogtreecommitdiff
blob: aed84e37306d781f563331a5f6d65c6f436e016e (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
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=2

MY_PN=libgoogle-data-mono
MY_P=${MY_PN}-${PV}

inherit mono

DESCRIPTION="This is a sample skeleton ebuild file"

HOMEPAGE="http://code.google.com/p/google-gdata/"

SRC_URI="http://google-gdata.googlecode.com/files/${MY_P}.tar.gz"

LICENSE="Apache-2.0"

SLOT="0"

KEYWORDS="~x86 ~amd64"

IUSE=""
DEPEND=">=dev-lang/mono-2.0"
RDEPEND="${DEPEND}"

S="${WORKDIR}/${MY_P}"

src_compile() {
	emake PREFIX="/usr" CSC="/usr/bin/gmcs"  || die "emake failed"
}

src_install() {
	emake PREFIX="/usr" DESTDIR="${D}" install || die "emake install failed"
	dohtml RELEASE_NOTES.HTML || die  "dodoc failed"
	mono_multilib_comply
}