blob: bf636550c9218dc2e3f26e54b33d2b8345207c0a (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/treecc/treecc-0.2.6.ebuild,v 1.5 2003/10/18 18:47:42 scandium Exp $
DESCRIPTION="compiler-compiler tool for aspect-oriented programming"
HOMEPAGE="http://www.dotgnu.org/"
SRC_URI="mirror://gnu/dotgnu-pnet/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc"
IUSE=""
DEPEND="sys-devel/bison
sys-devel/flex"
src_compile() {
econf || die
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README
dodoc doc/*.txt
dohtml doc/*.html
}
|