# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="A VRML 1.0c parser library" HOMEPAGE="http://www.sourceforge.net/projects/vrml1parser/" SRC_URI="mirror://sourceforge/vrml1parser/${P}.tar.bz2" LICENSE="GPL2" SLOT="0" KEYWORDS="~x86" IUSE="examples" DEPEND=">=sys-devel/autoconf-2.61 >=sys-devel/automake-1.10 >=sys-devel/libtool-1.5.23 >=sys-devel/make-3.81 >=sys-devel/gcc-3.3.6" RDEPEND=" " src_compile(){ econf --prefix=${D}/usr \ $(use_enable examples) \ || die "configure failed" emake || die "emake failed" } src_install() { cd ${WORKDIR}/${P} emake install || die "emake install failed" }