summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Chatzimichos <tampakrap@gentoo.org>2011-09-11 10:16:15 +0000
committerTheo Chatzimichos <tampakrap@gentoo.org>2011-09-11 10:16:15 +0000
commite07727c968f37298f91187999e8c407040433eaf (patch)
treecb83291979461f65f044a187df5bf2f796300265 /kde-misc
parent[sys-auth/munge] Version bump (diff)
downloadgentoo-2-e07727c968f37298f91187999e8c407040433eaf.tar.gz
gentoo-2-e07727c968f37298f91187999e8c407040433eaf.tar.bz2
gentoo-2-e07727c968f37298f91187999e8c407040433eaf.zip
Version bump
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Diffstat (limited to 'kde-misc')
-rw-r--r--kde-misc/kfilebox/ChangeLog7
-rw-r--r--kde-misc/kfilebox/kfilebox-0.4.7.ebuild33
2 files changed, 39 insertions, 1 deletions
diff --git a/kde-misc/kfilebox/ChangeLog b/kde-misc/kfilebox/ChangeLog
index 4fb0f6e2a2eb..8474a6dfef42 100644
--- a/kde-misc/kfilebox/ChangeLog
+++ b/kde-misc/kfilebox/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for kde-misc/kfilebox
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-misc/kfilebox/ChangeLog,v 1.2 2011/07/08 10:09:05 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-misc/kfilebox/ChangeLog,v 1.3 2011/09/11 10:16:15 tampakrap Exp $
+
+*kfilebox-0.4.7 (11 Sep 2011)
+
+ 11 Sep 2011; Theo Chatzimichos <tampakrap@gentoo.org> +kfilebox-0.4.7.ebuild:
+ Version bump
08 Jul 2011; Samuli Suominen <ssuominen@gentoo.org> kfilebox-0.4.5.ebuild:
Convert from "hasq" to "has".
diff --git a/kde-misc/kfilebox/kfilebox-0.4.7.ebuild b/kde-misc/kfilebox/kfilebox-0.4.7.ebuild
new file mode 100644
index 000000000000..728cdbac20c5
--- /dev/null
+++ b/kde-misc/kfilebox/kfilebox-0.4.7.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/kde-misc/kfilebox/kfilebox-0.4.7.ebuild,v 1.1 2011/09/11 10:16:14 tampakrap Exp $
+
+EAPI=4
+
+LANGS="ar br cs de el es fr gl it lt nl pl pt ru si tr zh zh_CN"
+inherit qt4-r2
+
+DESCRIPTION="KDE dropbox client"
+HOMEPAGE="http://kdropbox.deuteros.es/"
+SRC_URI="mirror://sourceforge/kdropbox/${P}.tar.gz"
+LICENSE="GPL-3"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+for name in ${LANGS} ; do IUSE+="linguas_$name " ; done
+unset name
+
+DEPEND="kde-base/kdelibs"
+RDEPEND="${DEPEND}"
+
+src_install() {
+ qt4-r2_src_install
+
+ for lang in ${LANGS}; do
+ if ! has ${lang} ${LINGUAS}; then
+ rm -rf "${D}"/usr/share/locale/${lang} || die
+ fi
+ done
+}