diff options
author | Carsten Lohrke <carlo@gentoo.org> | 2007-06-08 17:21:27 +0000 |
---|---|---|
committer | Carsten Lohrke <carlo@gentoo.org> | 2007-06-08 17:21:27 +0000 |
commit | 0bc40b866518e3b5d9a406d681479d7b5b56a8a4 (patch) | |
tree | c7f78c53efa389120cf077b60be4e1b47bd962e3 /app-office | |
parent | Version bump. (diff) | |
download | gentoo-2-0bc40b866518e3b5d9a406d681479d7b5b56a8a4.tar.gz gentoo-2-0bc40b866518e3b5d9a406d681479d7b5b56a8a4.tar.bz2 gentoo-2-0bc40b866518e3b5d9a406d681479d7b5b56a8a4.zip |
Version bump.
(Portage version: 2.1.2.9)
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/koffice-libs/ChangeLog | 7 | ||||
-rw-r--r-- | app-office/koffice-libs/files/digest-koffice-libs-1.6.3 | 3 | ||||
-rw-r--r-- | app-office/koffice-libs/koffice-libs-1.6.3.ebuild | 70 |
3 files changed, 79 insertions, 1 deletions
diff --git a/app-office/koffice-libs/ChangeLog b/app-office/koffice-libs/ChangeLog index b96c19dfb36d..d8c06155b31e 100644 --- a/app-office/koffice-libs/ChangeLog +++ b/app-office/koffice-libs/ChangeLog @@ -1,6 +1,11 @@ # 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.75 2007/04/19 10:34:11 carlo Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/koffice-libs/ChangeLog,v 1.76 2007/06/08 17:21:27 carlo Exp $ + +*koffice-libs-1.6.3 (08 Jun 2007) + + 08 Jun 2007; Carsten Lohrke <carlo@gentoo.org> +koffice-libs-1.6.3.ebuild: + Version bump. 19 Apr 2007; Carsten Lohrke <carlo@gentoo.org> koffice-libs-1.6.2.ebuild: Care for some tests. diff --git a/app-office/koffice-libs/files/digest-koffice-libs-1.6.3 b/app-office/koffice-libs/files/digest-koffice-libs-1.6.3 new file mode 100644 index 000000000000..0dc1fc75f716 --- /dev/null +++ b/app-office/koffice-libs/files/digest-koffice-libs-1.6.3 @@ -0,0 +1,3 @@ +MD5 386d388094734f9759977c3267098e30 koffice-1.6.3.tar.bz2 56829391 +RMD160 e474ba48fa983fafb61ad58fb79cddda69ec6908 koffice-1.6.3.tar.bz2 56829391 +SHA256 c3975f0a59f50aaa5547f1709b6fad54f746fd06815859b374676b426dce12cb koffice-1.6.3.tar.bz2 56829391 diff --git a/app-office/koffice-libs/koffice-libs-1.6.3.ebuild b/app-office/koffice-libs/koffice-libs-1.6.3.ebuild new file mode 100644 index 000000000000..47e45fd0beed --- /dev/null +++ b/app-office/koffice-libs/koffice-libs-1.6.3.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2007 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.ebuild,v 1.1 2007/06/08 17:21:27 carlo Exp $ + +MAXKOFFICEVER=${PV} +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 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="doc" + +RDEPEND="$(deprange $PV $MAXKOFFICEVER app-office/koffice-data) + virtual/python + dev-lang/ruby" + +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) + dev-util/pkgconfig" + +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 +} |