diff options
author | Carsten Lohrke <carlo@gentoo.org> | 2008-09-14 23:08:51 +0000 |
---|---|---|
committer | Carsten Lohrke <carlo@gentoo.org> | 2008-09-14 23:08:51 +0000 |
commit | 5100627f89cf4e3c2a014a6c756d9a160ac9e419 (patch) | |
tree | 487039f68fa281b4562d014bf7daf2d7d2a4f576 /kde-misc/kdirstat | |
parent | * bump (diff) | |
download | gentoo-2-5100627f89cf4e3c2a014a6c756d9a160ac9e419.tar.gz gentoo-2-5100627f89cf4e3c2a014a6c756d9a160ac9e419.tar.bz2 gentoo-2-5100627f89cf4e3c2a014a6c756d9a160ac9e419.zip |
Fix desktop entry.
(Portage version: 2.1.4.4)
Diffstat (limited to 'kde-misc/kdirstat')
-rw-r--r-- | kde-misc/kdirstat/ChangeLog | 8 | ||||
-rw-r--r-- | kde-misc/kdirstat/files/kdirstat-2.5.3-desktop-entry-fix.diff | 39 | ||||
-rw-r--r-- | kde-misc/kdirstat/kdirstat-2.5.3-r1.ebuild | 27 |
3 files changed, 73 insertions, 1 deletions
diff --git a/kde-misc/kdirstat/ChangeLog b/kde-misc/kdirstat/ChangeLog index 8e6b2e7c73c8..6bab2129339d 100644 --- a/kde-misc/kdirstat/ChangeLog +++ b/kde-misc/kdirstat/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for kde-misc/kdirstat # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/kdirstat/ChangeLog,v 1.17 2008/07/23 10:11:09 loki_val Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-misc/kdirstat/ChangeLog,v 1.18 2008/09/14 23:08:50 carlo Exp $ + +*kdirstat-2.5.3-r1 (14 Sep 2008) + + 14 Sep 2008; Carsten Lohrke <carlo@gentoo.org> + +files/kdirstat-2.5.3-desktop-entry-fix.diff, +kdirstat-2.5.3-r1.ebuild: + Fix desktop entry. 23 Jul 2008; Peter Alfredsen <loki_val@gentoo.org> +files/kdirstat-2.5.3-gcc43.patch, kdirstat-2.5.3.ebuild: diff --git a/kde-misc/kdirstat/files/kdirstat-2.5.3-desktop-entry-fix.diff b/kde-misc/kdirstat/files/kdirstat-2.5.3-desktop-entry-fix.diff new file mode 100644 index 000000000000..f60858dcd54f --- /dev/null +++ b/kde-misc/kdirstat/files/kdirstat-2.5.3-desktop-entry-fix.diff @@ -0,0 +1,39 @@ +--- kdirstat/Makefile.am.orig 2008-09-15 00:43:37.000000000 +0200 ++++ kdirstat/Makefile.am 2008-09-15 00:44:16.000000000 +0200 +@@ -71,7 +71,7 @@ + + KDE_ICON = kdirstat + +-applnkdir = $(kde_appsdir)/Utilities ++applnkdir = $(xdg_appsdir) + applnk_DATA = kdirstat.desktop + + +--- kdirstat/kdirstat.desktop.orig 2008-09-15 01:01:06.000000000 +0200 ++++ kdirstat/kdirstat.desktop 2008-09-15 01:02:18.000000000 +0200 +@@ -1,20 +1,14 @@ +-# KDE Config File + [Desktop Entry] ++MimeType=inode/directory; ++Exec=kdirstat -caption "%c" %i ++Icon=kdirstat + Type=Application +-MimeType=inode/directory +-Exec=kdirstat -caption "%c" %i %m +-Icon=kdirstat.png +-MiniIcon=kdirstat.png +-DocPath=kdirstat/index.html +-Encoding=UTF-8 +-Terminal=0 ++X-DocPath=kdirstat/index.html + Name=KDirStat ++Categories=Qt;KDE;Utility;X-KDE-Utilities-File; + GenericName=Directory Statistics + GenericName[de]=Verzeichnisstatistik + GenericName[hu]=könyvtárstatisztika + Comment=Directory statistics and disk usage + Comment[de]=Verzeichnisstatistik und Platzverbrauch + Comment[hu]=Könyvtárstatisztikák és szabad hely +- +- +- diff --git a/kde-misc/kdirstat/kdirstat-2.5.3-r1.ebuild b/kde-misc/kdirstat/kdirstat-2.5.3-r1.ebuild new file mode 100644 index 000000000000..98cf9e0ca193 --- /dev/null +++ b/kde-misc/kdirstat/kdirstat-2.5.3-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-misc/kdirstat/kdirstat-2.5.3-r1.ebuild,v 1.1 2008/09/14 23:08:50 carlo Exp $ + +ARTS_REQUIRED="never" + +inherit kde eutils + +DESCRIPTION="KDirStat - nice KDE replacement to du command" +HOMEPAGE="http://kdirstat.sourceforge.net/" +SRC_URI="http://kdirstat.sourceforge.net/download/${P}.tar.bz2" +#SRC_URI="mirror://sourceforge/kdirstat/${P}.tar.bz2" + +LICENSE="GPL-2 LGPL-2" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +IUSE="" +SLOT="0" + +PATCHES=( "${FILESDIR}/${P}-gcc43.patch" + "${FILESDIR}/kdirstat-2.5.3-desktop-entry-fix.diff" ) +need-kde 3.5 + +src_unpack() { + kde_src_unpack + rm configure +} |