summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2014-11-13 08:40:49 +0000
committerMichael Palimaka <kensington@gentoo.org>2014-11-13 08:40:49 +0000
commit63b99f7fa2ce27ed6291f91241bf8394ab0b40ff (patch)
tree8ef159fe4232584c2dd4eade8c5e54f95592676b
parentdev-python/networkx: Some Prefix love (diff)
downloadgentoo-2-63b99f7fa2ce27ed6291f91241bf8394ab0b40ff.tar.gz
gentoo-2-63b99f7fa2ce27ed6291f91241bf8394ab0b40ff.tar.bz2
gentoo-2-63b99f7fa2ce27ed6291f91241bf8394ab0b40ff.zip
Version bump wrt bug #528252. Fixes CVE-2014-8483.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
-rw-r--r--net-irc/konversation/ChangeLog8
-rw-r--r--net-irc/konversation/konversation-1.5.1.ebuild37
2 files changed, 44 insertions, 1 deletions
diff --git a/net-irc/konversation/ChangeLog b/net-irc/konversation/ChangeLog
index 455636b776ca..c273c1779ccb 100644
--- a/net-irc/konversation/ChangeLog
+++ b/net-irc/konversation/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-irc/konversation
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/konversation/ChangeLog,v 1.116 2014/03/31 20:04:31 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/konversation/ChangeLog,v 1.117 2014/11/13 08:40:49 kensington Exp $
+
+*konversation-1.5.1 (13 Nov 2014)
+
+ 13 Nov 2014; Michael Palimaka <kensington@gentoo.org>
+ +konversation-1.5.1.ebuild:
+ Version bump wrt bug #528252. Fixes CVE-2014-8483.
31 Mar 2014; Johannes Huber <johu@gentoo.org> -konversation-1.4.ebuild:
Remove old.
diff --git a/net-irc/konversation/konversation-1.5.1.ebuild b/net-irc/konversation/konversation-1.5.1.ebuild
new file mode 100644
index 000000000000..aa9ef7ba3cb3
--- /dev/null
+++ b/net-irc/konversation/konversation-1.5.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/konversation/konversation-1.5.1.ebuild,v 1.1 2014/11/13 08:40:49 kensington Exp $
+
+EAPI=5
+
+KDE_LINGUAS="bg bs ca ca@valencia cs da de el en_GB es et fi fr gl he hu it ja
+kk km ko lt nb nds nl pa pl pt pt_BR ru si sk sl sr sr@ijekavian
+sr@ijekavianlatin sr@latin sv tr uk zh_CN zh_TW"
+KDE_HANDBOOK="optional"
+inherit kde4-base
+
+DESCRIPTION="A user friendly IRC Client for KDE4"
+HOMEPAGE="http://kde.org/applications/internet/konversation/ http://konversation.kde.org"
+SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
+
+LICENSE="GPL-2 handbook? ( FDL-1.2 )"
+SLOT="4"
+KEYWORDS="~amd64 ~x86"
+IUSE="+crypt debug"
+
+DEPEND="
+ $(add_kdebase_dep kdepimlibs)
+ media-libs/phonon[qt4]
+ crypt? ( app-crypt/qca:2 )
+"
+RDEPEND="${DEPEND}
+ crypt? ( app-crypt/qca-ossl:2 )
+"
+
+src_configure() {
+ local mycmakeargs=(
+ $(cmake-utils_use_with crypt QCA2)
+ )
+
+ kde4-base_src_configure
+}