From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C7534138335 for ; Sat, 2 Jun 2018 09:34:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8B4ECE082D; Sat, 2 Jun 2018 09:34:36 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5C5AFE082D for ; Sat, 2 Jun 2018 09:34:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D034335C30 for ; Sat, 2 Jun 2018 09:34:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 076232AA for ; Sat, 2 Jun 2018 09:34:33 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1527932069.2350682022667c35bc3ebcb566894f35439fa2bb.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/ivtvplayer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-tv/ivtvplayer/ivtvplayer-0.1.3-r2.ebuild X-VCS-Directories: media-tv/ivtvplayer/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 2350682022667c35bc3ebcb566894f35439fa2bb X-VCS-Branch: master Date: Sat, 2 Jun 2018 09:34:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b3d1cfdf-5210-4836-bf17-7c9d823a232c X-Archives-Hash: db0f09b39405e06d7646677a9894bb76 commit: 2350682022667c35bc3ebcb566894f35439fa2bb Author: Mikle Kolyada gentoo org> AuthorDate: Sat Jun 2 09:33:39 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sat Jun 2 09:34:29 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23506820 media-tv/ivtvplayer: EAPI bump Package-Manager: Portage-2.3.40, Repoman-2.3.7 media-tv/ivtvplayer/ivtvplayer-0.1.3-r2.ebuild | 38 ++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/media-tv/ivtvplayer/ivtvplayer-0.1.3-r2.ebuild b/media-tv/ivtvplayer/ivtvplayer-0.1.3-r2.ebuild new file mode 100644 index 00000000000..f9d1e930878 --- /dev/null +++ b/media-tv/ivtvplayer/ivtvplayer-0.1.3-r2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Simple IVTV command line TV and radio player with support of LIRC" +HOMEPAGE="https://sourceforge.net/projects/ivtvplayer/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="media-tv/v4l-utils + || ( media-video/mplayer[v4l] + media-video/mplayer[dvb] ) + media-sound/alsa-utils + dev-perl/XML-Simple + dev-perl/Gtk2 + dev-perl/X-Osd + >=dev-perl/Lirc-Client-1.50" +DEPEND="${RDEPEND}" + +src_install() { + dobin bin/itv + dobin bin/iradio + use gtk && dobin bin/ictl + dodoc doc/README doc/CHANGES + dodoc -r conf +} + +pkg_postinst() { + einfo "" + einfo "Example of itv, iradio and its LIRC configuration file is located in" + einfo "directory /usr/share/doc/${PF}/." + einfo "" +}