diff options
-rw-r--r-- | media-video/totem/ChangeLog | 6 | ||||
-rw-r--r-- | media-video/totem/totem-3.2.2.ebuild | 9 |
2 files changed, 13 insertions, 2 deletions
diff --git a/media-video/totem/ChangeLog b/media-video/totem/ChangeLog index 91d04fb01579..9073424073b2 100644 --- a/media-video/totem/ChangeLog +++ b/media-video/totem/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-video/totem # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/totem/ChangeLog,v 1.339 2012/05/20 22:22:55 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/totem/ChangeLog,v 1.340 2012/06/04 08:00:14 tetromino Exp $ + + 04 Jun 2012; Alexandre Rostovtsev <tetromino@gentoo.org> totem-3.2.2.ebuild: + totem-3.2 also needs the "unset DISPLAY" hack to avoid access violations (bug + #419187, thanks to Travis Hansen). 20 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org> totem-3.4.2.ebuild: Fix build with USE=-python (bug #416165, thanks to cyrillic). diff --git a/media-video/totem/totem-3.2.2.ebuild b/media-video/totem/totem-3.2.2.ebuild index 705d5b08d353..5aaa682ea53c 100644 --- a/media-video/totem/totem-3.2.2.ebuild +++ b/media-video/totem/totem-3.2.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/totem/totem-3.2.2.ebuild,v 1.3 2012/05/05 08:58:51 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/totem/totem-3.2.2.ebuild,v 1.4 2012/06/04 08:00:14 tetromino Exp $ EAPI="4" GCONF_DEBUG="yes" @@ -161,6 +161,13 @@ src_prepare() { gnome2_src_prepare } +src_configure() { + # Work around sandbox violations when FEATURES=-userpriv caused by + # gst-inspect-0.10 (bug #358755, #419187) + unset DISPLAY + gnome2_src_configure +} + pkg_postinst() { gnome2_pkg_postinst if use python; then |