diff options
author | Jeroen Roovers <jer@gentoo.org> | 2012-10-20 14:37:15 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2012-10-20 14:37:15 +0000 |
commit | 49536ab41c37efc39a94acbd0e4a0810cf05ab4d (patch) | |
tree | 22dfb401ea2267cc7eba8872ffb4510203291b95 /x11-misc/qtfm | |
parent | Version bump (diff) | |
download | gentoo-2-49536ab41c37efc39a94acbd0e4a0810cf05ab4d.tar.gz gentoo-2-49536ab41c37efc39a94acbd0e4a0810cf05ab4d.tar.bz2 gentoo-2-49536ab41c37efc39a94acbd0e4a0810cf05ab4d.zip |
Version bump by Franz Fellner (bug #439034).
(Portage version: 2.2.0_alpha141/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'x11-misc/qtfm')
-rw-r--r-- | x11-misc/qtfm/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/qtfm/qtfm-5.5.ebuild | 34 |
2 files changed, 40 insertions, 1 deletions
diff --git a/x11-misc/qtfm/ChangeLog b/x11-misc/qtfm/ChangeLog index 8e9e6e392ee7..d5ca56dbae70 100644 --- a/x11-misc/qtfm/ChangeLog +++ b/x11-misc/qtfm/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/qtfm # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/qtfm/ChangeLog,v 1.11 2012/10/20 08:53:49 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/qtfm/ChangeLog,v 1.12 2012/10/20 14:37:15 jer Exp $ + +*qtfm-5.5 (20 Oct 2012) + + 20 Oct 2012; Jeroen Roovers <jer@gentoo.org> +qtfm-5.5.ebuild: + Version bump by Franz Fellner (bug #439034). 20 Oct 2012; Samuli Suominen <ssuominen@gentoo.org> metadata.xml: Maintained now by qt@ and desktop-misc@ diff --git a/x11-misc/qtfm/qtfm-5.5.ebuild b/x11-misc/qtfm/qtfm-5.5.ebuild new file mode 100644 index 000000000000..468c8bfe7c67 --- /dev/null +++ b/x11-misc/qtfm/qtfm-5.5.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/qtfm/qtfm-5.5.ebuild,v 1.1 2012/10/20 14:37:15 jer Exp $ + +EAPI=4 +inherit fdo-mime qt4-r2 + +DESCRIPTION="A small, lightweight file manager for desktops based on pure Qt" +HOMEPAGE="http://www.qtfm.org/" +SRC_URI="http://www.qtfm.org/${P}.tar.gz?attredirects=0 -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +# file is for LIBS += -lmagic +RDEPEND="sys-apps/file + x11-libs/qt-gui:4" +DEPEND="${RDEPEND}" + +src_prepare() { + sed -i \ + -e "/^docs.path/s:qtfm:${PF}:" \ + -e '/^docs.files/s: COPYING::' \ + ${PN}.desktop || die + sed -i \ + -e '/MimeType=/s|$|;|' \ + -e '/Categories=/s|$|;System;FileTools;|' \ + ${PN}.desktop || die +} + +pkg_postinst() { fdo-mime_desktop_database_update; } +pkg_postrm() { fdo-mime_desktop_database_update; } |