diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-09-18 21:21:43 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-09-18 21:21:43 +0000 |
commit | 6a3623bb3db0c2b79b270d0807636c62e057530e (patch) | |
tree | db801d44640943a0636c51c3566c53b0216add61 /gnome-apps | |
parent | *** empty log message *** (diff) | |
download | historical-6a3623bb3db0c2b79b270d0807636c62e057530e.tar.gz historical-6a3623bb3db0c2b79b270d0807636c62e057530e.tar.bz2 historical-6a3623bb3db0c2b79b270d0807636c62e057530e.zip |
*** empty log message ***
Diffstat (limited to 'gnome-apps')
-rw-r--r-- | gnome-apps/gnucash/files/digest-gnucash-1.4.6 | 1 | ||||
-rw-r--r-- | gnome-apps/gnucash/gnucash-1.4.6.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/gnome-apps/gnucash/files/digest-gnucash-1.4.6 b/gnome-apps/gnucash/files/digest-gnucash-1.4.6 new file mode 100644 index 000000000000..a377863acb20 --- /dev/null +++ b/gnome-apps/gnucash/files/digest-gnucash-1.4.6 @@ -0,0 +1 @@ +MD5 c0288f26677e93b7c4e8ac34a717b0b9 gnucash-1.4.6.tar.gz diff --git a/gnome-apps/gnucash/gnucash-1.4.6.ebuild b/gnome-apps/gnucash/gnucash-1.4.6.ebuild new file mode 100644 index 000000000000..b298fc6cb396 --- /dev/null +++ b/gnome-apps/gnucash/gnucash-1.4.6.ebuild @@ -0,0 +1,27 @@ +# 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/gnome-apps/gnucash/gnucash-1.4.6.ebuild,v 1.1 2000/09/18 21:21:43 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="A personal finance manager" +SRC_URI="http://download.sourceforge.net/gnucash/${A}" +HOMEPAGE="http://gnucash.sourceforge.net" + + +src_compile() { + + cd ${S} + try ./configure --prefix=/opt/gnome --host=${CHOST} --with-catgets + try make + +} + +src_install () { + + cd ${S} + try make DESTDIR=${D} install + +} + |