# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: 

DESCRIPTION="Erlang programming language, runtime environment, and large collection of libraries"
HOMEPAGE="http://www.erlang.org/"
SRC_URI="http://www.erlang.org/download/otp_src_R8B-2.tar.gz"
S=${WORKDIR}/otp_src_R8B-2

LICENSE="EPL"
SLOT="0"
KEYWORDS="x86"

RDEPEND=">=sys-devel/perl-5.6.1
	X?	( >=x11-base/xfree-4.2.0-r12 )
	ssl?	( >=dev-libs/openssl-0.9.6d )"

DEPEND="${RDEPEND}"
	
src_unpack() {	
	unpack ${A}
	cd ${S}
}

src_compile() {
	cd ${S}
	./configure	\
		--prefix=/usr	\
		--enable-threads	\
		--host=${CHOST} || die	
	make || die
}

src_install() {
	make install || die
	
	dodoc AUTHORS EPLICENCE README
}