blob: 5c223b31180734766f4e65164692d49de37ea085 (
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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ferite/ferite-0.99.4.ebuild,v 1.10 2003/01/24 22:33:29 vapier Exp $
DESCRIPTION="scripting engine and language written in c for complete portability"
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"
src_compile() {
econf || die
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS ChangeLog README*
dohtml -r docs
}
|