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: Sat, 16 Feb 2019 09:45:59
Message-Id: 1550310345.05994abb4d4284858fc336d80f78d48cb3db27e9.pacho@gentoo
1 commit: 05994abb4d4284858fc336d80f78d48cb3db27e9
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 16 09:41:10 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 16 09:45:45 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05994abb
7
8 media-video/bino: Drop old
9
10 Package-Manager: Portage-2.3.58, Repoman-2.3.12
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 media-video/bino/Manifest | 1 -
14 media-video/bino/bino-1.6.6.ebuild | 60 --------------------------------------
15 2 files changed, 61 deletions(-)
16
17 diff --git a/media-video/bino/Manifest b/media-video/bino/Manifest
18 index 44a1084a061..8a9626ab08b 100644
19 --- a/media-video/bino/Manifest
20 +++ b/media-video/bino/Manifest
21 @@ -1,2 +1 @@
22 -DIST bino-1.6.6.tar.xz 822680 BLAKE2B c863e16a4f576bffb3abf3ab03d8e4cd4ab9db0b0cc73ef2c255b18f103294a9f7e2bf382b286bb7d1d3cb9278c06965772cfc6241a7f23d2f4edc0a47059d92 SHA512 43a17f390881fcc8b7721b21ff8524b89992cd7fb0cfc467769bdddd0ad0c0d2536d161475a7fce6d4d3e758e017a38f671648dfaa4a345dc02127b7b192c8c0
23 DIST bino-1.6.7.tar.xz 825068 BLAKE2B d9019a793838f33ea1315849aa994b20a1c6127995315dc03972fe6c64a742c73434c07ba06402a1e2bd5357781d18aaf3d19ab2d61788745b2aa99ad3f4c6f4 SHA512 ae8f72b200100664b9fd55963371ce64a2f39e240676494d69b422d662f2295560ba458eb04707b82f88d3c6b3fab98a1ecb40d74799300f96b8eb8be680c9b8
24
25 diff --git a/media-video/bino/bino-1.6.6.ebuild b/media-video/bino/bino-1.6.6.ebuild
26 deleted file mode 100644
27 index 8d2731215ba..00000000000
28 --- a/media-video/bino/bino-1.6.6.ebuild
29 +++ /dev/null
30 @@ -1,60 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -inherit flag-o-matic
36 -
37 -DESCRIPTION="Stereoscopic and multi-display media player"
38 -HOMEPAGE="http://bino3d.org/"
39 -SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${P}.tar.xz"
40 -
41 -LICENSE="GPL-3"
42 -SLOT="0"
43 -KEYWORDS="amd64 x86"
44 -IUSE="debug doc libav lirc video_cards_nvidia"
45 -
46 -RDEPEND="
47 - >=media-libs/glew-1.6.0:0=
48 - >=media-libs/openal-1.15.1
49 - dev-qt/qtgui:5
50 - dev-qt/qtcore:5
51 - dev-qt/qtopengl:5
52 - >=media-libs/libass-0.9.9
53 - libav? ( >=media-video/libav-0.7:0= )
54 - !libav? ( >=media-video/ffmpeg-0.7:0= )
55 - lirc? ( app-misc/lirc )
56 - video_cards_nvidia? ( x11-drivers/nvidia-drivers[tools,static-libs] )
57 - virtual/libintl
58 -"
59 -DEPEND="${RDEPEND}
60 - sys-devel/gettext
61 - virtual/pkgconfig
62 -"
63 -
64 -src_configure() {
65 - # Qt5 now requires C++11, #649282
66 - append-cxxflags -std=c++11
67 -
68 - use video_cards_nvidia && append-cppflags "-I/usr/include/NVCtrl" \
69 - && append-ldflags "-L/usr/$(get_libdir)/opengl/nvidia/lib \
70 - -L/usr/$(get_libdir)" && append-libs "Xext"
71 - use lirc && append-cppflags "-I/usr/include/lirc" \
72 - && append-libs "lirc_client"
73 -
74 - # Fix a compilation error because of a multiple definitions in glew
75 - append-ldflags "-zmuldefs"
76 -
77 - econf \
78 - $(use_with video_cards_nvidia xnvctrl) \
79 - $(use_with lirc) \
80 - $(use_enable debug) \
81 - --without-equalizer \
82 - --with-qt-version=5 \
83 - --htmldir=/usr/share/doc/${PF}/html
84 -
85 -}
86 -
87 -src_install() {
88 - default
89 - use doc || ( rm -rf "${D}"/usr/share/doc/${PF}/html && dohtml "${FILESDIR}/${PN}.html" )
90 -}