Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/subtitleeditor: ChangeLog subtitleeditor-0.38.0.ebuild
Date: Sun, 27 Feb 2011 17:59:10
Message-Id: 20110227175859.E097020054@flycatcher.gentoo.org
1 eva 11/02/27 17:58:59
2
3 Modified: ChangeLog
4 Added: subtitleeditor-0.38.0.ebuild
5 Log:
6 Version bump, bug #356647.
7
8 (Portage version: 2.2.0_alpha25/cvs/Linux x86_64, RepoMan options: --force)
9
10 Revision Changes Path
11 1.11 media-video/subtitleeditor/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 8 Oct 2010 23:23:13 -0000 1.10
24 +++ ChangeLog 27 Feb 2011 17:58:59 -0000 1.11
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-video/subtitleeditor
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/ChangeLog,v 1.10 2010/10/08 23:23:13 eva Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/ChangeLog,v 1.11 2011/02/27 17:58:59 eva Exp $
31 +
32 +*subtitleeditor-0.38.0 (27 Feb 2011)
33 +
34 + 27 Feb 2011; Gilles Dartiguelongue <eva@g.o>
35 + +subtitleeditor-0.38.0.ebuild:
36 + Version bump, bug #356647.
37
38 08 Oct 2010; Gilles Dartiguelongue <eva@g.o>
39 -subtitleeditor-0.36.0.ebuild, -files/subtitleeditor-0.36.0-r681.patch,
40
41
42
43 1.1 media-video/subtitleeditor/subtitleeditor-0.38.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.38.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.38.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: subtitleeditor-0.38.0.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.38.0.ebuild,v 1.1 2011/02/27 17:58:59 eva Exp $
53
54 EAPI="2"
55
56 inherit eutils versionator flag-o-matic
57
58 DESCRIPTION="GTK+2 subtitle editing tool."
59 HOMEPAGE="http://home.gna.org/subtitleeditor/"
60 SRC_URI="http://download.gna.org/${PN}/$(get_version_component_range 1-2)/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="debug nls opengl"
66
67 RDEPEND="
68 app-text/iso-codes
69 >=dev-cpp/gtkmm-2.14
70 >=dev-cpp/glibmm-2.16.3
71 >=dev-cpp/libxmlpp-2.20
72 >=app-text/enchant-1.4
73 >=dev-cpp/gstreamermm-0.10.4
74 >=media-libs/gst-plugins-good-0.10
75 >=media-plugins/gst-plugins-meta-0.10-r2:0.10
76 >=media-plugins/gst-plugins-pango-0.10
77 >=media-plugins/gst-plugins-xvideo-0.10
78 opengl? ( >=dev-cpp/gtkglextmm-1.2 )
79 "
80 # gst-plugins-pango needed for text overlay
81 # gst-plugins-xvideo needed for video output
82
83 DEPEND="${RDEPEND}
84 >=dev-util/intltool-0.40
85 dev-util/pkgconfig"
86
87 src_configure() {
88 export GST_REGISTRY="${T}/home/registry.cache.xml"
89
90 # Avoid using --enable-debug as it mocks with CXXFLAGS and LDFLAGS
91 use debug && append-flags -DDEBUG
92
93 econf \
94 --disable-debug \
95 $(use_enable nls) \
96 $(use_enable opengl gl)
97 }
98
99 src_install() {
100 emake DESTDIR="${D}" install || die "make install failed"
101 dodoc AUTHORS ChangeLog NEWS README TODO || die "dodoc failed"
102
103 # plugins are loaded without the help of libtool files
104 find "${D}" -name '*.la' -delete || die "failed to remove *.la files"
105 }
106
107 pkg_postinst() {
108 ewarn
109 ewarn "If ${PN} doesn't play some video format, please check your"
110 ewarn "USE flags on media-plugins/gst-plugins-meta"
111 ewarn
112 }