Gentoo Archives: gentoo-commits

From: "Arun Raghavan (ford_prefect)" <ford_prefect@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/pitivi: ChangeLog pitivi-0.13.5.ebuild
Date: Mon, 31 Jan 2011 06:12:10
Message-Id: 20110131061200.6402A20054@flycatcher.gentoo.org
1 ford_prefect 11/01/31 06:12:00
2
3 Modified: ChangeLog
4 Added: pitivi-0.13.5.ebuild
5 Log:
6 Bump to 0.13.5. Lots of enhancements and bug fixes.
7
8 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.22 media-video/pitivi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/pitivi/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/pitivi/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/pitivi/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-video/pitivi/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 20 Mar 2010 12:41:32 -0000 1.21
24 +++ ChangeLog 31 Jan 2011 06:12:00 -0000 1.22
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-video/pitivi
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-video/pitivi/ChangeLog,v 1.21 2010/03/20 12:41:32 nirbheek Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-video/pitivi/ChangeLog,v 1.22 2011/01/31 06:12:00 ford_prefect Exp $
31 +
32 +*pitivi-0.13.5 (31 Jan 2011)
33 +
34 + 31 Jan 2011; Arun Raghavan <ford_prefect@g.o> +pitivi-0.13.5.ebuild,
35 + +files/pitivi-0.13.5-work-with-old-good.patch:
36 + Bump to 0.13.5. Lots of enhancements and bug fixes.
37
38 *pitivi-0.13.4 (20 Mar 2010)
39
40
41
42
43 1.1 media-video/pitivi/pitivi-0.13.5.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/pitivi/pitivi-0.13.5.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/pitivi/pitivi-0.13.5.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pitivi-0.13.5.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/pitivi/pitivi-0.13.5.ebuild,v 1.1 2011/01/31 06:12:00 ford_prefect Exp $
53
54 EAPI="2"
55 GCONF_DEBUG="no"
56
57 inherit gnome2 python eutils virtualx
58
59 DESCRIPTION="A non-linear video editor using the GStreamer multimedia framework"
60 HOMEPAGE="http://www.pitivi.org"
61
62 LICENSE="LGPL-2.1"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE=""
66
67 RDEPEND=">=dev-lang/python-2.5
68 >=dev-python/pygtk-2.14.0
69 dev-python/dbus-python
70 >=dev-python/gconf-python-2.12
71 dev-python/pycairo
72 dev-python/pygoocanvas
73 net-zope/zope-interface
74 gnome-base/librsvg
75
76 >=media-libs/gstreamer-0.10.28
77 >=dev-python/gst-python-0.10.19
78 >=media-libs/gnonlin-0.10.16
79 >=media-libs/gst-plugins-base-0.10.0
80 >=media-libs/gst-plugins-good-0.10.0
81 >=media-plugins/gst-plugins-ffmpeg-0.10.0
82 >=media-plugins/gst-plugins-xvideo-0.10.0
83 >=media-plugins/gst-plugins-libpng-0.10.0"
84 DEPEND="${RDEPEND}
85 dev-python/setuptools
86 >=dev-util/intltool-0.35.5"
87
88 DOCS="AUTHORS ChangeLog NEWS RELEASE"
89
90 src_prepare() {
91 gnome2_src_prepare
92
93 epatch "${FILESDIR}/${P}-work-with-old-good.patch"
94
95 # disable pyc compiling
96 mv py-compile py-compile.orig
97 ln -s $(type -P true) py-compile
98 }
99
100 src_configure() {
101 addpredict $(unset HOME; echo ~)/.gconf
102 addpredict $(unset HOME; echo ~)/.gconfd
103 addpredict $(unset HOME; echo ~)/.gstreamer-0.10
104
105 gnome2_src_configure
106 }
107
108 src_test() {
109 export XDG_CONFIG_HOME="${WORKDIR}/.config"
110 export XDG_DATA_HOME="${WORKDIR}/.local"
111 # Force Xvfb to be used
112 unset DISPLAY
113 # pitivi/configure.py checks this in get_pixmap_dir()
114 mkdir "${S}/.git"
115 Xemake check || die "tests failed"
116 }
117
118 pkg_postinst() {
119 gnome2_pkg_postinst
120 python_mod_optimize "/usr/$(get_libdir)/${PN}/python/${PN}"
121 }
122
123 pkg_postrm() {
124 gnome2_pkg_postrm
125 python_mod_cleanup "/usr/$(get_libdir)/${PN}/python/${PN}"
126 }