diff options
author | Carsten Lohrke <carlo@gentoo.org> | 2009-02-08 17:24:30 +0000 |
---|---|---|
committer | Carsten Lohrke <carlo@gentoo.org> | 2009-02-08 17:24:30 +0000 |
commit | 7ece8bab9f38532e66f20256acec528bc7eaefc2 (patch) | |
tree | edae16b53c00952578c613a5bd6ac96b30fb5b82 /app-office | |
parent | amd64/x86 stable, bug #245852 (diff) | |
download | gentoo-2-7ece8bab9f38532e66f20256acec528bc7eaefc2.tar.gz gentoo-2-7ece8bab9f38532e66f20256acec528bc7eaefc2.tar.bz2 gentoo-2-7ece8bab9f38532e66f20256acec528bc7eaefc2.zip |
Sync to branch plus various fixes.
(Portage version: 2.2_rc23/cvs/Linux i686)
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/koffice-libs/ChangeLog | 10 | ||||
-rw-r--r-- | app-office/koffice-libs/koffice-libs-1.6.3_p20090204.ebuild | 70 |
2 files changed, 78 insertions, 2 deletions
diff --git a/app-office/koffice-libs/ChangeLog b/app-office/koffice-libs/ChangeLog index 7a98fa54b1de..6b497ee28437 100644 --- a/app-office/koffice-libs/ChangeLog +++ b/app-office/koffice-libs/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-office/koffice-libs -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/koffice-libs/ChangeLog,v 1.84 2007/07/26 17:03:30 corsair Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/koffice-libs/ChangeLog,v 1.85 2009/02/08 17:24:30 carlo Exp $ + +*koffice-libs-1.6.3_p20090204 (08 Feb 2009) + + 08 Feb 2009; Carsten Lohrke <carlo@gentoo.org> + +koffice-libs-1.6.3_p20090204.ebuild: + Sync to branch plus various fixes. 26 Jul 2007; Markus Rothe <corsair@gentoo.org> koffice-libs-1.6.3.ebuild: Stable on ppc64; bug #178697 diff --git a/app-office/koffice-libs/koffice-libs-1.6.3_p20090204.ebuild b/app-office/koffice-libs/koffice-libs-1.6.3_p20090204.ebuild new file mode 100644 index 000000000000..a0555412a92b --- /dev/null +++ b/app-office/koffice-libs/koffice-libs-1.6.3_p20090204.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/koffice-libs/koffice-libs-1.6.3_p20090204.ebuild,v 1.1 2009/02/08 17:24:30 carlo Exp $ + +ARTS_REQUIRED="never" + +KMNAME=koffice +KMMODULE=lib +inherit kde-meta eutils + +DESCRIPTION="Shared KOffice libraries." +HOMEPAGE="http://www.koffice.org/" +LICENSE="GPL-2 LGPL-2" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="doc" + +RDEPEND="~app-office/koffice-data-1.6.3_p20090204 + virtual/python + dev-lang/ruby" + +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen )" + +KMEXTRA="interfaces/ + plugins/ + tools/ + filters/olefilters/ + filters/xsltfilter/ + filters/generic_wrapper/ + kounavail/ + doc/api/ + doc/koffice/ + doc/thesaurus/" + +KMEXTRACTONLY=" + kchart/kdchart/" + +need-kde 3.5 + +src_unpack() { + kde-meta_src_unpack unpack + + # Force the compilation of libkopainter. + sed -i 's:$(KOPAINTERDIR):kopainter:' "${S}/lib/Makefile.am" + + if ! [[ $(xhost >> /dev/null 2>/dev/null) ]] ; then + einfo "User ${USER} has no X access, disabling some tests." + sed -e "s:SUBDIRS = . tests:SUBDIRS = .:" -i lib/store/Makefile.am || die "sed failed" + sed -e "s:SUBDIRS = kohyphen . tests:SUBDIRS = kohyphen .:" -i lib/kotext/Makefile.am || die "sed failed" + fi + + kde-meta_src_unpack makefiles +} + +src_compile() { + local myconf="--enable-scripting --with-pythonfir=/usr/$(get_libdir)/python${PYVER}/site-packages" + kde-meta_src_compile + if use doc; then + make apidox || die + fi +} + +src_install() { + kde-meta_src_install + if use doc; then + make DESTDIR="${D}" install-apidox || die + fi +} |