summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlastair Tse <liquidx@gentoo.org>2003-04-28 11:11:54 +0000
committerAlastair Tse <liquidx@gentoo.org>2003-04-28 11:11:54 +0000
commit36f2f0057b5fb99046b156189e938cf22a84e83a (patch)
tree3f3adfd92cc156aaaa5623e40c77dd32a1ab2b78 /app-office
parentAddition of portage-2.0.48_pre3 -- Mostly cleanups and fixes. (diff)
downloadgentoo-2-36f2f0057b5fb99046b156189e938cf22a84e83a.tar.gz
gentoo-2-36f2f0057b5fb99046b156189e938cf22a84e83a.tar.bz2
gentoo-2-36f2f0057b5fb99046b156189e938cf22a84e83a.zip
fix hbci/ofx detection
Diffstat (limited to 'app-office')
-rw-r--r--app-office/gnucash/ChangeLog5
-rw-r--r--app-office/gnucash/Manifest4
-rw-r--r--app-office/gnucash/gnucash-1.8.2-r1.ebuild9
3 files changed, 10 insertions, 8 deletions
diff --git a/app-office/gnucash/ChangeLog b/app-office/gnucash/ChangeLog
index 0ee71a0b73a4..b935756ab620 100644
--- a/app-office/gnucash/ChangeLog
+++ b/app-office/gnucash/ChangeLog
@@ -1,10 +1,13 @@
# ChangeLog for app-office/gnucash
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.18 2003/04/28 02:15:05 liquidx Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.19 2003/04/28 11:11:46 liquidx Exp $
*gnucash-1.8.2-r1 (28 Apr 2003)
28 Apr 2003; Alastair Tse <liquidx@gentoo.org> gnucash-1.8.2-r1.ebuild:
+ ./configure doesn't accept --disable-*
+
+ 28 Apr 2003; Alastair Tse <liquidx@gentoo.org> gnucash-1.8.2-r1.ebuild:
new gnucash that has ofx and hbci support.
also depends on new guile-1.6.x
diff --git a/app-office/gnucash/Manifest b/app-office/gnucash/Manifest
index c1d827bc5424..9047ebf1d9e5 100644
--- a/app-office/gnucash/Manifest
+++ b/app-office/gnucash/Manifest
@@ -1,8 +1,8 @@
-MD5 e3d18ed3efea4f733fc69662fcb83405 ChangeLog 3392
+MD5 10476c7a2d81452304029683b6c2f1f8 ChangeLog 3508
MD5 b8e0eec1a6bcd963f2ce26db9abf9b9f gnucash-1.8.1.ebuild 1455
MD5 54902cd500c04f0659cd9a7d3438f1cd gnucash-1.8.2.ebuild 1546
MD5 4800e560c499c667d2c95a7e3b01c42b gnucash-1.6.8.ebuild 1882
-MD5 832a41ac0535a02b3b049140d5919e93 gnucash-1.8.2-r1.ebuild 1776
+MD5 dfe89fd88679a797025a645ef2a9355e gnucash-1.8.2-r1.ebuild 1772
MD5 e298b9154a60df27ab519e6b88dd4c47 files/digest-gnucash-1.8.1 66
MD5 cdaa1f2adfbd3112916a8c2076fa04bd files/digest-gnucash-1.8.2 66
MD5 cdaa1f2adfbd3112916a8c2076fa04bd files/digest-gnucash-1.8.2-r1 66
diff --git a/app-office/gnucash/gnucash-1.8.2-r1.ebuild b/app-office/gnucash/gnucash-1.8.2-r1.ebuild
index 6bf8f3260238..775aeb3edd78 100644
--- a/app-office/gnucash/gnucash-1.8.2-r1.ebuild
+++ b/app-office/gnucash/gnucash-1.8.2-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-1.8.2-r1.ebuild,v 1.1 2003/04/28 02:15:05 liquidx Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-1.8.2-r1.ebuild,v 1.2 2003/04/28 11:11:46 liquidx Exp $
inherit flag-o-matic libtool
@@ -14,7 +14,7 @@ HOMEPAGE="http://www.gnucash.org/"
KEYWORDS="~x86 ~ppc"
SLOT="0"
LICENSE="GPL-2"
-IUSE="nls postgres ofx hbci debug"
+IUSE="nls postgres ofx hbci"
RDEPEND=">=gnome-base/gnome-libs-1.4.1.2-r1
>=dev-util/guile-1.6
@@ -56,11 +56,10 @@ src_compile() {
use postgres && myconf="${myconf} --enable-sql"
# note: --disable-ofx doesn't work
use ofx && myconf="${myconf} --enable-ofx"
-
+ use hbci && myconf="${myconf} --enable-hbci"
+
econf \
- `use_enable hbci` \
`use_enable nls` \
- `use_enable debug` \
${myconf} || die
emake || die