diff options
Diffstat (limited to 'app-office/koffice-libs')
-rw-r--r-- | app-office/koffice-libs/ChangeLog | 5 | ||||
-rw-r--r-- | app-office/koffice-libs/koffice-libs-1.6.3.ebuild | 70 |
2 files changed, 4 insertions, 71 deletions
diff --git a/app-office/koffice-libs/ChangeLog b/app-office/koffice-libs/ChangeLog index 0b6a3dce9df4..4c09edb19f7d 100644 --- a/app-office/koffice-libs/ChangeLog +++ b/app-office/koffice-libs/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-office/koffice-libs # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/koffice-libs/ChangeLog,v 1.98 2009/09/27 12:33:06 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/koffice-libs/ChangeLog,v 1.99 2009/11/01 09:33:06 abcd Exp $ + + 01 Nov 2009; Jonathan Callen <abcd@gentoo.org> -koffice-libs-1.6.3.ebuild: + Drop old version 27 Sep 2009; Brent Baude <ranger@gentoo.org> koffice-libs-1.6.3_p20090204.ebuild: diff --git a/app-office/koffice-libs/koffice-libs-1.6.3.ebuild b/app-office/koffice-libs/koffice-libs-1.6.3.ebuild deleted file mode 100644 index 6569194dd9db..000000000000 --- a/app-office/koffice-libs/koffice-libs-1.6.3.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# 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.ebuild,v 1.9 2009/06/30 21:08:53 tampakrap 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="3.5" -KEYWORDS="alpha amd64 hppa 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 -} |