blob: 3d7ab5665a2c7756a7bf6b373062b0dd29a49cc9 (
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
32
33
34
35
36
37
38
39
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ferite/ferite-0.99.4.ebuild,v 1.4 2002/08/02 04:44:53 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="ferite is a scripting engine and language written in c for complete portability."
SRC_URI="http://telia.dl.sourceforge.net/sourceforge/ferite/${P}.tar.gz"
HOMEPAGE="http://www.ferite.org/"
DEPEND="virtual/glibc
dev-libs/libpcre
dev-libs/libxml2"
RDEPEND="${DEPEND}"
SLOT="1"
LICENSE="as-is"
KEYWORDS="x86"
src_compile() {
./configure --host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die
emake || die
}
src_install() {
make prefix=${D}/usr \
infodir=${D}/usr/share/info \
mandir=${D}/usr/share/man \
install || die
dodoc AUTHORS ChangeLog COPYING README* INSTALL NEWS
dohtml -r docs
}
|