summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Hüttel <dilfridge@gentoo.org>2011-06-02 21:58:00 +0000
committerAndreas Hüttel <dilfridge@gentoo.org>2011-06-02 21:58:00 +0000
commit0613108b68fd0e56a2bd021bc73ba8251e25fc12 (patch)
tree5312bbd1b79501d30ee0dba82451de17ccd2af46 /kde-base/okular
parentMemphis is also needed for libchamplain (diff)
downloadhistorical-0613108b68fd0e56a2bd021bc73ba8251e25fc12.tar.gz
historical-0613108b68fd0e56a2bd021bc73ba8251e25fc12.tar.bz2
historical-0613108b68fd0e56a2bd021bc73ba8251e25fc12.zip
Drop KDE 4.4
Package-Manager: portage-2.1.9.49/cvs/Linux x86_64 RepoMan-Options: --force
Diffstat (limited to 'kde-base/okular')
-rw-r--r--kde-base/okular/ChangeLog7
-rw-r--r--kde-base/okular/files/okular-4.4.5-overflow.patch30
-rw-r--r--kde-base/okular/okular-4.4.5-r1.ebuild51
-rw-r--r--kde-base/okular/okular-4.4.5-r2.ebuild53
-rw-r--r--kde-base/okular/okular-4.4.5.ebuild51
5 files changed, 6 insertions, 186 deletions
diff --git a/kde-base/okular/ChangeLog b/kde-base/okular/ChangeLog
index 3bc6f0c00d33..2fa92f04a5c5 100644
--- a/kde-base/okular/ChangeLog
+++ b/kde-base/okular/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for kde-base/okular
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/okular/ChangeLog,v 1.98 2011/06/01 19:19:06 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/okular/ChangeLog,v 1.99 2011/06/02 21:57:57 dilfridge Exp $
+
+ 02 Jun 2011; Andreas K. Huettel <dilfridge@gentoo.org> -okular-4.4.5.ebuild,
+ -okular-4.4.5-r1.ebuild, -okular-4.4.5-r2.ebuild,
+ -files/okular-4.4.5-overflow.patch:
+ Drop KDE-4.4
01 Jun 2011; Brent Baude <ranger@gentoo.org> okular-4.6.2.ebuild:
Marking okular-4.6.2 ppc stable for bug 354033
diff --git a/kde-base/okular/files/okular-4.4.5-overflow.patch b/kde-base/okular/files/okular-4.4.5-overflow.patch
deleted file mode 100644
index 478bb4d4359e..000000000000
--- a/kde-base/okular/files/okular-4.4.5-overflow.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-Index: okular/generators/plucker/unpluck/image.cpp
-===================================================================
---- okular/generators/plucker/unpluck/image.cpp (Revision 1167825)
-+++ okular/generators/plucker/unpluck/image.cpp (Revision 1167826)
-@@ -289,8 +289,23 @@
- for (j = 0; j < bytes_per_row;) {
- incount = *palm_ptr++;
- inval = *palm_ptr++;
-- memset (rowbuf + j, inval, incount);
-- j += incount;
-+ if (incount + j <= bytes_per_row * width)
-+ {
-+ memset (rowbuf + j, inval, incount);
-+ j += incount;
-+ }
-+ else
-+ {
-+ free (rowbuf);
-+ free (lastrow);
-+ free (jpeg_row);
-+
-+ jpeg_destroy_compress (&cinfo);
-+
-+ fclose( outfile );
-+
-+ return false;
-+ }
- }
- }
- else if ((flags & PALM_IS_COMPRESSED_FLAG)
diff --git a/kde-base/okular/okular-4.4.5-r1.ebuild b/kde-base/okular/okular-4.4.5-r1.ebuild
deleted file mode 100644
index 1fa8ed62c7b0..000000000000
--- a/kde-base/okular/okular-4.4.5-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/okular/okular-4.4.5-r1.ebuild,v 1.3 2010/11/09 02:01:23 jmbsvicetto Exp $
-
-EAPI="3"
-
-KMNAME="kdegraphics"
-inherit kde4-meta
-
-DESCRIPTION="Okular is an universal document viewer based on KPDF for KDE 4."
-KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="chm crypt debug djvu ebook +handbook +jpeg +ps +pdf +tiff"
-
-DEPEND="
- media-libs/freetype
- sys-libs/zlib
- chm? ( dev-libs/chmlib )
- crypt? ( app-crypt/qca:2 )
- djvu? ( app-text/djvu )
- ebook? ( app-text/ebook-tools )
- jpeg? ( virtual/jpeg:0 )
- pdf? ( >=app-text/poppler-0.12.3-r3[lcms,qt4,-exceptions] )
- ps? ( app-text/libspectre )
- tiff? ( media-libs/tiff )
-"
-RDEPEND="${DEPEND}"
-
-KMEXTRACTONLY="libs/mobipocket"
-
-src_configure() {
- mycmakeargs=(
- $(cmake-utils_use_with chm)
- $(cmake-utils_use_with crypt QCA2)
- $(cmake-utils_use_with djvu DjVuLibre)
- $(cmake-utils_use_with ebook EPub)
- $(cmake-utils_use_with jpeg)
- $(cmake-utils_use_with ps LibSpectre)
- $(cmake-utils_use_with pdf PopplerQt4)
- $(cmake-utils_use_with pdf Poppler)
- $(cmake-utils_use_with tiff)
- )
-
- kde4-meta_src_configure
-}
-
-src_install() {
- insinto "${KDEDIR}"/share/apps/cmake/modules
- doins "${S}"/cmake/modules/FindOkular.cmake
-
- kde4-meta_src_install
-}
diff --git a/kde-base/okular/okular-4.4.5-r2.ebuild b/kde-base/okular/okular-4.4.5-r2.ebuild
deleted file mode 100644
index 3ab65079af97..000000000000
--- a/kde-base/okular/okular-4.4.5-r2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/okular/okular-4.4.5-r2.ebuild,v 1.2 2011/01/11 12:34:41 xarthisius Exp $
-
-EAPI="3"
-
-KMNAME="kdegraphics"
-inherit kde4-meta
-
-DESCRIPTION="Okular is an universal document viewer based on KPDF for KDE 4."
-KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="chm crypt debug djvu ebook +handbook +jpeg +ps +pdf +tiff"
-
-DEPEND="
- media-libs/freetype
- sys-libs/zlib
- chm? ( dev-libs/chmlib )
- crypt? ( app-crypt/qca:2 )
- djvu? ( app-text/djvu )
- ebook? ( app-text/ebook-tools )
- jpeg? ( virtual/jpeg:0 )
- pdf? ( >=app-text/poppler-0.12.3-r3[lcms,qt4,-exceptions] )
- ps? ( app-text/libspectre )
- tiff? ( media-libs/tiff )
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${P}"-overflow.patch )
-
-KMEXTRACTONLY="libs/mobipocket"
-
-src_configure() {
- mycmakeargs=(
- $(cmake-utils_use_with chm)
- $(cmake-utils_use_with crypt QCA2)
- $(cmake-utils_use_with djvu DjVuLibre)
- $(cmake-utils_use_with ebook EPub)
- $(cmake-utils_use_with jpeg)
- $(cmake-utils_use_with ps LibSpectre)
- $(cmake-utils_use_with pdf PopplerQt4)
- $(cmake-utils_use_with pdf Poppler)
- $(cmake-utils_use_with tiff)
- )
-
- kde4-meta_src_configure
-}
-
-src_install() {
- insinto "${KDEDIR}"/share/apps/cmake/modules
- doins "${S}"/cmake/modules/FindOkular.cmake
-
- kde4-meta_src_install
-}
diff --git a/kde-base/okular/okular-4.4.5.ebuild b/kde-base/okular/okular-4.4.5.ebuild
deleted file mode 100644
index 7f940c0386c0..000000000000
--- a/kde-base/okular/okular-4.4.5.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/okular/okular-4.4.5.ebuild,v 1.7 2010/11/09 08:50:57 ssuominen Exp $
-
-EAPI="3"
-
-KMNAME="kdegraphics"
-inherit kde4-meta
-
-DESCRIPTION="Okular is an universal document viewer based on KPDF for KDE 4."
-KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="chm crypt debug djvu ebook +handbook +jpeg +ps +pdf +tiff"
-
-DEPEND="
- media-libs/freetype
- sys-libs/zlib
- chm? ( dev-libs/chmlib )
- crypt? ( app-crypt/qca:2 )
- djvu? ( app-text/djvu )
- ebook? ( app-text/ebook-tools )
- jpeg? ( virtual/jpeg )
- pdf? ( >=app-text/poppler-0.12.3-r3[lcms,qt4,-exceptions] )
- ps? ( app-text/libspectre )
- tiff? ( media-libs/tiff )
-"
-RDEPEND="${DEPEND}"
-
-KMEXTRACTONLY="libs/mobipocket"
-
-src_configure() {
- mycmakeargs=(
- $(cmake-utils_use_with chm)
- $(cmake-utils_use_with crypt QCA2)
- $(cmake-utils_use_with djvu DjVuLibre)
- $(cmake-utils_use_with ebook EPub)
- $(cmake-utils_use_with jpeg)
- $(cmake-utils_use_with ps LibSpectre)
- $(cmake-utils_use_with pdf PopplerQt4)
- $(cmake-utils_use_with pdf Poppler)
- $(cmake-utils_use_with tiff)
- )
-
- kde4-meta_src_configure
-}
-
-src_install() {
- insinto "${KDEDIR}"/share/apps/cmake/modules
- doins "${S}"/cmake/modules/FindOkular.cmake
-
- kde4-meta_src_install
-}