Gentoo Archives: gentoo-commits

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