# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit subversion DESCRIPTION="EOS Camera Movie Record - Controls a Canon EOS camera." HOMEPAGE="http://sourceforge.net/projects/eos-movrec" ESVN_REPO_URI="https://eos-movrec.svn.sourceforge.net/svnroot/eos-movrec/trunk" LICENSE="GPL-2" SLOT="0" KEYWORDS="" IUSE="" RDEPEND="media-libs/jpeg >=media-libs/libgphoto2-2.4.10" DEPEND="${RDEPEND}" MY_PN="${PN//-/_}" S="${WORKDIR}/${PN}-r${PV}" src_compile() { mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release .. || die "cmake failed" emake || die "emake failed" } src_install() { into /usr dobin "${S}"/build/${MY_PN} }