Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/ivtvplayer/
Date: Sat, 02 Jun 2018 09:34:37
Message-Id: 1527932069.2350682022667c35bc3ebcb566894f35439fa2bb.zlogene@gentoo
1 commit: 2350682022667c35bc3ebcb566894f35439fa2bb
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 2 09:33:39 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 2 09:34:29 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23506820
7
8 media-tv/ivtvplayer: EAPI bump
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.7
11
12 media-tv/ivtvplayer/ivtvplayer-0.1.3-r2.ebuild | 38 ++++++++++++++++++++++++++
13 1 file changed, 38 insertions(+)
14
15 diff --git a/media-tv/ivtvplayer/ivtvplayer-0.1.3-r2.ebuild b/media-tv/ivtvplayer/ivtvplayer-0.1.3-r2.ebuild
16 new file mode 100644
17 index 00000000000..f9d1e930878
18 --- /dev/null
19 +++ b/media-tv/ivtvplayer/ivtvplayer-0.1.3-r2.ebuild
20 @@ -0,0 +1,38 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +DESCRIPTION="Simple IVTV command line TV and radio player with support of LIRC"
27 +HOMEPAGE="https://sourceforge.net/projects/ivtvplayer/"
28 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
29 +
30 +SLOT="0"
31 +LICENSE="GPL-2"
32 +KEYWORDS="~amd64 ~x86"
33 +IUSE=""
34 +
35 +RDEPEND="media-tv/v4l-utils
36 + || ( media-video/mplayer[v4l]
37 + media-video/mplayer[dvb] )
38 + media-sound/alsa-utils
39 + dev-perl/XML-Simple
40 + dev-perl/Gtk2
41 + dev-perl/X-Osd
42 + >=dev-perl/Lirc-Client-1.50"
43 +DEPEND="${RDEPEND}"
44 +
45 +src_install() {
46 + dobin bin/itv
47 + dobin bin/iradio
48 + use gtk && dobin bin/ictl
49 + dodoc doc/README doc/CHANGES
50 + dodoc -r conf
51 +}
52 +
53 +pkg_postinst() {
54 + einfo ""
55 + einfo "Example of itv, iradio and its LIRC configuration file is located in"
56 + einfo "directory /usr/share/doc/${PF}/."
57 + einfo ""
58 +}