summaryrefslogtreecommitdiff
blob: ae211e91e554ae2b6fded3b1e76993ad6e220f31 (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
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-misc/cfengine/cfengine-1.6.3.ebuild,v 1.6 2002/07/11 06:30:48 drobbins Exp $

A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="An agent/software robot and a high level policy language for 
building expert systems to administrate and configure large computer 
networks" 

SRC_URI="ftp://ftp.iu.hio.no/pub/cfengine/${A}"
HOMEPAGE="http://www.iu.hio.no/cfengine/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"

DEPEND=">=sys-libs/glibc-2.1.3
	>=app-text/tetex-1.0.7-r2"

src_compile() {

    cd ${S}
    try ./configure 

    try make

}

src_install () {

    cd ${S}
    try make DESTDIR=${D} install
    try make DESTDIR=${D}/doc install
    dodoc COPYING ChangeLog README 
}