Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/subtitleeditor: subtitleeditor-0.41.0-r1.ebuild ChangeLog subtitleeditor-0.40.0.ebuild
Date: Sat, 22 Feb 2014 11:14:38
Message-Id: 20140222111431.424212004C@flycatcher.gentoo.org
1 pacho 14/02/22 11:14:31
2
3 Modified: ChangeLog
4 Added: subtitleeditor-0.41.0-r1.ebuild
5 Removed: subtitleeditor-0.40.0.ebuild
6 Log:
7 Fix compat with latest gstreamermm, also fixing bug #501862 by Mark Purtill, drop old
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.25 media-video/subtitleeditor/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/ChangeLog?rev=1.25&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/ChangeLog?rev=1.25&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/ChangeLog?r1=1.24&r2=1.25
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/ChangeLog,v
21 retrieving revision 1.24
22 retrieving revision 1.25
23 diff -u -r1.24 -r1.25
24 --- ChangeLog 8 Dec 2013 19:17:56 -0000 1.24
25 +++ ChangeLog 22 Feb 2014 11:14:31 -0000 1.25
26 @@ -1,6 +1,15 @@
27 # ChangeLog for media-video/subtitleeditor
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/ChangeLog,v 1.24 2013/12/08 19:17:56 pacho Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/ChangeLog,v 1.25 2014/02/22 11:14:31 pacho Exp $
32 +
33 +*subtitleeditor-0.41.0-r1 (22 Feb 2014)
34 +
35 + 22 Feb 2014; Pacho Ramos <pacho@g.o>
36 + +files/subtitleeditor-0.41.0-keyframe-generation.patch,
37 + +files/subtitleeditor-0.41.0-textoverlay.patch,
38 + +subtitleeditor-0.41.0-r1.ebuild, -subtitleeditor-0.40.0.ebuild:
39 + Fix compat with latest gstreamermm, also fixing bug #501862 by Mark Purtill,
40 + drop old
41
42 08 Dec 2013; Pacho Ramos <pacho@g.o> subtitleeditor-0.41.0.ebuild:
43 x86 stable, bug #478252
44
45
46
47 1.1 media-video/subtitleeditor/subtitleeditor-0.41.0-r1.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.41.0-r1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.41.0-r1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: subtitleeditor-0.41.0-r1.ebuild
53 ===================================================================
54 # Copyright 1999-2014 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.41.0-r1.ebuild,v 1.1 2014/02/22 11:14:31 pacho Exp $
57
58 EAPI=5
59 GCONF_DEBUG="no"
60 GNOME2_LA_PUNT="yes"
61
62 inherit gnome2 versionator flag-o-matic
63
64 DESCRIPTION="GTK+2 subtitle editing tool"
65 HOMEPAGE="http://home.gna.org/subtitleeditor/"
66 SRC_URI="http://download.gna.org/${PN}/$(get_version_component_range 1-2)/${P}.tar.gz"
67
68 LICENSE="GPL-2"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 IUSE="debug nls opengl"
72
73 RDEPEND="
74 app-text/iso-codes
75 >=dev-cpp/gtkmm-2.14:2.4
76 >=dev-cpp/glibmm-2.16.3:2
77 >=dev-cpp/libxmlpp-2.20:2.6
78 >=app-text/enchant-1.4
79 >=dev-cpp/gstreamermm-0.10.6
80 >=media-libs/gst-plugins-good-0.10:0.10
81 >=media-plugins/gst-plugins-meta-0.10-r2:0.10
82 >=media-plugins/gst-plugins-pango-0.10:0.10
83 >=media-plugins/gst-plugins-xvideo-0.10:0.10
84 opengl? ( >=dev-cpp/gtkglextmm-1.2 )
85 "
86 # gst-plugins-pango needed for text overlay
87 # gst-plugins-xvideo needed for video output
88 DEPEND="${RDEPEND}
89 >=dev-util/intltool-0.40
90 virtual/pkgconfig
91 "
92
93 src_prepare() {
94 # Get textoverlay working with gstreamermm 0.10.11
95 epatch "${FILESDIR}/${P}-textoverlay.patch"
96
97 # Prevent crash when generating keyframes with gstreamermm 0.10.11
98 epatch "${FILESDIR}/${P}-keyframe-generation.patch"
99
100 gnome2_src_prepare
101 }
102
103 src_configure() {
104 export GST_REGISTRY="${T}/home/registry.cache.xml"
105
106 # Avoid using --enable-debug as it mocks with CXXFLAGS and LDFLAGS
107 use debug && append-flags -DDEBUG
108
109 gnome2_src_configure \
110 --disable-debug \
111 $(use_enable nls) \
112 $(use_enable opengl gl)
113 }