# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=5 inherit 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 media-libs/libpng sys-libs/zlib" S="${WORKDIR}/${PN}.${PV}" src_prepare() { epatch "${FILESDIR}/${P}-libpng.patch" } src_compile() { cd src $(tc-getCXX) ${CXXFLAGS} ${LDFLAGS} -D_FILE_OFFSET_BITS=64 -o ccextractor *.cpp || die } src_install() { dodoc docs/*.TXT }