# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-video/ccextractor/ccextractor-0.69.ebuild,v 1.1 2014/04/25 18:28:18 beandog Exp $ EAPI=5 inherit eutils toolchain-funcs DESCRIPTION="Extract closed captioning subtitles from video to SRT" HOMEPAGE="http://ccextractor.sourceforge.net/" SRC_URI="mirror://sourceforge/ccextractor/${PN}.src.${PV}.zip" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="app-arch/unzip" S="${WORKDIR}/${PN}.${PV}" src_prepare() { src_unpack } src_compile() { cd linux emake } src_install() { dobin linux/ccextractor dodoc docs/*.TXT }