# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header:$ DESCRIPTION="XML manipulation library for TCL" HOMEPAGE="http://www.tdom.org" SRC_URI="http://tdom.org/tDOM-0.7.8.tar.gz" LICENSE="MPL-1.1" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND=">=tcl-8.4.3" RDEPEND=">=tcl-8.4.3" S="${WORKDIR}/tDOM-0.7.8" src_unpack() { unpack tDOM-0.7.8.tar.gz } src_compile() { cd ${S}/unix ../configure --host=${CHOST} \ --prefix=/usr \ --enable-threads \ --disable-tdomalloc \ || die "failed to configure" emake || die "failed to compile" } src_install() { cd ${S}/unix emake DESTDIR=${D} install }