diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2005-09-08 16:48:45 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2005-09-08 16:48:45 +0000 |
commit | 2685a0f33ee908679127f78e5ead35018057643d (patch) | |
tree | c4b1b965a028916e5c67cc9155e5bd306338c8ee /app-office | |
parent | Mark 1.02 stable on alpha (diff) | |
download | gentoo-2-2685a0f33ee908679127f78e5ead35018057643d.tar.gz gentoo-2-2685a0f33ee908679127f78e5ead35018057643d.tar.bz2 gentoo-2-2685a0f33ee908679127f78e5ead35018057643d.zip |
Removing old ebuild
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/gnumeric/files/digest-gnumeric-1.4.3-r1 | 1 | ||||
-rw-r--r-- | app-office/gnumeric/gnumeric-1.4.3-r1.ebuild | 115 |
2 files changed, 0 insertions, 116 deletions
diff --git a/app-office/gnumeric/files/digest-gnumeric-1.4.3-r1 b/app-office/gnumeric/files/digest-gnumeric-1.4.3-r1 deleted file mode 100644 index b63fff8bda02..000000000000 --- a/app-office/gnumeric/files/digest-gnumeric-1.4.3-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 b684eec48b1696d7a8d7152d1e17741c gnumeric-1.4.3.tar.bz2 13756646 diff --git a/app-office/gnumeric/gnumeric-1.4.3-r1.ebuild b/app-office/gnumeric/gnumeric-1.4.3-r1.ebuild deleted file mode 100644 index 92cc0e952659..000000000000 --- a/app-office/gnumeric/gnumeric-1.4.3-r1.ebuild +++ /dev/null @@ -1,115 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.4.3-r1.ebuild,v 1.9 2005/08/27 17:46:01 gmsoft Exp $ - -inherit virtualx gnome2 eutils flag-o-matic - -DESCRIPTION="Gnumeric, the GNOME Spreadsheet" -HOMEPAGE="http://www.gnome.org/projects/gnumeric/" -LICENSE="GPL-2" - -SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86" - -#IUSE="libgda gnomedb python bonobo" -IUSE="libgda python gnome" - -RDEPEND=">=dev-libs/glib-2.4 - >=gnome-extra/libgsf-1.12 - >=dev-libs/libxml2-2.4.12 - >=x11-libs/pango-1.4 - - >=x11-libs/gtk+-2.4 - >=gnome-base/libglade-2.4 - >=gnome-base/libgnomecanvas-2 - >=gnome-base/libgnomeprint-2.6 - >=gnome-base/libgnomeprintui-2.6 - >=media-libs/libart_lgpl-2.3.11 - - gnome? ( >=x11-libs/gtk+-2.4 - >=gnome-base/libglade-2.4 - >=gnome-base/libgnomecanvas-2 - >=gnome-base/libgnomeprint-2.6 - >=gnome-base/libgnomeprintui-2.6 - >=media-libs/libart_lgpl-2.3.11 - >=gnome-base/gconf-2 - >=gnome-base/libgnome-2 - >=gnome-base/libgnomeui-2 - >=gnome-base/libbonobo-2.2 - >=gnome-base/libbonoboui-2.2 - dev-util/pkgconfig ) - python? ( >=dev-lang/python-2 - >=dev-python/pygtk-2 ) - libgda? ( >=gnome-extra/libgda-1.0.1 ) - dev-util/pkgconfig" # see #67107 -# gnomedb? ( >=gnome-extra/libgnomedb-0.90.2 ) - -DEPEND="${RDEPEND} - >=dev-util/intltool-0.30 - dev-util/pkgconfig - app-text/scrollkeeper" - -pkg_setup() { - - if use gnome; then - if ! pkg-config --exists libgsf-gnome-1; then - einfo "libgsf needs to be compiled with gnome in USE" - einfo "for this version of gnumeric to work. Rebuild" - einfo "libgsf first like this :" - einfo "USE=gnome emerge libgsf -vp" - die "libgsf was built without gnome support..." - fi - fi - -} - -src_unpack() { - - unpack ${A} - gnome2_omf_fix - - cd ${S}/plugins/corba - # makejobs proposed patch (#78828) - epatch ${FILESDIR}/${PN}-1.4.3-makejobs.patch - # use newer libgsf api (#96179) - cd ${S}/plugins/excel - epatch ${FILESDIR}/${P}-new_gsf_api.patch - - cd ${S} - automake || die - -} - -src_compile() { - - # gcc bug (http://bugs.gnome.org/show_bug.cgi?id=128834) - replace-flags "-Os" "-O2" - - econf \ - `use_with python` \ - `use_with libgda gda` \ - `use_with gnome` \ - || die -# building nogui is still too problematic -# `use_with gtk` \ - # `use_with gnomedb gda` - - # the build process has to be able to connect to X - Xemake || die - -} - -src_install() { - - gnome2_src_install - - # make gnumeric find it's help - dosym \ - /usr/share/gnome/help/gnumeric \ - /usr/share/${PN}/${PV}/doc - -} - -DOCS="AUTHORS COPYING* ChangeLog HACKING NEWS README TODO" - -USE_DESTDIR="1" |