diff options
author | Andreas Hüttel <dilfridge@gentoo.org> | 2011-01-14 20:38:15 +0000 |
---|---|---|
committer | Andreas Hüttel <dilfridge@gentoo.org> | 2011-01-14 20:38:15 +0000 |
commit | f0107346f273f499d416445d0af8e582cc649fdc (patch) | |
tree | 6a1260343455c9ae7f7440748eeb559076bcc88e /app-office/kword | |
parent | arm stable (diff) | |
download | historical-f0107346f273f499d416445d0af8e582cc649fdc.tar.gz historical-f0107346f273f499d416445d0af8e582cc649fdc.tar.bz2 historical-f0107346f273f499d416445d0af8e582cc649fdc.zip |
KOffice version bump
Package-Manager: portage-2.1.9.31/cvs/Linux x86_64
RepoMan-Options: --force
Diffstat (limited to 'app-office/kword')
-rw-r--r-- | app-office/kword/ChangeLog | 10 | ||||
-rw-r--r-- | app-office/kword/kword-2.3.0.ebuild | 51 |
2 files changed, 59 insertions, 2 deletions
diff --git a/app-office/kword/ChangeLog b/app-office/kword/ChangeLog index ffe5bcea43f7..ed53c179e89b 100644 --- a/app-office/kword/ChangeLog +++ b/app-office/kword/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-office/kword -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/kword/ChangeLog,v 1.154 2010/11/16 23:19:16 dilfridge Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/kword/ChangeLog,v 1.155 2011/01/14 20:38:15 dilfridge Exp $ + +*kword-2.3.0 (14 Jan 2011) + + 14 Jan 2011; Andreas K. Huettel <dilfridge@gentoo.org> + +kword-2.3.0.ebuild: + Version bump 16 Nov 2010; Andreas K. Huettel <dilfridge@gentoo.org> -kword-2.1.0.ebuild: diff --git a/app-office/kword/kword-2.3.0.ebuild b/app-office/kword/kword-2.3.0.ebuild new file mode 100644 index 000000000000..42362393ecc5 --- /dev/null +++ b/app-office/kword/kword-2.3.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/kword/kword-2.3.0.ebuild,v 1.1 2011/01/14 20:38:15 dilfridge Exp $ + +EAPI=3 + +KMNAME="koffice" +KMMODULE="${PN}" +inherit kde4-meta + +DESCRIPTION="KOffice word processor" + +KEYWORDS="~amd64 ~x86" +IUSE="wpd" + +DEPEND=" + wpd? ( app-text/libwpd ) +" +RDEPEND="${DEPEND} + !app-text/wv2 +" + +KMEXTRA="filters/${KMMODULE}/ + filters/libmso/ +" + +KMEXTRACTONLY=" + KoConfig.h.cmake + filters/ + kspread/ + libs/ + plugins/ +" + +KMLOADLIBS="koffice-libs" + +src_configure() { + mycmakeargs=( + $(cmake-utils_use_with wpd) + ) + + kde4-meta_src_configure +} + +src_install() { + kde4-meta_src_install + + # this is already installed by koffice-data + rm -f "${D}/usr/include/config-opengl.h" + rm -f "${D}/usr/include/KoConfig.h" +} |