diff options
author | 2005-06-08 21:59:42 +0000 | |
---|---|---|
committer | 2005-06-08 21:59:42 +0000 | |
commit | 1184d261672cc80146d68ffa7f5a031a199da407 (patch) | |
tree | 3946371a1281b90f384a61117851789512c52b60 /kde-base/kdepim/kdepim-3.4.1-r1.ebuild | |
parent | add fix for raw pcm inside mov (diff) | |
download | historical-1184d261672cc80146d68ffa7f5a031a199da407.tar.gz historical-1184d261672cc80146d68ffa7f5a031a199da407.tar.bz2 historical-1184d261672cc80146d68ffa7f5a031a199da407.zip |
Fix regression in akregator (#95455).
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'kde-base/kdepim/kdepim-3.4.1-r1.ebuild')
-rw-r--r-- | kde-base/kdepim/kdepim-3.4.1-r1.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/kde-base/kdepim/kdepim-3.4.1-r1.ebuild b/kde-base/kdepim/kdepim-3.4.1-r1.ebuild new file mode 100644 index 000000000000..a1d3fcb839f2 --- /dev/null +++ b/kde-base/kdepim/kdepim-3.4.1-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim/kdepim-3.4.1-r1.ebuild,v 1.1 2005/06/08 21:59:42 greg_g Exp $ + +inherit kde-dist eutils + +DESCRIPTION="KDE PIM (Personal Information Management) apps: korganizer, kmail, knode..." + +KEYWORDS="~x86 ~amd64 ~sparc ~ppc ~ia64" +IUSE="crypt gnokii pda" + +DEPEND="~kde-base/kdebase-${PV} + >=dev-libs/cyrus-sasl-2 + pda? ( app-pda/pilot-link dev-libs/libmal ) + gnokii? ( app-mobilephone/gnokii ) + crypt? ( >=app-crypt/gpgme-0.9.0-r1 ) + !net-www/akregator" + +src_unpack() { + kde_src_unpack + + # Last minute fix. Applied for 3.4.2. + epatch "${FILESDIR}/${P}-kpilot-fix.patch" + + # Fix regression in akregator (kde bug 106345). Applied for 3.4.2. + epatch "${FILESDIR}/${P}-akregator-unread.patch" +} + +src_compile() { + # needed to detect pi-notepad.h, used by the kpilot notepad conduit. + use pda && myconf="${myconf} --with-extra-includes=/usr/include/libpisock" + + kde_src_compile +} |