diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-02-16 11:35:41 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-02-16 11:35:41 +0000 |
commit | c81253268bdf09155c26409a5f5da41031e5314b (patch) | |
tree | 82eee044bfd0d1f72443f8723bce8500903f4ebc /app-office/kword | |
parent | Add missing pkgconfig dependency, closes bug #167159 reported by Alberto Fias... (diff) | |
download | historical-c81253268bdf09155c26409a5f5da41031e5314b.tar.gz historical-c81253268bdf09155c26409a5f5da41031e5314b.tar.bz2 historical-c81253268bdf09155c26409a5f5da41031e5314b.zip |
Bump to 1.6.2 pre-release.
Package-Manager: portage-2.1.2-r9
Diffstat (limited to 'app-office/kword')
-rw-r--r-- | app-office/kword/ChangeLog | 7 | ||||
-rw-r--r-- | app-office/kword/files/digest-kword-1.6.2 | 3 | ||||
-rw-r--r-- | app-office/kword/kword-1.6.2.ebuild | 57 |
3 files changed, 66 insertions, 1 deletions
diff --git a/app-office/kword/ChangeLog b/app-office/kword/ChangeLog index 2e5e441e59bf..741430e99240 100644 --- a/app-office/kword/ChangeLog +++ b/app-office/kword/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-office/kword # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/kword/ChangeLog,v 1.91 2007/02/15 00:58:49 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/kword/ChangeLog,v 1.92 2007/02/16 11:35:13 flameeyes Exp $ + +*kword-1.6.2 (16 Feb 2007) + + 16 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> +kword-1.6.2.ebuild: + Bump to 1.6.2 pre-release. 15 Feb 2007; Bryan Østergaard <kloeri@gentoo.org> kword-1.6.1-r1.ebuild: Stable on Alpha, bug 166246. diff --git a/app-office/kword/files/digest-kword-1.6.2 b/app-office/kword/files/digest-kword-1.6.2 new file mode 100644 index 000000000000..cfd7d14fcad4 --- /dev/null +++ b/app-office/kword/files/digest-kword-1.6.2 @@ -0,0 +1,3 @@ +MD5 74ef62a5f8f766fe8192d5b7d65a3928 koffice-1.6.2.tar.bz2 57049103 +RMD160 fb4ef5870870d80481a4a9d2864199428f495460 koffice-1.6.2.tar.bz2 57049103 +SHA256 fa5ca02eba02219d34c3c6efff92bf767060b4b1343da56eb63139661d53f380 koffice-1.6.2.tar.bz2 57049103 diff --git a/app-office/kword/kword-1.6.2.ebuild b/app-office/kword/kword-1.6.2.ebuild new file mode 100644 index 000000000000..9016b0fb7d93 --- /dev/null +++ b/app-office/kword/kword-1.6.2.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/kword/kword-1.6.2.ebuild,v 1.1 2007/02/16 11:35:13 flameeyes Exp $ + +KMNAME=koffice +MAXKOFFICEVER=${PV} +inherit kde-meta eutils + +DESCRIPTION="KOffice word processor." +HOMEPAGE="http://www.koffice.org/" +LICENSE="GPL-2 LGPL-2" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND="$(deprange $PV $MAXKOFFICEVER app-office/koffice-libs) + $(deprange $PV $MAXKOFFICEVER app-office/kspread) + >=app-text/wv2-0.1.8 + >=media-gfx/imagemagick-5.5.2 + >=app-text/libwpd-0.8.2" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +KMCOPYLIB="libkformula lib/kformula + libkofficecore lib/kofficecore + libkofficeui lib/kofficeui + libkopainter lib/kopainter + libkotext lib/kotext + libkwmf lib/kwmf + libkowmf lib/kwmf + libkstore lib/store + libkspreadcommon kspread" + +KMEXTRACTONLY=" + lib/ + kspread/" + +KMCOMPILEONLY="filters/liboofilter" + +KMEXTRA="filters/kword" + +need-kde 3.4 + +src_unpack() { + kde-meta_src_unpack unpack + + # We need to compile libs first + echo "SUBDIRS = liboofilter kword" > $S/filters/Makefile.am + + for i in $(find ${S}/lib -iname "*\.ui"); do + ${QTDIR}/bin/uic ${i} > ${i%.ui}.h + done + + kde-meta_src_unpack makefiles +} |