# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=3 inherit toolchain-funcs DESCRIPTION="Utility to uncompress Macromedia Flash files" HOMEPAGE="http://ffmpeg.org/" SRC_URI="http://ffmpeg.org/releases/ffmpeg-${PV}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="sys-libs/zlib" src_compile() { CC=$(tc-getCC) ${CC} ${CFLAGS} -Wall -lz ffmpeg-${PV}/tools/${PN}.c -o ${PN} || die } src_install() { dobin ${PN} || die }