blob: a37b54fc9d462700b688508b8c3f90aeca952f46 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/pnet/pnet-0.5.6.ebuild,v 1.1 2003/05/03 10:58:09 scandium Exp $
# filter -march= since it breaks compile in cvm.c
inherit flag-o-matic
filter-flags "-march=*"
DESCRIPTION="Portable .NET runtime, compiler, tools"
HOMEPAGE="http://www.dotgnu.org/"
SRC_URI="mirror://gnu/dotgnu-pnet/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=dev-util/treecc-0.2.4"
src_compile() {
econf || die
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS COPYING ChangeLog HACKING INSTALL NEWS README
dodoc doc/gtk-sharp.HOWTO doc/*html
}
|