summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2012-09-21 09:09:43 +0000
committerJohannes Huber <johu@gentoo.org>2012-09-21 09:09:43 +0000
commit371daf6165621771e78ba5333f2cf983c0ba83e6 (patch)
tree170bebe2f8935b98ebf45cf03a8297d0f9627624 /kde-misc
parentDrop weird workaround to rather fix the true cause if it is still present. (diff)
downloadgentoo-2-371daf6165621771e78ba5333f2cf983c0ba83e6.tar.gz
gentoo-2-371daf6165621771e78ba5333f2cf983c0ba83e6.tar.bz2
gentoo-2-371daf6165621771e78ba5333f2cf983c0ba83e6.zip
Add ~x86. Respect linguas. Install CREDITS file. Fix .desktop file. Add debug use flag.
(Portage version: 2.2.0_alpha130/cvs/Linux x86_64)
Diffstat (limited to 'kde-misc')
-rw-r--r--kde-misc/kdirstat/ChangeLog7
-rw-r--r--kde-misc/kdirstat/kdirstat-2.7.3.ebuild16
2 files changed, 18 insertions, 5 deletions
diff --git a/kde-misc/kdirstat/ChangeLog b/kde-misc/kdirstat/ChangeLog
index 31c417614287..fa70cb8b7f30 100644
--- a/kde-misc/kdirstat/ChangeLog
+++ b/kde-misc/kdirstat/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for kde-misc/kdirstat
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-misc/kdirstat/ChangeLog,v 1.25 2012/01/20 22:59:59 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-misc/kdirstat/ChangeLog,v 1.26 2012/09/21 09:09:43 johu Exp $
+
+ 21 Sep 2012; Johannes Huber <johu@gentoo.org> kdirstat-2.7.3.ebuild:
+ Add ~x86. Respect linguas. Install CREDITS file. Fix .desktop file. Add debug
+ use flag.
20 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> metadata.xml:
Fix metadata
@@ -10,4 +14,3 @@
20 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org>
+kdirstat-2.7.3.ebuild, +metadata.xml:
New application, bug 373103. Thanks to Martin von Gagern for the ebuild.
-
diff --git a/kde-misc/kdirstat/kdirstat-2.7.3.ebuild b/kde-misc/kdirstat/kdirstat-2.7.3.ebuild
index c236bac6d5c2..4a0b2d7fa78d 100644
--- a/kde-misc/kdirstat/kdirstat-2.7.3.ebuild
+++ b/kde-misc/kdirstat/kdirstat-2.7.3.ebuild
@@ -1,9 +1,10 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-misc/kdirstat/kdirstat-2.7.3.ebuild,v 1.1 2012/01/20 22:58:44 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-misc/kdirstat/kdirstat-2.7.3.ebuild,v 1.2 2012/09/21 09:09:43 johu Exp $
EAPI=4
+KDE_LINGUAS="de fr hu it ja"
inherit kde4-base
DESCRIPTION="Nice KDE replacement to the du command"
@@ -12,15 +13,24 @@ SRC_URI="${HOMEPAGE}get/k4dirstat-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="4"
-KEYWORDS="~amd64"
-IUSE=""
+KEYWORDS="~amd64 ~x86"
+IUSE="debug"
RDEPEND="kde-base/libkonq:4
sys-libs/zlib"
DEPEND="${RDEPEND}"
+DOCS=( AUTHORS CREDITS TODO )
+
src_unpack() {
# tarball contains git revision hash, which we don't want in the ebuild.
default
mv "${WORKDIR}"/*k4dirstat-* "${S}" || die
}
+
+src_prepare() {
+ sed -e "s/Utility/Utility;/" \
+ -i src/k4dirstat.desktop || die "fixing .desktop file failed"
+
+ kde4-base_src_prepare
+}