# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 NEED_PYTHON=2.4 inherit distutils eutils DESCRIPTION="Universal vector graphics translator" HOMEPAGE="http://sk1project.org/" SRC_URI="http://sk1project.org/downloads/uniconvertor/v1.1.0/uniconvertor-1.1.0.tar.gz" LICENSE="LGPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" RDEPEND="dev-python/imaging" src_compile() { python setup.py build || die "setup.py build failed" } src_install() { python setup.py install --root=${D} || die "setup.py install failed" }