diff options
author | Wulf Krueger <philantrop@gentoo.org> | 2008-03-11 00:05:36 +0000 |
---|---|---|
committer | Wulf Krueger <philantrop@gentoo.org> | 2008-03-11 00:05:36 +0000 |
commit | b240dc47c3c79afa857652c2a23b58756282b6c6 (patch) | |
tree | 19044d5b365abb9bdd9eca2167e7ce4ed7544c04 /kde-base/kcoloredit | |
parent | Version bump to KDE 4.0.2. (diff) | |
download | gentoo-2-b240dc47c3c79afa857652c2a23b58756282b6c6.tar.gz gentoo-2-b240dc47c3c79afa857652c2a23b58756282b6c6.tar.bz2 gentoo-2-b240dc47c3c79afa857652c2a23b58756282b6c6.zip |
Version bump to KDE 4.0.2.
(Portage version: 2.1.4.4)
Diffstat (limited to 'kde-base/kcoloredit')
-rw-r--r-- | kde-base/kcoloredit/ChangeLog | 8 | ||||
-rw-r--r-- | kde-base/kcoloredit/kcoloredit-4.0.1.ebuild | 45 |
2 files changed, 52 insertions, 1 deletions
diff --git a/kde-base/kcoloredit/ChangeLog b/kde-base/kcoloredit/ChangeLog index d6ab1e82f4d1..11d19e087bc5 100644 --- a/kde-base/kcoloredit/ChangeLog +++ b/kde-base/kcoloredit/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for kde-base/kcoloredit # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kcoloredit/ChangeLog,v 1.74 2008/03/04 05:05:42 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kcoloredit/ChangeLog,v 1.75 2008/03/11 00:05:36 philantrop Exp $ + +*kcoloredit-4.0.1 (10 Mar 2008) + + 10 Mar 2008; Wulf C. Krueger <philantrop@gentoo.org> + +kcoloredit-4.0.1.ebuild: + Version bump to KDE 4.0.2 04 Mar 2008; Jeroen Roovers <jer@gentoo.org> kcoloredit-3.5.8.ebuild, kcoloredit-3.5.9.ebuild: diff --git a/kde-base/kcoloredit/kcoloredit-4.0.1.ebuild b/kde-base/kcoloredit/kcoloredit-4.0.1.ebuild new file mode 100644 index 000000000000..3448559d9436 --- /dev/null +++ b/kde-base/kcoloredit/kcoloredit-4.0.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kcoloredit/kcoloredit-4.0.1.ebuild,v 1.1 2008/03/11 00:05:36 philantrop Exp $ + +EAPI="1" + +NEED_KDE="${PV}" +inherit kde4-base + +DESCRIPTION="KDE color selector/editor" +HOMEPAGE="http://www.kde.org/" +LICENSE="GPL-2 LGPL-2" +SRC_URI="mirror://kde/stable/${PV}/src/extragear/${P}.tar.bz2" + +KEYWORDS="~amd64 ~x86" +SLOT="kde-4" +IUSE="" + +LANGS="af ar be bg br ca cs cy da de el en_GB eo es et eu fa fi fr ga gl he hr +hu is it ja km lt lv mk ms nb nds ne nl nn oc pa pl pt pt_BR ro ru se sk sl sr +sv ta tg th tr uk vi xh zh_CN zh_HK zh_TW" + +for _X in ${LANGS}; do + IUSE="${IUSE} linguas_${_X}" +done + +PREFIX="${KDEDIR}" + +RDEPEND="" +DEPEND="${RDEPEND} + sys-devel/gettext" + +src_compile() { + comment_all_add_subdirectory po/ || die "sed to remove all linguas failed." + + local _X + for _X in ${LANGS}; do + if use linguas_${X}; then + sed -i -e "/add_subdirectory(\s*${X}\s*)\s*$/ s/^#DONOTCOMPILE //" \ + po/CMakeLists.txt || die "sed to uncomment ${lang} failed." + fi + done + + kde4-base_src_compile +} |