# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="Convert CDG files to video" HOMEPAGE="http://bat-kolio.net/" SRC_URI="http://bat-kolio.net/cdg2video/files/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="x86" IUSE="" DEPEND="media-video/ffmpeg" RDEPEND="${DEPEND} >=dev-util/cmake-2.4.2" src_compile() { cmake -D CMAKE_INSTALL_PREFIX:PATH=/usr . || die "cmake failed" emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" }