diff options
author | Michael Palimaka <kensington@gentoo.org> | 2014-03-14 07:58:39 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2014-03-14 07:58:39 +0000 |
commit | 759f75b00d6c176e5faed031ddb1ec28790b2019 (patch) | |
tree | 64f3e39e001d85dcf16267c275c32732b49f67c0 /kde-misc/adjustableclock | |
parent | Whitespace. (diff) | |
download | gentoo-2-759f75b00d6c176e5faed031ddb1ec28790b2019.tar.gz gentoo-2-759f75b00d6c176e5faed031ddb1ec28790b2019.tar.bz2 gentoo-2-759f75b00d6c176e5faed031ddb1ec28790b2019.zip |
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'kde-misc/adjustableclock')
-rw-r--r-- | kde-misc/adjustableclock/ChangeLog | 8 | ||||
-rw-r--r-- | kde-misc/adjustableclock/adjustableclock-4.1.4.ebuild | 41 |
2 files changed, 48 insertions, 1 deletions
diff --git a/kde-misc/adjustableclock/ChangeLog b/kde-misc/adjustableclock/ChangeLog index a1296137604a..231093ae749c 100644 --- a/kde-misc/adjustableclock/ChangeLog +++ b/kde-misc/adjustableclock/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for kde-misc/adjustableclock # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/adjustableclock/ChangeLog,v 1.22 2014/03/04 20:52:31 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-misc/adjustableclock/ChangeLog,v 1.23 2014/03/14 07:58:39 kensington Exp $ + +*adjustableclock-4.1.4 (14 Mar 2014) + + 14 Mar 2014; Michael Palimaka <kensington@gentoo.org> + +adjustableclock-4.1.4.ebuild: + Version bump. 04 Mar 2014; Manuel Rüger <mrueg@gentoo.org> -adjustableclock-4.1.2.ebuild: Cleanup old. diff --git a/kde-misc/adjustableclock/adjustableclock-4.1.4.ebuild b/kde-misc/adjustableclock/adjustableclock-4.1.4.ebuild new file mode 100644 index 000000000000..70c232ebe260 --- /dev/null +++ b/kde-misc/adjustableclock/adjustableclock-4.1.4.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-misc/adjustableclock/adjustableclock-4.1.4.ebuild,v 1.1 2014/03/14 07:58:39 kensington Exp $ + +EAPI=5 + +KDE_LINGUAS_DIR="applet/locale" +KDE_LINGUAS="de et pl pt pt_BR sv tr uk" +inherit kde4-base + +DESCRIPTION="Plasmoid to show date and time in adjustable format using rich text." +HOMEPAGE="http://kde-look.org/content/show.php/Adjustable+Clock?content=92825" +SRC_URI="http://kde-look.org/CONTENT/content-files/92825-${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="4" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +DEPEND=" + $(add_kdebase_dep libplasmaclock) +" +RDEPEND="${DEPEND} + $(add_kdebase_dep plasma-workspace) +" + +src_prepare() { + kde4-base_src_prepare + + local lang + for lang in ${KDE_LINGUAS} ; do + if ! use linguas_${lang} ; then + rm ${KDE_LINGUAS_DIR}/${lang}.mo + fi + done +} + +pkg_postinst() { + elog "Version 4.0 (and newer) is not backwards compatible with 3.x." + elog "All custom formats need to be exported and manually converted." +} |