Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/bino/
Date: Wed, 28 Feb 2018 20:38:36
Message-Id: 1519850175.8477a5457c543f6100efc410b0d992796d16b446.pacho@gentoo
1 commit: 8477a5457c543f6100efc410b0d992796d16b446
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 28 20:26:07 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 28 20:36:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8477a545
7
8 media-video/bino: Version bump
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 media-video/bino/Manifest | 1 +
13 media-video/bino/bino-1.6.6.ebuild | 56 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 57 insertions(+)
15
16 diff --git a/media-video/bino/Manifest b/media-video/bino/Manifest
17 index 6b1669cd979..1260846d044 100644
18 --- a/media-video/bino/Manifest
19 +++ b/media-video/bino/Manifest
20 @@ -1 +1,2 @@
21 DIST bino-1.6.1.tar.xz 814212 BLAKE2B 7edd4b33a432e6476c54bcb0202549b18255cb68f90d07f164175650716f5ebcda37e82f2b73f42ff49f1d14f6ff0bb81ba95d5c354dfdfb6c4154b664040f3c SHA512 5c0951f17cf9db37a4bd759aacbd4f3ef1a865499c893ca9c4c3a3775193560234aff9a5b12bc6fc012b987d3bd73264c5a5dcead562a6719f6a1019650e19af
22 +DIST bino-1.6.6.tar.xz 822680 BLAKE2B c863e16a4f576bffb3abf3ab03d8e4cd4ab9db0b0cc73ef2c255b18f103294a9f7e2bf382b286bb7d1d3cb9278c06965772cfc6241a7f23d2f4edc0a47059d92 SHA512 43a17f390881fcc8b7721b21ff8524b89992cd7fb0cfc467769bdddd0ad0c0d2536d161475a7fce6d4d3e758e017a38f671648dfaa4a345dc02127b7b192c8c0
23
24 diff --git a/media-video/bino/bino-1.6.6.ebuild b/media-video/bino/bino-1.6.6.ebuild
25 new file mode 100644
26 index 00000000000..e73529bb07f
27 --- /dev/null
28 +++ b/media-video/bino/bino-1.6.6.ebuild
29 @@ -0,0 +1,56 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +inherit flag-o-matic
35 +
36 +DESCRIPTION="Stereoscopic and multi-display media player"
37 +HOMEPAGE="http://bino3d.org/"
38 +SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${P}.tar.xz"
39 +
40 +LICENSE="GPL-3"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE="debug doc libav lirc video_cards_nvidia"
44 +
45 +RDEPEND="
46 + >=media-libs/glew-1.6.0:0=
47 + >=media-libs/openal-1.15.1
48 + dev-qt/qtgui:5
49 + dev-qt/qtcore:5
50 + dev-qt/qtopengl:5
51 + >=media-libs/libass-0.9.9
52 + libav? ( >=media-video/libav-0.7:0= )
53 + !libav? ( >=media-video/ffmpeg-0.7:0= )
54 + lirc? ( app-misc/lirc )
55 + video_cards_nvidia? ( || ( x11-drivers/nvidia-drivers[tools,static-libs] media-video/nvidia-settings ) )
56 + virtual/libintl
57 +"
58 +DEPEND="${RDEPEND}
59 + sys-devel/gettext
60 + virtual/pkgconfig
61 +"
62 +
63 +src_configure() {
64 + econf \
65 + $(use_with video_cards_nvidia xnvctrl) \
66 + $(use_with lirc) \
67 + $(use_enable debug) \
68 + --without-equalizer \
69 + --with-qt-version=5 \
70 + --htmldir=/usr/share/doc/${PF}/html
71 +
72 + use video_cards_nvidia && append-cppflags "-I/usr/include/NVCtrl" \
73 + && append-ldflags "-L/usr/$(get_libdir)/opengl/nvidia/lib \
74 + -L/usr/$(get_libdir)" && append-libs "Xext"
75 + use lirc && append-cppflags "-I/usr/include/lirc" \
76 + && append-libs "lirc_client"
77 +
78 + # Fix a compilation error because of a multiple definitions in glew
79 + append-ldflags "-zmuldefs"
80 +}
81 +
82 +src_install() {
83 + default
84 + use doc || ( rm -rf "${D}"/usr/share/doc/${PF}/html && dohtml "${FILESDIR}/${PN}.html" )
85 +}