diff options
author | Theo Chatzimichos <tampakrap@gentoo.org> | 2010-03-02 15:46:06 +0000 |
---|---|---|
committer | Theo Chatzimichos <tampakrap@gentoo.org> | 2010-03-02 15:46:06 +0000 |
commit | d642c5620679d2074b8a2b4c8392eee48e2d0bbb (patch) | |
tree | 599bafd45b8b2146c25e4b5aadd2f80ea97cee23 /kde-base | |
parent | Version bump KDE 4.4.1 (diff) | |
download | gentoo-2-d642c5620679d2074b8a2b4c8392eee48e2d0bbb.tar.gz gentoo-2-d642c5620679d2074b8a2b4c8392eee48e2d0bbb.tar.bz2 gentoo-2-d642c5620679d2074b8a2b4c8392eee48e2d0bbb.zip |
Version bump KDE 4.4.1
(Portage version: 2.2_rc63/cvs/Linux x86_64, RepoMan options: --force)
Diffstat (limited to 'kde-base')
-rw-r--r-- | kde-base/kate/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/kate/kate-4.4.1.ebuild | 45 |
2 files changed, 51 insertions, 1 deletions
diff --git a/kde-base/kate/ChangeLog b/kde-base/kate/ChangeLog index 13b9315ffe70..c4de85f12d37 100644 --- a/kde-base/kate/ChangeLog +++ b/kde-base/kate/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/kate # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kate/ChangeLog,v 1.167 2010/02/20 10:05:06 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kate/ChangeLog,v 1.168 2010/03/02 15:46:06 tampakrap Exp $ + +*kate-4.4.1 (02 Mar 2010) + + 02 Mar 2010; Theo Chatzimichos <tampakrap@gentoo.org> +kate-4.4.1.ebuild: + Version bump 20 Feb 2010; Samuli Suominen <ssuominen@gentoo.org> kate-4.3.5.ebuild: amd64/x86 stable wrt #300393 diff --git a/kde-base/kate/kate-4.4.1.ebuild b/kde-base/kate/kate-4.4.1.ebuild new file mode 100644 index 000000000000..4b5203c6f411 --- /dev/null +++ b/kde-base/kate/kate-4.4.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kate/kate-4.4.1.ebuild,v 1.1 2010/03/02 15:46:06 tampakrap Exp $ + +EAPI="3" + +KMNAME="kdesdk" +inherit kde4-meta + +DESCRIPTION="Kate is an MDI texteditor." +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="debug +handbook +plasma" + +DEPEND=" + dev-libs/libxml2 + dev-libs/libxslt +" +RDEPEND="${DEPEND}" + +src_unpack() { + if use handbook; then + KMEXTRA="doc/kate-plugins" + fi + + kde4-meta_src_unpack +} + +src_configure() { + mycmakeargs=( + $(cmake-utils_use_with plasma) + ) + + kde4-meta_src_configure +} + +pkg_postinst() { + kde4-meta_pkg_postinst + + if ! has_version kde-base/kaddressbook:${SLOT}; then + echo + elog "File templates plugin requires kde-base/kaddressbook:${SLOT}." + elog "Please install it if you plan to use this plugin." + echo + fi +} |