blob: 9475392e001356e953114a1f545162e8f2f93e3f (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/arista/arista-0.9.5.ebuild,v 1.2 2011/02/01 05:48:04 ford_prefect Exp $
EAPI=2
inherit distutils
DESCRIPTION="An easy to use multimedia transcoder for the GNOME Desktop"
HOMEPAGE="http://programmer-art.org/projects/arista-transcoder"
SRC_URI="http://programmer-art.org/media/releases/arista-transcoder/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
# Making these USE-defaults since encoding for portable devices is a very
# common use case for Arista. xvid is being added since it's required for
# DVD ripping. No gst-plugins-x264 available at this time.
IUSE="+faac kde nautilus +x264 +xvid"
DEPEND="dev-python/setuptools"
RDEPEND=">=x11-libs/gtk+-2.16
|| ( >=dev-lang/python-2.6[xml]
( dev-lang/python:2.5[xml] dev-python/simplejson )
( dev-lang/python:2.4[xml] dev-python/simplejson ) )
>=dev-python/pygtk-2.16
dev-python/pygobject
dev-python/pycairo
dev-python/gconf-python
dev-python/dbus-python
dev-python/python-gudev
>=media-libs/gstreamer-0.10.22
dev-python/gst-python
media-libs/gst-plugins-base:0.10
media-libs/gst-plugins-good:0.10
media-libs/gst-plugins-bad
media-plugins/gst-plugins-meta:0.10
media-plugins/gst-plugins-ffmpeg:0.10
nautilus? ( dev-python/nautilus-python )
kde? ( dev-python/librsvg-python )
faac? ( media-plugins/gst-plugins-faac:0.10 )
x264? ( media-plugins/gst-plugins-x264:0.10 )
xvid? ( media-plugins/gst-plugins-xvid:0.10 )"
pkg_postinst() {
einfo "If you find that a format you want is not supported in Arista,"
einfo "please make sure that you have the corresponding USE-flag enabled"
einfo "media-plugins/gst-plugins-meta"
}
|