# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="creates normal/height maps from high resolution meshes for games or 3d applications" HOMEPAGE="http://epsylon.rptd.dnsalias.net/denormgen.php" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86" IUSE="" RDEPEND=">=x11-libs/fox-1.2" DEPEND=">=x11-libs/fox-1.2" src_unpack(){ unpack ${A} cd ${S} libtoolize --copy --force || die "could not libtoolize" automake -a || die "could not automake" } src_compile(){ econf || die "could not configure" emake || die "could not make" } src_install(){ make DESTDIR=${D} install dodir /usr/lib/blender/scripts insinto /usr/lib/blender/scripts doins scripts/dragengine_dim_export.py dodoc AUTHORS COPYING ChangeLog README TODO }