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: metadata.xml ChangeLog subtitleeditor-0.30.0.ebuild
Date: Sun, 01 Feb 2009 10:47:29
Message-Id: E1LTZrI-0000IT-U1@stork.gentoo.org
1 eva 09/02/01 10:47:24
2
3 Added: metadata.xml ChangeLog subtitleeditor-0.30.0.ebuild
4 Log:
5 Initial commit of subtitleeditor, thanks for contributors of bug #125714. Adding gnome as backing herd, maintained by <eva@g.o>.
6 (Portage version: 2.2_rc23/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 media-video/subtitleeditor/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/subtitleeditor/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/subtitleeditor/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>gnome</herd>
20 <maintainer>
21 <email>eva@g.o</email>
22 <name>Gilles Dartiguelongue</name>
23 </maintainer>
24 <longdescription lang="en">
25 Subtitle Editor is a GTK+2 tool to edit subtitles for GNU/Linux/*BSD. It can be used for new subtitles or as a tool to transform, edit, correct and refine existing subtitle. This program also shows sound waves, which makes it easier to synchronise subtitles to voices.
26 </longdescription>
27 </pkgmetadata>
28
29
30
31
32 1.1 media-video/subtitleeditor/ChangeLog
33
34 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/subtitleeditor/ChangeLog?rev=1.1&view=markup
35 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/subtitleeditor/ChangeLog?rev=1.1&content-type=text/plain
36
37 Index: ChangeLog
38 ===================================================================
39 # ChangeLog for media-video/subtitleeditor
40 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
41 # $Header: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/ChangeLog,v 1.1 2009/02/01 10:47:24 eva Exp $
42
43 *subtitleeditor-0.30.0 (01 Feb 2009)
44
45 01 Feb 2009; Gilles Dartiguelongue <eva@g.o> +metadata.xml,
46 +subtitleeditor-0.30.0.ebuild:
47 Initial commit of subtitleeditor, thanks for contributors of bug #125714.
48 Adding gnome as backing herd, maintained by <eva@g.o>.
49
50
51
52
53 1.1 media-video/subtitleeditor/subtitleeditor-0.30.0.ebuild
54
55 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.30.0.ebuild?rev=1.1&view=markup
56 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.30.0.ebuild?rev=1.1&content-type=text/plain
57
58 Index: subtitleeditor-0.30.0.ebuild
59 ===================================================================
60 # Copyright 1999-2009 Gentoo Foundation
61 # Distributed under the terms of the GNU General Public License v2
62 # $Header: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.30.0.ebuild,v 1.1 2009/02/01 10:47:24 eva Exp $
63
64 EAPI="1"
65
66 inherit eutils
67
68 DESCRIPTION="GTK+2 subtitle editing tool."
69 HOMEPAGE="http://home.gna.org/subtitleeditor/"
70 SRC_URI="http://download.gna.org/${PN}/${PV%.*}/${P}.tar.gz"
71
72 LICENSE="GPL-2"
73 SLOT="0"
74 KEYWORDS="~amd64 ~x86"
75 IUSE="debug opengl"
76
77 RDEPEND=">=x11-libs/gtk+-2.12
78 >=dev-cpp/gtkmm-2.12
79 >=dev-cpp/glibmm-2.16.3
80 >=dev-cpp/libglademm-2.4
81 >=dev-cpp/libxmlpp-2.10
82 >=app-text/enchant-1.1.0
83 opengl? ( >=dev-cpp/gtkglextmm-1.2 )
84 >=media-libs/gstreamer-0.10
85 >=media-libs/gst-plugins-good-0.10
86 >=media-plugins/gst-plugins-meta-0.10-r2:0.10
87 app-text/iso-codes"
88 #>=media-plugins/gst-plugins-pango-0.10
89
90 DEPEND="${RDEPEND}
91 >=dev-util/intltool-0.40
92 dev-util/pkgconfig"
93
94 src_compile() {
95 intltoolize --copy --force --automake || die "intltoolize failed"
96 export GST_REGISTRY="${T}/home/registry.cache.xml"
97
98 # USE="debug" seems to turn on some debug path
99 econf \
100 $(use_enable debug) \
101 $(use_enable opengl gl)
102 emake || die "make failed"
103 }
104
105 src_install() {
106 emake DESTDIR="${D}" install || die "make install failed"
107 dodoc AUTHORS ChangeLog NEWS README TODO
108 }
109
110 pkg_postinst() {
111 ewarn
112 ewarn "If ${PN} doesn't play some video format, please check your"
113 ewarn "USE flags on media-plugins/gst-plugins-meta"
114 ewarn
115 }