Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/bino: bino-1.6.1.ebuild ChangeLog
Date: Sun, 28 Dec 2014 23:56:30
Message-Id: 20141228235624.A50EEE621@oystercatcher.gentoo.org
1 robbat2 14/12/28 23:56:24
2
3 Modified: ChangeLog
4 Added: bino-1.6.1.ebuild
5 Log:
6 Bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.6 media-video/bino/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/bino/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/bino/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/bino/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-video/bino/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 2 May 2014 20:13:59 -0000 1.5
24 +++ ChangeLog 28 Dec 2014 23:56:24 -0000 1.6
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-video/bino
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-video/bino/ChangeLog,v 1.5 2014/05/02 20:13:59 swift Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-video/bino/ChangeLog,v 1.6 2014/12/28 23:56:24 robbat2 Exp $
30 +
31 +*bino-1.6.1 (28 Dec 2014)
32 +
33 + 28 Dec 2014; Robin H. Johnson <robbat2@g.o> +bino-1.6.1.ebuild:
34 + Bump.
35
36 *bino-1.4.4 (02 May 2014)
37
38
39
40
41 1.1 media-video/bino/bino-1.6.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/bino/bino-1.6.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/bino/bino-1.6.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bino-1.6.1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-video/bino/bino-1.6.1.ebuild,v 1.1 2014/12/28 23:56:24 robbat2 Exp $
51
52 EAPI=5
53
54 AUTOTOOLS_AUTORECONF="1"
55
56 inherit autotools-utils flag-o-matic
57
58 DESCRIPTION="Stereoscopic and multi-display media player"
59 HOMEPAGE="http://bino3d.org/"
60 SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${P}.tar.xz"
61
62 LICENSE="GPL-3"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="doc lirc"
66
67 IUSE_VIDEO_CARDS="
68 video_cards_nvidia"
69 IUSE+="${IUSE_VIDEO_CARDS}"
70
71 LANGS="en bg de fr ru zh_CN"
72 for X in ${LANGS} ; do
73 IUSE+=" linguas_${X}"
74 done
75
76 RDEPEND=">=media-libs/glew-1.6.0
77 >=media-libs/openal-1.15.1
78 dev-qt/qtgui:4
79 dev-qt/qtcore:4
80 dev-qt/qtopengl:4
81 >=media-libs/libass-0.9.9
82 >=virtual/ffmpeg-0.6.90
83 lirc? ( app-misc/lirc )
84 video_cards_nvidia? ( media-video/nvidia-settings )
85 virtual/libintl"
86
87 DEPEND="${RDEPEND}
88 sys-devel/gettext
89 virtual/pkgconfig"
90
91 DOCS=( AUTHORS ChangeLog NEWS README README.Linux )
92
93 PATCHES=(
94 "${FILESDIR}/${PN}-1.4.2-lirc-detect.patch" # detect lirc
95 )
96
97 src_configure() {
98 local myeconfargs=(
99 $(use_with video_cards_nvidia xnvctrl)
100 $(use_with lirc liblircclient)
101 --without-equalizer
102 --htmldir=/usr/share/doc/${PF}/html
103 )
104 use video_cards_nvidia && append-cppflags "-I/usr/include/NVCtrl" && append-ldflags "-I/usr/$(get_libdir)" && append-libs "Xext"
105 use lirc && append-cppflags "-I/usr/include/lirc" && append-libs "lirc_client"
106
107 # Fix a compilation error because of a multiple definitions in glew
108 append-ldflags "-zmuldefs"
109
110 autotools-utils_src_configure
111 }
112
113 src_install() {
114 autotools-utils_src_install
115
116 use doc || ( rm -rf "${D}"/usr/share/doc/${PF}/html && dohtml "${FILESDIR}/${PN}.html" )
117 }