Gentoo Archives: gentoo-commits

From: "Hanno Boeck (hanno)" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/pitivi: ChangeLog pitivi-0.13.3.ebuild
Date: Mon, 28 Sep 2009 10:47:40
Message-Id: E1MsDlW-0005tn-Ja@stork.gentoo.org
1 hanno 09/09/28 10:47:34
2
3 Modified: ChangeLog
4 Added: pitivi-0.13.3.ebuild
5 Log:
6 pitivi bump
7 (Portage version: 2.2_rc42/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.19 media-video/pitivi/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/pitivi/ChangeLog?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/pitivi/ChangeLog?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/pitivi/ChangeLog?r1=1.18&r2=1.19
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-video/pitivi/ChangeLog,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- ChangeLog 27 Jun 2009 12:39:11 -0000 1.18
23 +++ ChangeLog 28 Sep 2009 10:47:34 -0000 1.19
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-video/pitivi
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-video/pitivi/ChangeLog,v 1.18 2009/06/27 12:39:11 hanno Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-video/pitivi/ChangeLog,v 1.19 2009/09/28 10:47:34 hanno Exp $
29 +
30 +*pitivi-0.13.3 (28 Sep 2009)
31 +
32 + 28 Sep 2009; Hanno Boeck <hanno@g.o> +pitivi-0.13.3.ebuild:
33 + Version bump, disabled tests as they require x11.
34
35 27 Jun 2009; Hanno Boeck <hanno@g.o> pitivi-0.13.1.ebuild:
36 Add librsvg dependency, fix #275344.
37
38
39
40 1.1 media-video/pitivi/pitivi-0.13.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/pitivi/pitivi-0.13.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/pitivi/pitivi-0.13.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: pitivi-0.13.3.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-video/pitivi/pitivi-0.13.3.ebuild,v 1.1 2009/09/28 10:47:34 hanno Exp $
50
51 EAPI="2"
52 GCONF_DEBUG="no"
53
54 inherit gnome2 python eutils
55
56 DESCRIPTION="A non-linear video editor using the GStreamer multimedia framework"
57 HOMEPAGE="http://www.pitivi.org"
58
59 LICENSE="LGPL-2.1"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE=""
63
64 RDEPEND=">=dev-lang/python-2.5
65 >=dev-python/pygtk-2.14.0
66 dev-python/dbus-python
67 >=dev-python/gconf-python-2.12
68 dev-python/pycairo
69 dev-python/pygoocanvas
70 net-zope/zopeinterface
71 gnome-base/librsvg
72
73 >=media-libs/gstreamer-0.10.24
74 >=dev-python/gst-python-0.10.16
75 >=media-libs/gnonlin-0.10.13
76 >=media-libs/gst-plugins-base-0.10.0
77 >=media-libs/gst-plugins-good-0.10.0
78 >=media-plugins/gst-plugins-ffmpeg-0.10.0
79 >=media-plugins/gst-plugins-xvideo-0.10.0
80 >=media-plugins/gst-plugins-libpng-0.10.0"
81 DEPEND="${RDEPEND}
82 dev-python/setuptools
83 >=dev-util/intltool-0.35.5"
84
85 DOCS="AUTHORS ChangeLog NEWS RELEASE"
86
87 # Tests need running X
88 RESTRICT="test"
89
90 src_prepare() {
91 gnome2_src_prepare
92
93 # disable pyc compiling
94 mv py-compile py-compile.orig
95 ln -s $(type -P true) py-compile
96 }
97
98 src_configure() {
99 addpredict $(unset HOME; echo ~)/.gconf
100 addpredict $(unset HOME; echo ~)/.gconfd
101 addpredict $(unset HOME; echo ~)/.gstreamer-0.10
102
103 gnome2_src_configure
104 }
105
106 src_test() {
107 export XDG_CONFIG_HOME="${WORKDIR}/.config"
108 export XDG_DATA_HOME="${WORKDIR}/.local"
109 emake check || die "tests failed"
110 }
111
112 pkg_postinst() {
113 gnome2_pkg_postinst
114 python_mod_optimize "/usr/$(get_libdir)/${PN}/python/${PN}"
115 }
116
117 pkg_postrm() {
118 gnome2_pkg_postrm
119 python_mod_cleanup "/usr/$(get_libdir)/${PN}/python/${PN}"
120 }