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 75FD5138350 for ; Tue, 21 Jan 2020 19:11:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57B18E0845; Tue, 21 Jan 2020 19:11:53 +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 40069E0845 for ; Tue, 21 Jan 2020 19:11:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 1230E34E147 for ; Tue, 21 Jan 2020 19:11:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 099A037 for ; Tue, 21 Jan 2020 19:11:50 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1579633849.8b112e56d0bc13c6972f9db4e1fe626f4531ff17.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/baka-mplayer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/baka-mplayer/baka-mplayer-9999.ebuild X-VCS-Directories: media-video/baka-mplayer/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8b112e56d0bc13c6972f9db4e1fe626f4531ff17 X-VCS-Branch: master Date: Tue, 21 Jan 2020 19:11:50 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d96e830f-3dcf-4157-9114-964bca9f041d X-Archives-Hash: 2c349fd77ef9c12abd98b3bd6cdc4949 commit: 8b112e56d0bc13c6972f9db4e1fe626f4531ff17 Author: Christopher Steward gmail com> AuthorDate: Mon Dec 9 15:05:52 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Jan 21 19:10:49 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b112e56 media-video/baka-mplayer: New live ebuild Package has been updated with some bug fixes on git but has not had a release in a while. Signed-off-by: Christopher Steward gmail.com> Package-Manager: Portage-2.3.79, Repoman-2.3.16 Closes: https://github.com/gentoo/gentoo/pull/13929 Signed-off-by: Andreas Sturmlechner gentoo.org> media-video/baka-mplayer/baka-mplayer-9999.ebuild | 48 +++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/media-video/baka-mplayer/baka-mplayer-9999.ebuild b/media-video/baka-mplayer/baka-mplayer-9999.ebuild new file mode 100644 index 00000000000..73e27a96b7c --- /dev/null +++ b/media-video/baka-mplayer/baka-mplayer-9999.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit qmake-utils git-r3 + +DESCRIPTION="Cross-platform libmpv-based multimedia player with uncluttered design" +HOMEPAGE="http://bakamplayer.u8sand.net/" +EGIT_REPO_URI="https://github.com/u8sand/Baka-MPlayer.git" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="" +IUSE="" + +BDEPEND=" + dev-qt/linguist-tools:5 + virtual/pkgconfig" + +RDEPEND="dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtsvg:5 + dev-qt/qtwidgets:5 + dev-qt/qtx11extras:5 + media-video/mpv[libmpv] + x11-libs/libX11" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/baka-mplayer-${PV}" + +src_prepare() { + default + # no need to install license + sed -e '/^INSTALLS/s:license::' -i src/Baka-MPlayer.pro || die + # put manual in our docdir + sed -e '/^manual.path/s:'${PN}':'${PF}':' -i src/Baka-MPlayer.pro || die +} + +src_configure() { + eqmake5 \ + INSTROOT="${D}" \ + CONFIG+=install_translations \ + lrelease="$(qt5_get_bindir)"/lrelease \ + lupdate="$(qt5_get_bindir)"/lupdate \ + src/Baka-MPlayer.pro +}