diff options
author | Zac Medico <zmedico@gentoo.org> | 2011-05-26 21:27:27 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2011-05-26 21:27:27 +0000 |
commit | 1c68fcf6bdd44bb3121cd814ee08f931f6fd3d49 (patch) | |
tree | cd1e7268d12db65caf691ed74f535deb254fce0c /app-text/calibre | |
parent | also keyword latest version on arm (diff) | |
download | gentoo-2-1c68fcf6bdd44bb3121cd814ee08f931f6fd3d49.tar.gz gentoo-2-1c68fcf6bdd44bb3121cd814ee08f931f6fd3d49.tar.bz2 gentoo-2-1c68fcf6bdd44bb3121cd814ee08f931f6fd3d49.zip |
Bug #358065 - Stop filtering mime types from the desktop files, since it doesn't appear to be necessary now that application/octet-stream is no longer listed.
(Portage version: 2.2.0_alpha36_p9/cvs/Linux i686)
Diffstat (limited to 'app-text/calibre')
-rw-r--r-- | app-text/calibre/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/calibre/calibre-0.8.2.ebuild | 13 |
2 files changed, 7 insertions, 13 deletions
diff --git a/app-text/calibre/ChangeLog b/app-text/calibre/ChangeLog index 6d1c3db7b827..e4dde13612fe 100644 --- a/app-text/calibre/ChangeLog +++ b/app-text/calibre/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/calibre # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/ChangeLog,v 1.150 2011/05/24 09:49:28 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/ChangeLog,v 1.151 2011/05/26 21:27:27 zmedico Exp $ + + 26 May 2011; Zac Medico <zmedico@gentoo.org> calibre-0.8.2.ebuild: + Bug #358065 - Stop filtering mime types from the desktop files, since it + doesn't appear to be necessary now that application/octet-stream is no longer + listed. *calibre-0.8.2 (24 May 2011) diff --git a/app-text/calibre/calibre-0.8.2.ebuild b/app-text/calibre/calibre-0.8.2.ebuild index a33e6a6f1962..3bfa14f6e95a 100644 --- a/app-text/calibre/calibre-0.8.2.ebuild +++ b/app-text/calibre/calibre-0.8.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-0.8.2.ebuild,v 1.1 2011/05/24 09:49:28 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-0.8.2.ebuild,v 1.2 2011/05/26 21:27:27 zmedico Exp $ EAPI=3 PYTHON_DEPEND=2:2.7 @@ -160,17 +160,6 @@ src_install() { mv "${HOME}"/.local/share/icons/* "${D}"usr/share/icons/ || die "failed to install icon files" - # Bug #358065 - Remove inappropriate mime types from *.desktop. - sed -e "s:application/octet-stream;::g" \ - -e "s:application/pdf;::g" \ - -e "s:application/vnd.oasis.opendocument.text;::g" \ - -e "s:application/xhtml+xml;::g" \ - -e "s:text/html;::g" \ - -e "s:text/plain;::g" \ - -e "s:text/rtf;::g" \ - -i "${HOME}"/.local/share/applications/*.desktop \ - || die "sed failed" - domenu "${HOME}"/.local/share/applications/*.desktop || die "failed to install .desktop menu files" |