blob: bece2337fbede568746c1ef6a899d7246879db23 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/srf/srf-1.0.ebuild,v 1.2 2005/11/05 20:29:43 grobian Exp $
DESCRIPTION="The Simple Recursive Functions programming language"
HOMEPAGE="http://www.users.qwest.net/~eballen1/srf.html"
SRC_URI="http://www.users.qwest.net/~eballen1/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc-macos ~x86"
IUSE=""
DEPEND="sys-devel/flex
|| ( sys-devel/bison dev-util/yacc dev-util/byacc )"
RDEPEND=""
src_install() {
dobin srf rfunc/rfunc
doman srf.1
dodoc srf.html README
docinto examples
dodoc examples/*
}
|