blob: 6c9b58152a19ef0b4b2c6502946ae5a70f6eb6d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/heap-buddy/heap-buddy-0.1.ebuild,v 1.1 2005/12/22 09:23:23 latexer Exp $
DESCRIPTION="Heap profile for use with the mono .NET runtime"
HOMEPAGE="http://www.mono-project.com/"
SRC_URI="http://www.go-mono.com/sources/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND=">=dev-lang/mono-1.1.10
>=dev-libs/glib-2.0"
DEPEND="${RDEPEND}"
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS NEWS README
}
|