blob: c235a9bd0a4256d2fa72c67e7d7757357264c28b (
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
|
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson xdg
DESCRIPTION="Video and audio player written using EFL"
HOMEPAGE="https://www.enlightenment.org/about-rage"
SRC_URI="https://download.enlightenment.org/rel/apps/rage/${P}.tar.xz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="|| ( dev-libs/efl[X,opengl] dev-libs/efl[wayland] )
>=dev-libs/efl-1.26.1[gstreamer]
media-plugins/gst-plugins-meta[ffmpeg]"
RDEPEND="${DEPEND}"
pkg_postinst() {
xdg_pkg_postinst
elog "Control your media file support with media-plugins/gst-plugins-meta[*]"
elog "and/or media-video/ffmpeg[*]"
}
|