Gentoo Archives: gentoo-commits

From: "Andreas HAttel (dilfridge)" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/okular: ChangeLog okular-4.4.5-r2.ebuild
Date: Thu, 30 Dec 2010 13:55:21
Message-Id: 20101230135511.B6E6720054@flycatcher.gentoo.org
1 dilfridge 10/12/30 13:55:11
2
3 Modified: ChangeLog
4 Added: okular-4.4.5-r2.ebuild
5 Log:
6 Add fix for Memory Corruption Vulnerability (CVE-2010-2575, bug 334469), straight to stable
7
8 (Portage version: 2.1.9.26/cvs/Linux i686, RepoMan options: --force)
9
10 Revision Changes Path
11 1.89 kde-base/okular/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/okular/ChangeLog?rev=1.89&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/okular/ChangeLog?rev=1.89&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/okular/ChangeLog?r1=1.88&r2=1.89
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/kde-base/okular/ChangeLog,v
20 retrieving revision 1.88
21 retrieving revision 1.89
22 diff -u -r1.88 -r1.89
23 --- ChangeLog 2 Dec 2010 21:16:16 -0000 1.88
24 +++ ChangeLog 30 Dec 2010 13:55:11 -0000 1.89
25 @@ -1,6 +1,13 @@
26 # ChangeLog for kde-base/okular
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/kde-base/okular/ChangeLog,v 1.88 2010/12/02 21:16:16 alexxy Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/kde-base/okular/ChangeLog,v 1.89 2010/12/30 13:55:11 dilfridge Exp $
30 +
31 +*okular-4.4.5-r2 (30 Dec 2010)
32 +
33 + 30 Dec 2010; Andreas K. Huettel <dilfridge@g.o>
34 + +okular-4.4.5-r2.ebuild, +files/okular-4.4.5-overflow.patch:
35 + Add fix for Memory Corruption Vulnerability (CVE-2010-2575, bug 334469),
36 + straight to stable
37
38 *okular-4.5.4 (02 Dec 2010)
39
40
41
42
43 1.1 kde-base/okular/okular-4.4.5-r2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/okular/okular-4.4.5-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/okular/okular-4.4.5-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: okular-4.4.5-r2.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/kde-base/okular/okular-4.4.5-r2.ebuild,v 1.1 2010/12/30 13:55:11 dilfridge Exp $
53
54 EAPI="3"
55
56 KMNAME="kdegraphics"
57 inherit kde4-meta
58
59 DESCRIPTION="Okular is an universal document viewer based on KPDF for KDE 4."
60 KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
61 IUSE="chm crypt debug djvu ebook +handbook +jpeg +ps +pdf +tiff"
62
63 DEPEND="
64 media-libs/freetype
65 sys-libs/zlib
66 chm? ( dev-libs/chmlib )
67 crypt? ( app-crypt/qca:2 )
68 djvu? ( app-text/djvu )
69 ebook? ( app-text/ebook-tools )
70 jpeg? ( virtual/jpeg:0 )
71 pdf? ( >=app-text/poppler-0.12.3-r3[lcms,qt4,-exceptions] )
72 ps? ( app-text/libspectre )
73 tiff? ( media-libs/tiff )
74 "
75 RDEPEND="${DEPEND}"
76
77 PATCHES=( "${FILESDIR}/${P}"-overflow.patch )
78
79 KMEXTRACTONLY="libs/mobipocket"
80
81 src_configure() {
82 mycmakeargs=(
83 $(cmake-utils_use_with chm)
84 $(cmake-utils_use_with crypt QCA2)
85 $(cmake-utils_use_with djvu DjVuLibre)
86 $(cmake-utils_use_with ebook EPub)
87 $(cmake-utils_use_with jpeg)
88 $(cmake-utils_use_with ps LibSpectre)
89 $(cmake-utils_use_with pdf PopplerQt4)
90 $(cmake-utils_use_with pdf Poppler)
91 $(cmake-utils_use_with tiff)
92 )
93
94 kde4-meta_src_configure
95 }
96
97 src_install() {
98 insinto "${KDEDIR}"/share/apps/cmake/modules
99 doins "${S}"/cmake/modules/FindOkular.cmake
100
101 kde4-meta_src_install
102 }