summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-04-11 14:07:12 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-04-11 14:07:12 +0000
commit8b3e5b73a2821391c94a1447b794ee526c21e55b (patch)
tree3bc7576d11f8385520e6a5d81abcfc3d98aad0f0 /app-office/gnucash
parentremoved older ebuilds (diff)
downloadhistorical-8b3e5b73a2821391c94a1447b794ee526c21e55b.tar.gz
historical-8b3e5b73a2821391c94a1447b794ee526c21e55b.tar.bz2
historical-8b3e5b73a2821391c94a1447b794ee526c21e55b.zip
removed old ebuild
Diffstat (limited to 'app-office/gnucash')
-rw-r--r--app-office/gnucash/files/digest-gnucash-1.6.5-r11
-rw-r--r--app-office/gnucash/gnucash-1.6.5-r1.ebuild57
2 files changed, 0 insertions, 58 deletions
diff --git a/app-office/gnucash/files/digest-gnucash-1.6.5-r1 b/app-office/gnucash/files/digest-gnucash-1.6.5-r1
deleted file mode 100644
index 010c39033830..000000000000
--- a/app-office/gnucash/files/digest-gnucash-1.6.5-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 1d711b754fa533b9ee2c4865a2ef9fac gnucash-1.6.5.tar.gz 13979204
diff --git a/app-office/gnucash/gnucash-1.6.5-r1.ebuild b/app-office/gnucash/gnucash-1.6.5-r1.ebuild
deleted file mode 100644
index c78a43e43aca..000000000000
--- a/app-office/gnucash/gnucash-1.6.5-r1.ebuild
+++ /dev/null
@@ -1,57 +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>
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-1.6.5-r1.ebuild,v 1.1 2002/01/08 23:22:29 hallski Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="A personal finance manager"
-SRC_URI="http://download.sourceforge.net/${PN}/${P}.tar.gz"
-HOMEPAGE="http://gnucash.sourceforge.net"
-
-RDEPEND=">=gnome-base/gnome-libs-1.4.1.2-r1
- >=dev-libs/libxml-1.8.10
- >=gnome-extra/gtkhtml-0.14.0-r1
- >=gnome-base/gnome-print-0.30
- >=gnome-extra/gal-0.13-r1
- >=gnome-extra/guppi-0.35.5-r2"
-
-DEPEND="${RDEPEND}
- >=sys-devel/perl-5
- >=dev-libs/slib-2.3.8
- >=dev-lang/swig-1.3_alpha4
- >=dev-libs/g-wrap-1.1.5
- nls? ( sys-devel/gettext )"
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}/src/guile
- cp argv-list-converters.c argv-list-converters.c.old
- sed -e "s,printf,g_print,g" \
- argv-list-converters.c.old > argv-list-converters.c
- rm argv-list-converters.c.old
-}
-
-src_compile() {
- local myconf
-
- if [ -z "`use nls`" ] ; then
- myconf="--disable-nls"
- fi
-
- ./configure --host=${CHOST} \
- --prefix=/usr \
- --sysconfdir=/etc \
- $myconf || die
-
- make || die # Doesn't work with make -j 4 (hallski)
-}
-
-src_install () {
- make DESTDIR=${D} install || die
-
- dodoc AUTHORS COPYING ChangeLog NEWS README TODO
-
-
-}
-