diff options
author | Carsten Lohrke <carlo@gentoo.org> | 2006-05-13 00:31:40 +0000 |
---|---|---|
committer | Carsten Lohrke <carlo@gentoo.org> | 2006-05-13 00:31:40 +0000 |
commit | 26956a92acad183a6683ffa7e9104efc1dd280c0 (patch) | |
tree | b2ce319f8be2817c2e331d695dff60f4553fbebc /kde-base/kmail | |
parent | Marked stable on mips. (diff) | |
download | gentoo-2-26956a92acad183a6683ffa7e9104efc1dd280c0.tar.gz gentoo-2-26956a92acad183a6683ffa7e9104efc1dd280c0.tar.bz2 gentoo-2-26956a92acad183a6683ffa7e9104efc1dd280c0.zip |
Check if pinentry is built with Qt support.
(Portage version: 2.0.54-r2)
Diffstat (limited to 'kde-base/kmail')
-rw-r--r-- | kde-base/kmail/ChangeLog | 5 | ||||
-rw-r--r-- | kde-base/kmail/kmail-3.5.2-r3.ebuild | 11 |
2 files changed, 14 insertions, 2 deletions
diff --git a/kde-base/kmail/ChangeLog b/kde-base/kmail/ChangeLog index eda7eb2fbed9..7ef9247354bb 100644 --- a/kde-base/kmail/ChangeLog +++ b/kde-base/kmail/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for kde-base/kmail # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kmail/ChangeLog,v 1.59 2006/05/12 12:15:01 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kmail/ChangeLog,v 1.60 2006/05/13 00:31:40 carlo Exp $ + + 13 May 2006; Carsten Lohrke <carlo@gentoo.org> kmail-3.5.2-r3.ebuild: + Check if pinentry is built with Qt support. *kmail-3.5.2-r3 (12 May 2006) diff --git a/kde-base/kmail/kmail-3.5.2-r3.ebuild b/kde-base/kmail/kmail-3.5.2-r3.ebuild index 7b389b34a4ed..ddf56fd8b400 100644 --- a/kde-base/kmail/kmail-3.5.2-r3.ebuild +++ b/kde-base/kmail/kmail-3.5.2-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kmail/kmail-3.5.2-r3.ebuild,v 1.1 2006/05/12 12:15:01 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kmail/kmail-3.5.2-r3.ebuild,v 1.2 2006/05/13 00:31:40 carlo Exp $ KMNAME=kdepim MAXKDEVER=$PV @@ -58,6 +58,15 @@ PATCHES="${FILESDIR}/kmail-3.5.2-imap-fixes-2.diff ${FILESDIR}/kmail-3.5.2-misc-fixes-2.diff ${FILESDIR}/kmail-3.5-ham_spam_icons.diff" # This patch did not make it into svn, yet. + +pkg_setup() { + kde_pkg_setup + if use crypt && ! built_with_use app-crypt/pinentry qt ; then + eerror "app-crypt/pinentry needs to be built with qt use flag enabled." + die + fi +} + src_unpack() { kde-meta_src_unpack |