diff options
author | Mikael Hallendal <hallski@gentoo.org> | 2001-08-24 12:21:18 +0000 |
---|---|---|
committer | Mikael Hallendal <hallski@gentoo.org> | 2001-08-24 12:21:18 +0000 |
commit | e4d1ab6f86b95b2f9e6760c3e1e9788267daa881 (patch) | |
tree | 846b466773561ee8d12b8c03fb4db8a088478b96 /gnome-office | |
parent | fixed a patch for gnumeric 0.70 and removed the other versions snce they cont... (diff) | |
download | gentoo-2-e4d1ab6f86b95b2f9e6760c3e1e9788267daa881.tar.gz gentoo-2-e4d1ab6f86b95b2f9e6760c3e1e9788267daa881.tar.bz2 gentoo-2-e4d1ab6f86b95b2f9e6760c3e1e9788267daa881.zip |
some files that didn't go away
Diffstat (limited to 'gnome-office')
-rw-r--r-- | gnome-office/gnumeric/files/digest-gnumeric-0.68 | 1 | ||||
-rw-r--r-- | gnome-office/gnumeric/files/digest-gnumeric-0.69 | 1 | ||||
-rw-r--r-- | gnome-office/gnumeric/gnumeric-0.69.ebuild | 81 |
3 files changed, 0 insertions, 83 deletions
diff --git a/gnome-office/gnumeric/files/digest-gnumeric-0.68 b/gnome-office/gnumeric/files/digest-gnumeric-0.68 deleted file mode 100644 index 69b36cd95bb2..000000000000 --- a/gnome-office/gnumeric/files/digest-gnumeric-0.68 +++ /dev/null @@ -1 +0,0 @@ -MD5 ea37208a9dd01c46b1197920309c8a02 gnumeric-0.68.tar.gz diff --git a/gnome-office/gnumeric/files/digest-gnumeric-0.69 b/gnome-office/gnumeric/files/digest-gnumeric-0.69 deleted file mode 100644 index 8cf29eafdce3..000000000000 --- a/gnome-office/gnumeric/files/digest-gnumeric-0.69 +++ /dev/null @@ -1 +0,0 @@ -MD5 6d6fc6220bcd3cbb3f444009134c30a7 gnumeric-0.69.tar.gz diff --git a/gnome-office/gnumeric/gnumeric-0.69.ebuild b/gnome-office/gnumeric/gnumeric-0.69.ebuild deleted file mode 100644 index 10f807623f1c..000000000000 --- a/gnome-office/gnumeric/gnumeric-0.69.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# /home/cvsroot/gentoo-x86/gnome-office/gnumeric/gnumeric-0.66.ebuild,v 1.1 2001/06/28 09:47:57 hallski Exp - -A=${P}.tar.gz -S=${WORKDIR}/${P} -DESCRIPTION="gnumeric" -SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/gnumeric/"${A} -HOMEPAGE="http://www.gnome.org/gnome-office/gnumeric.shtml" - -DEPEND=">=gnome-base/gnome-print-0.29 - >=gnome-base/gal-0.8.0 - >=gnome-base/libxml-1.8.14 - >=gnome-libs/libole2-0.2.3 - >=dev-util/xml-i18n-tools-0.8.4 - perl? ( >=sys-devel/perl-5 ) - python? ( >=dev-lang/python-2.0 ) - gb? ( >=gnome-libs/gb-0.0.19 ) - libgda? ( >=gnome-libs/libgda-0.2.9 ) - nls? ( sys-devel/gettext ) - bonobo? ( >=gnome-base/bonobo-1.0 )" - -RDEPEND=">=gnome-base/gnome-print-0.29 - >=gnome-base/gal-0.8.0 - gb? ( >=gnome-libs/gb-0.0.19 ) - libgda? ( >=gnome-libs/libgda-0.2.9 ) - bonobo? ( >=gnome-base/bonobo-1.0 ) " - -src_unpack() { - unpack ${A} - cd ${S} - cp configure configure.orig - sed -e 's:"%d,:"%d",:' configure.orig > configure -} - -src_compile() { - local myconf - if [ -z "`use nls`" ] ; then - myconf="--disable-nls" - fi - if [ -z "`use bonobo`" ] ; then - myconf="$myconf --without-bonobo" - fi - if [ "`use gb`" ]; then - #does not work atm - myconf="$myconf --without-gb" - else - myconf="$myconf --without-gb" - fi - if [ "`use perl`" ]; then - myconf="$myconf --with-perl" - else - myconf="$myconf --without-perl" - fi - if [ "`use python`" ]; then - myconf="$myconf --with-python" - else - myconf="$myconf --without-python" - fi - if [ "`use libgda`" ]; then - myconf="$myconf --with-gda" - else - myconf="$myconf --without-gda" - fi - try ./configure --host=${CHOST} --prefix=/opt/gnome --sysconfdir=/etc/opt/gnome --without-evolution ${myconf} - cd ${S} - try pmake -} - -src_install() { - try make prefix=${D}/opt/gnome sysconfdir=${D}/etc/opt/gnome PREFIX=${D}/usr install - dodoc AUTHORS COPYING *ChangeLog HACKING NEWS README TODO - -} - - - - - - |