diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-12-01 18:03:05 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-12-01 18:03:05 +0000 |
commit | a0e48456c7c2abfa1c843ae1d4dea6c566f2b02b (patch) | |
tree | fc4865801f9def4e75543142370257b2780c8548 /app-office/kspread/kspread-1.6.1.ebuild | |
parent | Stable on hppa wrt #155545 (diff) | |
download | gentoo-2-a0e48456c7c2abfa1c843ae1d4dea6c566f2b02b.tar.gz gentoo-2-a0e48456c7c2abfa1c843ae1d4dea6c566f2b02b.tar.bz2 gentoo-2-a0e48456c7c2abfa1c843ae1d4dea6c566f2b02b.zip |
Version bump.
(Portage version: 2.1.2_rc2-r3)
Diffstat (limited to 'app-office/kspread/kspread-1.6.1.ebuild')
-rw-r--r-- | app-office/kspread/kspread-1.6.1.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/app-office/kspread/kspread-1.6.1.ebuild b/app-office/kspread/kspread-1.6.1.ebuild new file mode 100644 index 000000000000..ad4705e56b0f --- /dev/null +++ b/app-office/kspread/kspread-1.6.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/kspread/kspread-1.6.1.ebuild,v 1.1 2006/12/01 18:03:05 flameeyes Exp $ + +KMNAME=koffice +MAXKOFFICEVER=${PV} +inherit kde-meta eutils + +DESCRIPTION="KOffice spreadsheet application." +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/kchart) + $(deprange $PV $MAXKOFFICEVER app-office/kexi)" + +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 + libkochart interfaces + libkrossmain lib/kross/main + libkrossapi lib/kross/api + libkexidb kexi/kexidb + libkexidbparser kexi/kexidb/parser" + +KMEXTRACTONLY="lib/ + interfaces/ + filters/kexi + kexi/" + +KMCOMPILEONLY="filters/liboofilter" + +KMEXTRA="filters/kspread" + +need-kde 3.4 + +src_unpack() { + kde-meta_src_unpack unpack + + # We need to compile liboofilter first + echo "SUBDIRS = liboofilter kspread" > ${S}/filters/Makefile.am + + # Work around broken conditional + echo "SUBDIRS = applixspread csv dbase gnumeric latex opencalc html qpro excel kexi" > ${S}/filters/kspread/Makefile.am + + for i in $(find ${S}/lib -iname "*\.ui"); do + ${QTDIR}/bin/uic ${i} > ${i%.ui}.h + done + + kde-meta_src_unpack makefiles +} |