diff options
Diffstat (limited to 'app-office/kword/kword-1.3.5.ebuild')
-rw-r--r-- | app-office/kword/kword-1.3.5.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/app-office/kword/kword-1.3.5.ebuild b/app-office/kword/kword-1.3.5.ebuild new file mode 100644 index 000000000000..b4d39de6f9ad --- /dev/null +++ b/app-office/kword/kword-1.3.5.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/kword/kword-1.3.5.ebuild,v 1.1 2005/01/29 13:26:21 motaboy Exp $ + +KMNAME=koffice +MAXKOFFICEVER=1.3.5 +inherit kde-meta eutils + +DESCRIPTION="KOffice Word Processor" +HOMEPAGE="http://www.koffice.org/" +SRC_URI="$SRC_URI mirror://kde/stable/${KMNAME}/src/${KMNAME}-${PV}.tar.bz2" +LICENSE="GPL-2 LGPL-2" +KEYWORDS="~x86" +IUSE="" +SLOT="0" +DEPEND="$(deprange $PV $MAXKOFFICEVER app-office/koffice-libs) + >=app-text/wv2-0.1.8 + >=media-gfx/imagemagick-5.4.5 + dev-util/pkgconfig" +PATCHES="$FILESDIR/xpdf_security_integer_overflow_2.diff" + +KMCOPYLIB=" + libkformula lib/kformula + libkofficecore lib/kofficecore + libkofficeui lib/kofficeui + libkopainter lib/kopainter + libkoscript lib/koscript + libkospell lib/kospell + libkotext lib/kotext + libkwmf lib/kwmf + libkowmf lib/kwmf + libkstore lib/store" + +KMEXTRACTONLY="lib/" + +KMCOMPILEONLY="filters/liboofilter" + +KMEXTRA="filters/kword" + +need-kde 3.1 + +src_unpack() { + kde-meta_src_unpack unpack + + epatch ${FILESDIR}/koffice_1_3_xpdf_buffer_overflow.diff + epatch ${FILESDIR}/CAN-2005-0064.patch + + # We need to compile first liboofilter because it's needed by the kword's OOo filters + echo "SUBDIRS = liboofilter kword" > $S/filters/Makefile.am + + kde-meta_src_unpack makefiles +} + |