blob: 07459b578228a2027322da1d3ffb21b860756cfb (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ferite/ferite-0.99.6.ebuild,v 1.6 2004/06/24 22:48:38 agriffis Exp $
DESCRIPTION="A clean, lightweight, object oriented scripting language"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.ferite.org/"
DEPEND="virtual/glibc
dev-libs/libpcre
dev-libs/libxml2"
SLOT="1"
LICENSE="as-is"
KEYWORDS="x86 sparc ~ppc ~amd64"
src_compile() {
econf || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog README*
dohtml -r docs
}
|