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.33.0.ebuild
Date: Mon, 29 Jun 2009 22:51:40
Message-Id: E1MLPhK-0000zo-PG@stork.gentoo.org
1 eva 09/06/29 22:51:38
2
3 Modified: ChangeLog
4 Added: subtitleeditor-0.33.0.ebuild
5 Log:
6 Version bump. Add gst-plugins-pango, bug #274830. Better spellchecking integration, bug fixes and translation updates.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 media-video/subtitleeditor/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/subtitleeditor/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/subtitleeditor/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/subtitleeditor/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 23 May 2009 13:10:45 -0000 1.2
23 +++ ChangeLog 29 Jun 2009 22:51:38 -0000 1.3
24 @@ -1,6 +1,13 @@
25 # ChangeLog for media-video/subtitleeditor
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/ChangeLog,v 1.2 2009/05/23 13:10:45 eva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/ChangeLog,v 1.3 2009/06/29 22:51:38 eva Exp $
29 +
30 +*subtitleeditor-0.33.0 (30 Jun 2009)
31 +
32 + 30 Jun 2009; Gilles Dartiguelongue <eva@g.o>
33 + +subtitleeditor-0.33.0.ebuild:
34 + Version bump. Add gst-plugins-pango, bug #274830. Better spellchecking
35 + integration, bug fixes and translation updates.
36
37 *subtitleeditor-0.31.0 (23 May 2009)
38
39
40
41
42 1.1 media-video/subtitleeditor/subtitleeditor-0.33.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.33.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.33.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: subtitleeditor-0.33.0.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.33.0.ebuild,v 1.1 2009/06/29 22:51:38 eva Exp $
52
53 EAPI="2"
54
55 inherit eutils
56
57 DESCRIPTION="GTK+2 subtitle editing tool."
58 HOMEPAGE="http://home.gna.org/subtitleeditor/"
59 SRC_URI="http://download.gna.org/${PN}/${PV%.*}/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="debug opengl"
65
66 RDEPEND=">=x11-libs/gtk+-2.12
67 >=dev-cpp/gtkmm-2.12
68 >=dev-cpp/glibmm-2.16.3
69 >=dev-cpp/libglademm-2.4
70 >=dev-cpp/libxmlpp-2.20
71 >=app-text/enchant-1.1.0
72 opengl? ( >=dev-cpp/gtkglextmm-1.2 )
73 >=media-libs/gstreamer-0.10
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 app-text/iso-codes"
78 # gst-plugins-pango needed for text overlay
79
80 DEPEND="${RDEPEND}
81 >=dev-util/intltool-0.40
82 dev-util/pkgconfig"
83
84 src_prepare() {
85 # Fix intltoolize broken file, see upstream #577133
86 sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in || die "sed failed"
87 }
88
89 src_configure() {
90 export GST_REGISTRY="${T}/home/registry.cache.xml"
91
92 # USE="debug" seems to turn on some debug path
93 econf \
94 $(use_enable debug) \
95 $(use_enable opengl gl)
96 }
97
98 src_install() {
99 emake DESTDIR="${D}" install || die "make install failed"
100 dodoc AUTHORS ChangeLog NEWS README TODO || die "dodoc failed"
101 }
102
103 pkg_postinst() {
104 ewarn
105 ewarn "If ${PN} doesn't play some video format, please check your"
106 ewarn "USE flags on media-plugins/gst-plugins-meta"
107 ewarn
108 }