# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="2" inherit git eutils DESCRIPTION="VoriaETL is a multiplatform class and template library designed to complement and supplement the C++ STL." # currently : # https://sourceforge.net/projects/synfig/ # http://www.deepdarc.com/2005/11/01/synfig-developer-preview/ HOMEPAGE="http://www.synfig.com/" EGIT_REPO_URI="git://synfig.git.sourceforge.net/gitroot/synfig/synfig" SRC_URI="" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="" DEPEND="" PROVIDE="virtual/ETL" src_unpack() { git_src_unpack } src_compile() { cd ETL autoreconf -if econf || die "Configure failed" } src_install() { cd ETL emake DESTDIR="${D}" install || die "Install failed" }