blob: abe806d16ec4d20f87c5f66db36e8303e0fc5460 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python3_4 )
inherit eutils python-r1 distutils-r1
DESCRIPTION="FF Multi Converter is a simple graphical application which enables you to convert audio, video, image and document files between all popular formats"
HOMEPAGE="https://sourceforge.net/projects/ffmulticonv/"
SRC_URI="mirror://sourceforge/project/ffmulticonv/${P}.tar.gz"
LICENSE="GPLv3"
SLOT="0"
KEYWORDS="amd64"
IUSE="+ffmpeg libav +imagemagick unoconv"
DEPEND="dev-lang/python:3.4
dev-python/PyQt5
ffmpeg? ( media-video/ffmpeg )
libav? ( media-video/libav )
imagemagick? ( media-gfx/imagemagick )
unoconv? ( app-office/unoconv )"
RDEPEND="${DEPEND}"
|