diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-01-03 13:41:26 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-01-03 13:41:26 +0000 |
commit | cb2365d3c8e517f2dfc334c9edf0b5bf290e1c86 (patch) | |
tree | 5243929cc35a56a27028d71b96b9077aaf0828bb /media-video/tovid | |
parent | QA: Cleanup, respect CFLAGS (bug 240794) (diff) | |
download | gentoo-2-cb2365d3c8e517f2dfc334c9edf0b5bf290e1c86.tar.gz gentoo-2-cb2365d3c8e517f2dfc334c9edf0b5bf290e1c86.tar.bz2 gentoo-2-cb2365d3c8e517f2dfc334c9edf0b5bf290e1c86.zip |
dont install desktop entries when not installing the guis, by gentoobugsie@gmail.com, bug #251752
(Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
Diffstat (limited to 'media-video/tovid')
-rw-r--r-- | media-video/tovid/ChangeLog | 6 | ||||
-rw-r--r-- | media-video/tovid/tovid-0.31-r1.ebuild | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/media-video/tovid/ChangeLog b/media-video/tovid/ChangeLog index 09b234151fde..0aff5b7fb0fb 100644 --- a/media-video/tovid/ChangeLog +++ b/media-video/tovid/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-video/tovid # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/tovid/ChangeLog,v 1.18 2009/01/03 13:37:29 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/tovid/ChangeLog,v 1.19 2009/01/03 13:41:26 aballier Exp $ + + 03 Jan 2009; Alexis Ballier <aballier@gentoo.org> tovid-0.31-r1.ebuild: + dont install desktop entries when not installing the guis, by + gentoobugsie@gmail.com, bug #251752 03 Jan 2009; Alexis Ballier <aballier@gentoo.org> -files/tovid-0.30-ffmpeg.patch, -files/tovid-0.30-tovid-init.patch, diff --git a/media-video/tovid/tovid-0.31-r1.ebuild b/media-video/tovid/tovid-0.31-r1.ebuild index 10c0c365d69e..42965a2ce6e0 100644 --- a/media-video/tovid/tovid-0.31-r1.ebuild +++ b/media-video/tovid/tovid-0.31-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/tovid/tovid-0.31-r1.ebuild,v 1.1 2008/12/20 08:57:19 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/tovid/tovid-0.31-r1.ebuild,v 1.2 2009/01/03 13:41:26 aballier Exp $ inherit eutils python @@ -64,12 +64,14 @@ src_install() { if ! use wxwindows; then rm -f "${D}/usr/bin/tovidgui" rm -rf "${D}/usr/$(get_libdir)/python${PYVER}/site-packages/libtovid/gui" + rm -f "${D}/usr/share/applications/tovidgui.desktop" fi # remove tk components if ! use tk; then rm -f "${D}/usr/bin/todiscgui" rm -rf "${D}/usr/$(get_libdir)/python${PYVER}/site-packages/libtovid/metagui" + rm -f "${D}/usr/share/applications/todiscgui.desktop" fi } |