diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2010-01-25 14:32:48 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2010-01-25 14:32:48 +0000 |
commit | b9dd8caa02d0d7e690f6484a3c1853cb5a8bd0b5 (patch) | |
tree | 9d9c2e7e2b15d3890e88e568dc715cc25487ed60 /kde-base/kate | |
parent | Version bump KDE 4.3.5 (diff) | |
download | gentoo-2-b9dd8caa02d0d7e690f6484a3c1853cb5a8bd0b5.tar.gz gentoo-2-b9dd8caa02d0d7e690f6484a3c1853cb5a8bd0b5.tar.bz2 gentoo-2-b9dd8caa02d0d7e690f6484a3c1853cb5a8bd0b5.zip |
Version bump KDE 4.3.5
(Portage version: 2.2_rc61/cvs/Linux x86_64, RepoMan options: --force)
Diffstat (limited to 'kde-base/kate')
-rw-r--r-- | kde-base/kate/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/kate/kate-4.3.5.ebuild | 45 |
2 files changed, 51 insertions, 1 deletions
diff --git a/kde-base/kate/ChangeLog b/kde-base/kate/ChangeLog index 0c4cc76335d9..24f6c9e943e1 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.164 2010/01/23 21:18:35 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kate/ChangeLog,v 1.165 2010/01/25 14:32:48 scarabeus Exp $ + +*kate-4.3.5 (25 Jan 2010) + + 25 Jan 2010; Tomáš Chvátal <scarabeus@gentoo.org> +kate-4.3.5.ebuild: + Version bump 23 Jan 2010; Jonathan Callen <abcd@gentoo.org> kate-4.3.4.ebuild: Keyword ~amd64-linux/~x86-linux diff --git a/kde-base/kate/kate-4.3.5.ebuild b/kde-base/kate/kate-4.3.5.ebuild new file mode 100644 index 000000000000..b22da13409d1 --- /dev/null +++ b/kde-base/kate/kate-4.3.5.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.3.5.ebuild,v 1.1 2010/01/25 14:32:48 scarabeus Exp $ + +EAPI="2" + +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 +} |